:root {
    --primary-color: #d32f2f;
    --secondary-color: #f44336;
    --dark-color: #b71c1c;
    --light-color: #ffebee;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Estilos para la sección de contacto */
.contact-info h4 {
    position: relative;
    padding-bottom: 15px;
}

.contact-info h4:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
}

/* Ajustes responsivos */
@media (max-width: 767.98px) {
    .contact-info {
        margin-bottom: 30px;
    }
    
    .map-container {
        min-height: 300px;
    }
}
/* Navbar */
.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-scrolled {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Carrusel */
.carousel {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.carousel-item img {
    height: 500px;
    
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0,0,0,0.6);
    border-radius: 10px;
    padding: 20px;
    bottom: 40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header h2 {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

/* Value Icons */
.value-item i {
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #FFF;
    transform: scale(1.1);
}

/* Table Styling */
.table thead th {
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
    line-height: 36px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item img {
        height: 350px;
    }
    
    .carousel-caption {
        bottom: 20px;
        padding: 10px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .value-item {
        margin-bottom: 20px;
    }
}