/* Variables de color */
:root {
    --azul-cielo: #0798BC;
    --negro-tenue: #010101;
    --azul-profundo: #143B67;
    --sombra-tenue: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Fuente global */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    padding-top: 80px; /* Espacio para el navbar fijo */
}
a:hover {
    color:white;
    text-decoration: none;
}
/* Navbar */
#mainNavbar {
    background-color: #fff !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

#mainNavbar.scrolled {
    box-shadow: var(--sombra-tenue);
    padding: 0.75rem 0;
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

#mainNavbar.scrolled .logo-img {
    height: 40px;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: var(--negro-tenue) !important;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--azul-profundo) !important;
}

.nav-link.active {
    color: var(--azul-profundo) !important;
    border-bottom: 2px solid var(--azul-profundo);
}

/* Espaciado entre secciones */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-container-fluid {
    padding: 0;
}

.hero-section .row {
    align-items: flex-start;
    min-height: 500px;
    margin: 0;
}

.hero-content-col {
    padding: 100px 0;
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.hero-content-col .container {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
}

.hero-image-col {
    padding: 0;
    display: flex;
    align-items: flex-end;
    height: 100%;
    position: relative;
    padding-right: 0;
}

.hero-image-wrapper {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(to right, var(--azul-profundo), var(--azul-cielo));
    border-radius: 10px 0 0 10px;
    padding: 0 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-title-dark {
    color: var(--negro-tenue);
}

.hero-text-dark {
    color: var(--negro-tenue);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-cards-row {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-doctoralia-card {
    flex: 0 0 auto;
}

.hero-seal-img {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.section-title {
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-text {
    font-weight: 600;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.review-seal-img{
    max-width: 200px;
}
.btn-outline-white {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
    text-decoration: none;
}

/* Features Section */
.features-section {
    padding: 0;
    margin-top: -140px;
    position: relative;
    z-index: 2;
}

.features-card {
    background: #fff;
    box-shadow: var(--sombra-tenue);
    border-radius: 10px;
    padding: 30px 40px;
}

.feature-item {
    text-align: center;
    padding: 20px 30px;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 60px;
    bottom: 0;
    width: 1px;
    background-color: #A6A6A6;
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-title {
    font-weight: 600;
    font-size: 17px;
    color: var(--negro-tenue);
    margin-bottom: 15px;
}

.feature-text {
    font-weight: 500;
    font-size: 15px;
    color: var(--negro-tenue);
    line-height: 1.6;
    margin: 0;
}
/* Reviews Section */
.reviews-container {
    padding: 100px 0;
}

.review-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--sombra-tenue);
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-card-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #46494E;
    margin-bottom: 15px;
}

.review-card-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.review-card-rating {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 23px;
    color: #46494E;
    margin-bottom: 10px;
}

.review-card-percentage {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: #46494E;
    margin-bottom: 10px;
}

.review-card-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #46494E;
    margin-bottom: 15px;
    line-height: 1.4;
}

.review-card-opinions {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #46494E;
    margin-bottom: 15px;
}

.review-stars {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.review-stars i {
    font-size: 16px;
}

.review-stars-yellow i {
    color: #FBEE01;
}

.review-stars-green i {
    color: #00C3A5;
}
.review-text-quote {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 15px;
    color: var(--azul-profundo);
    text-align: center;
    margin: 0;
}

/* About Section */
.about-section {
    background: #fff;
}

.section-title-large {
    font-weight: 600;
    font-size: 40px;
    color: var(--negro-tenue);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 0;
}

.section-text-dark {
    font-weight: 500;
    font-size: 16px;
    color: var(--negro-tenue);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.checklist li {
    font-weight: 500;
    font-size: 16px;
    color: var(--negro-tenue);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--negro-tenue);
    font-size: 16px;
}

.btn-outline-dark {
    border: 1px solid var(--negro-tenue);
    background: transparent;
    color: var(--negro-tenue);
    font-weight: 600;
    font-size: 17px;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: transparent !important;
    color: var(--negro-tenue) !important;
    border-color: var(--negro-tenue) !important;
    text-decoration: none;
}

.btn-ver-mas {
    border: 1px solid #00C3A5;
    background: transparent;
    color: #00C3A5;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-ver-mas:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 195, 165, 0.3);
    background: #00C3A5;
    color: #fff !important;
    text-decoration: none;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section */
.stats-section {
    background: var(--negro-tenue);
    padding: 30px 0;
}

.stats-item {
    text-align: center;
    padding: 20px 15px;
}

.stats-number {
    font-weight: 600;
    font-size: 50px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stats-text {
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    line-height: 1.4;
}

/* Services Section */
.services-section {
    background: #fff;
    padding-top: 100px;
}

.services-section .section-title-large {
    text-align: center;
    margin-bottom: 1rem;
}

.service-card {
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon-wrapper i {
    font-size: 32px;
    color: var(--negro-tenue);
}

.service-card-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--negro-tenue);
    margin-bottom: 15px;
    text-align: center;
}

.service-card-text {
    font-weight: 500;
    font-size: 16px;
    color: var(--negro-tenue);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--negro-tenue);
    padding: 80px 0;
}

.testimonials-section .section-title-large {
    margin-bottom: 1.5rem;
}

.testimonials-section .section-text-dark {
    margin-bottom: 2rem;
}

.testimonials-controls {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.testimonial-btn i {
    color: var(--negro-tenue);
    font-size: 18px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 35px;
    box-shadow: var(--sombra-tenue);
}

.testimonial-text {
    font-weight: 500;
    font-size: 16px;
    color: var(--negro-tenue);
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-divider {
    height: 1px;
    background: #B5B5B5;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--negro-tenue);
    margin-bottom: 8px;
}

.testimonial-role {
    font-weight: 500;
    font-size: 14px;
    color: var(--negro-tenue);
    margin: 0;
}

.carousel-item {
    padding: 0 10px;
}

/* Media Queries */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }
    .review-text-quote {
        font-size: 14px;
        padding: 0 15px;
    }
    .reviews-container {
        padding: 40px 20px;
    }
    
    .review-card {
        margin-bottom: 20px;
    }
    
    .review-seal-img {
        margin-bottom: 20px;
        max-width: 150px;
    }
    
    .review-text-quote {
        font-size: 14px;
        padding: 0 15px;
    }
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    #mainNavbar.scrolled .logo-img {
        height: 45px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 0;
    }
    
    .hero-content-col {
        padding: 60px 15px 40px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }
    
    .hero-content-col .container {
        padding-left: 15px;
    }
    
    .section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .section-text {
        font-size: 16px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-cards-row {
        justify-content: center;
    }
    
    .hero-seal-img {
        justify-content: center;
        width: 100%;
    }
    
    .hero-image-col {
        padding: 0 15px 15px;
        margin-top: 0;
    }
    
    .hero-image-wrapper {
        width: 100%;
        border-radius: 10px;
        min-height: auto;
    }
    
    .section-title-large {
        font-size: 28px;
        text-align: center;
    }
    
    .section-text-dark {
        text-align: center;
    }
    
    .checklist {
        text-align: left;
    }
    
    .about-section .col-lg-6:first-child {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .features-section {
        margin-top: -40px;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-number {
        font-size: 36px;
    }
    
    .stats-text {
        font-size: 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon-wrapper i {
        font-size: 28px;
    }
    
    .service-card-title {
        font-size: 16px;
    }
    
    .service-card-text {
        font-size: 15px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .col-lg-4 {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .testimonials-controls {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-role {
        font-size: 13px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 18px 45px 18px 18px;
    }
    
    .faq-answer {
        font-size: 11px;
        padding: 18px;
    }
    
    .map-section {
        padding: 60px 0 0;
    }
    
    .map-container {
        margin-top: 30px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-location {
        font-size: 15px;
    }
    
    .map-phone {
        font-size: 14px;
    }
    
    .features-card {
        padding: 40px 30px;
    }
    
    .feature-item {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .feature-item:not(:last-child)::after {
        display: none;
    }
    
    .feature-item:not(:last-child) {
        border-bottom: 1px solid #A6A6A6;
        padding-bottom: 30px;
    }
     /* Footer móvil */
     .footer-section {
        padding: 40px 20px;
        text-align: center;
    }
    
    .footer-section .container > .row > div {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-section .container > .row > div:last-child {
        margin-bottom: 0;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-title {
        font-size: 16px;
        text-align: center;
    }
    
    .footer-text {
        font-size: 11px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-social {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-icon i {
        font-size: 16px;
    }
    
    .footer-row-2 {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .footer-sitemap {
        margin-bottom: 30px;
    }
    
    .footer-sitemap-links {
        font-size: 10px;
        line-height: 1.6;
    }
    
    .footer-more-info {
        margin-bottom: 30px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        justify-items: center !important;
        text-align: center !important;
    }
    
    .footer-link-column {
        width: 100%;
    }
    
    .footer-links-group {
        align-items: center;
    }
    
    .footer-link-title {
        font-size: 14px;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .footer-link {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .footer-border-white {
        margin: 25px 0;
    }
    
    .footer-copyright {
        padding-top: 15px;
    }
    
    .footer-copyright-text {
        font-size: 12px;
    }
   
}

a {
    color: white;
}
/* Video Carousel Section */
.video-carousel-section {
    padding: 100px 0 80px;
}

.video-carousel-section .section-title-large {
    text-align: center;
    margin-bottom: 1.5rem;
}

.video-carousel-section .section-text-dark {
    text-align: center;
    margin-bottom: 0;
}

.video-carousel-header {
    margin-bottom: 40px;
}

.video-carousel-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #272727;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-marquee-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.video-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.video-marquee-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.video-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--sombra-tenue);
    overflow: hidden;
    transition: transform 0.3s ease;
}

@media (max-width: 767.98px) {
    .video-card {
        flex: 0 0 100%;
    }
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.video-frame {
    width: 100%;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-frame.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 56.25%; /* Mantener aspect ratio */
    overflow: hidden;
}

.video-frame.embed-responsive::before {
    display: none; /* No usar el pseudo-elemento de Bootstrap */
}

.video-frame.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.video-frame iframe,
.video-frame embed,
.video-frame object,
.video-frame video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-frame .embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video Preview Styles */
.video-preview {
    cursor: pointer;
    position: relative;
    background-color: #f0f0f0; /* Color de fondo temporal mientras carga la imagen */
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    z-index: 1;
}

.video-preview:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-play-button:hover {
    background-color: var(--azul-cielo);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.video-play-button i {
    color: var(--azul-profundo);
    font-size: 24px;
    margin-left: 4px; /* Ajuste visual para centrar el icono */
    transition: color 0.3s ease;
}

.video-play-button:hover i {
    color: white;
}

.video-preview.playing .video-thumbnail,
.video-preview.playing .video-play-button {
    display: none;
}

.video-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--azul-profundo);
    padding: 20px;
    margin: 0;
    line-height: 1.4;
}

.video-marquee-control {
    background-color: var(--negro-tenue);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #fff;
    font-size: 20px;
    z-index: 10;
}

.video-marquee-control:hover {
    background-color: var(--negro-tenue);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-marquee-control:active {
    transform: scale(0.95);
}

.video-marquee-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.video-marquee-control i {
    pointer-events: none;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-section .section-title-large {
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-section .section-text-dark {
    text-align: center;
    margin-bottom: 0;
}

.faq-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--sombra-tenue);
    display: block;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #EEEEEE;
    border-radius: 5px;
    box-shadow: var(--sombra-tenue);
    overflow: hidden;
}

.faq-question {
    font-weight: 500;
    font-size: 14px;
    color: var(--negro-tenue);
    padding: 20px 50px 20px 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #E5E5E5;
}

.faq-question i {
    position: absolute;
    right: 20px;
    font-size: 18px;
    color: var(--negro-tenue);
    transition: transform 0.3s ease;
}

.faq-question.collapsed i.fa-minus,
.faq-question:not(.collapsed) i.fa-plus {
    display: none;
}

.faq-question:not(.collapsed) {
    border-bottom: 1px solid var(--negro-tenue);
}

.faq-answer {
    font-weight: 500;
    font-size: 12px;
    color: var(--negro-tenue);
    padding: 12px;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--negro-tenue);
    padding: 80px 0;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
}

.contact-input {
    background: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px;
    color: var(--negro-tenue);
    width: 100%;
}

.contact-input::placeholder {
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    color: #999;
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Estilos para reCAPTCHA */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Estilos para el botón de envío con spinner */
#submitBtn {
    position: relative;
    min-width: 120px;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive para reCAPTCHA en móviles */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

/* Map Section */
.map-section {
    background: #fff;
    padding: 80px 0 0;
}

.map-section .section-title-large {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map-location {
    font-weight: 600;
    font-size: 16px;
    color: var(--negro-tenue);
    margin-bottom: 10px;
}

.map-phone {
    font-weight: 500;
    font-size: 15px;
    color: var(--negro-tenue);
    margin-bottom: 0;
}

.map-container {
    width: 100%;
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Media Queries */

/* Footer Section */
.footer-section {
    background-image: url('img/footer-bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    margin-top: 0;
    position: relative;
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: white;
    margin-bottom: 15px;
}

.footer-title-social {
    margin-top: 30px;
}

.footer-border {
    height: 2px;
    background: linear-gradient(to right, var(--azul-cielo) 50%, white 50%);
    margin-bottom: 20px;
    width: 100%;
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: white;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-text strong {
    font-weight: 600;
}

.footer-disclaimer {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon i {
    font-size: 18px;
}

.footer-social-icon:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer Segunda Fila */
.footer-row-2 {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title-center {
    text-align: center;
}

.footer-border-center {
    height: 2px;
    background: linear-gradient(to right, white 0%, white 35%, var(--azul-cielo) 35%, var(--azul-cielo) 65%, white 65%, white 100%);
    margin: 15px auto 25px auto;
    width: 100%;
    max-width: 100%;
}

.footer-sitemap {
    margin-bottom: 40px;
}

.footer-sitemap-links {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: white;
    text-align: center;
    margin: 0;
    line-height: 1.8;
}

.footer-sitemap-links a {
    color: white;
    text-decoration: none;
    transition: none;
}

.footer-sitemap-links a:hover,
.footer-sitemap-links a:focus {
    color: white;
    text-decoration: none;
    background-color: transparent;
}

.footer-more-info {
    margin-bottom: 40px;
}

.footer-link-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: white;
    margin-bottom: 15px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4rem;
    margin: 0;
}

.footer-link-column {
    min-width: 0;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
    line-height: 1.5;
}

.footer-link:last-child {
    margin-bottom: 0;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
    opacity: 0.8;
}

.footer-border-white {
    height: 1px;
    background-color: white;
    width: 100%;
    margin: 30px 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: white;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-copyright-text:last-child {
    margin-bottom: 0;
}