:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #0855c5;
    --light-color: #F6B800;
    --dark-color: #2c3e50;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar-brand img {
    height: 40px;
    transition: all 0.3s;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #0855c5;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.btn-cta {
    background-color:#F6B800;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;

}

.btn-cta:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Banner Modificado */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1200px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.95);
}

.hero-content h1{
    font-size:45px;
}

.hero-content h2{
font-size: 50px;
}

.hero-image-container {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1200px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%);
}

/* Ajustes responsive */
@media (max-width: 992px) {
    .hero-banner,
    .hero-image-container {
        height: auto;
        min-height: auto;
    }
    
    .row.g-0 {
        flex-direction: column-reverse;
    }
    
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .image-overlay {
        background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 15px;
    }
    
    h1.display-4 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 350px;
    }

}

/* Sections */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background:#0855c5;
    bottom: -8px;
    left: 25%;
}

.section-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #0855c5;
}

/* Video Section */
.video-section {
   background: linear-gradient(rgba(246,184,0,0.3), rgba(246,184,0,0.1));
    background-size: cover;
    background-position: center;
    color:#333;
;
}

.video-section .section-title,
.video-section .section-subtitle {
    color:#333;


}

.video-section h2{
font-size:45px;
}

.video-section .section-title:after {
    background:#333;

}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.features-list i {
    color:#0855c5;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Map Container */
.map-container {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-container iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.location-features {
    list-style: none;
    padding: 0;
}

.location-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.location-features i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

/* Document Cards */
.document-card {
    cursor: pointer;
    transition: all 0.3s;
}

.document-card:hover {
    transform: translateY(-5px);
}

.document-expand {
    display: none;
}

/* Contact Form */
.contact-form {
    background: white;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #0855c5;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* Footer */
.footer-logo {
    height: 40px;

}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #0855c5;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-banner h1 {
        font-size: 2.2rem;
    }
    
    .hero-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
  
    
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Estilos para el modal de términos */
#terminosModal .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#terminosModal .modal-header {
    border-bottom: 2px solid #0855c5;
    background-color: var(--light-color);
    border-radius: 10px 10px 0 0;
}

#terminosModal .modal-title {
    color: var(--primary-color);
    font-weight: 700;
}

#terminosModal .modal-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
}

#terminosModal .modal-body h4 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

#terminosModal .modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

#terminosModal .modal-footer {
    border-top: 1px solid #eee;
    border-radius: 0 0 10px 10px;
}

/* Estilos para la sección de documentos */
.document-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.document-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.document-card:hover .document-overlay {
    opacity: 1;
}

.document-overlay i {
    color: white;
    font-size: 2rem;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    border-radius: 50%;
}

/* Estilos para el modal de documentos - imágenes iguales */
#documentModal .modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#documentModal .modal-body img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: contain;
}

#documentModal .additional-images {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px dashed #ddd;
}

#documentModal .additional-images img {
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 992px) {
    #documentModal .modal-body img,
    #documentModal .additional-images {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    #documentModal .modal-body {
        padding: 1rem;
    }
    
    #documentModal .modal-body img {
        margin-bottom: 1rem;
    }
}

.carac{
    
     background: linear-gradient(rgba(13,110,153,0.3), rgba(13,110,153,0.1));
}


/* Estilos para los items de la galería */
.gallery-item {
    position: relative;
    margin-bottom: 1.5rem; /* Espacio para el texto */
}

.gallery-img {
    width: 100%;
    height: 250px; /* Altura fija para todas las imágenes */
    object-fit: cover; /* Asegura que la imagen cubra el espacio manteniendo proporciones */
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.image-caption {
    text-align: center;
    padding: 0.5rem 0;
    color: #333;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    border-top: 1px solid #eee;
}

.footer{
    background:#F6B800;
       color:black;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
        text-decoration:none;

}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

.a{
    color:black !important;
}
