/* Variables de color */
:root {
    --azul-cielo: #0798BC;
    --negro-tenue: #333333;
    --azul-profundo: #002E5E;
    --gris: #EAEAEA;
    --sombra-tenue: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Fuente global */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--negro-tenue);
    padding-top: 80px; /* Espacio para navbar fija */
}

/* Navbar */
#mainNavbar {
    box-shadow: var(--sombra-tenue);
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Navbar container más ancho en desktop */
@media (min-width: 992px) {
    #mainNavbar .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--negro-tenue) !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 15px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--azul-profundo) !important;
}

.navbar-nav .nav-link.active {
    color: var(--azul-profundo) !important;
}

.navbar-nav .nav-link-special {
    border-bottom: 2px solid var(--azul-profundo);
    padding-bottom: 6px !important;
}

.navbar-nav .nav-link-special.active {
    border-bottom: 2px solid var(--azul-profundo);
}

/* Navbar en móvil */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    #mainNavbar {
        padding: 10px 0;
    }
    
    #mainNavbar .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .navbar-nav {
        padding: 20px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        margin: 0;
    }
    
    .navbar-nav .nav-link-special {
        border-bottom: 2px solid var(--azul-profundo);
        padding-bottom: 8px !important;
    }
}

/* Espaciado entre secciones - Desktop */
section {
    padding: 80px 0;
}

/* Espaciado entre secciones - Móvil */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
}

/* Títulos universales */
.section-title {
    font-weight: 600;
    color: var(--azul-profundo);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 20px;
    }
}

/* Subtítulos universales */
.section-subtitle {
    font-weight: 400;
    color: var(--negro-tenue);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-subtitle {
        margin-bottom: 15px;
    }
}

/* Título de sección */
.title-section {
    font-weight: 600;
    font-size: 40px;
    color: var(--negro-tenue);
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .title-section {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
}

/* Texto de sección */
.section-text {
    font-weight: 500;
    font-size: 16px;
    color: var(--negro-tenue);
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-text {
        text-align: center;
        margin-bottom: 25px;
    }
}

/* Lista con palomitas */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    font-weight: 500;
    font-size: 16px;
    color: var(--negro-tenue);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.checklist li i {
    color: var(--azul-profundo);
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .checklist {
        margin-bottom: 30px;
    }
    
    .checklist li {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

/* Imagen de sección */
.section-image {
    width: 100%;
    height: auto;
    box-shadow: var(--sombra-tenue);
}

@media (max-width: 768px) {
    .section-image {
        margin-top: 30px;
    }
}

/* Mini título */
.mini-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--negro-tenue);
    margin-bottom: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .mini-title {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 15px;
        text-align: center;
    }
}

/* Sección Enfoque */
.enfoque-section {
    padding: 0;
}

.enfoque-background {
    background-color: var(--gris);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .enfoque-background {
        padding: 50px 0;
    }
}

/* Sección Tratamientos */
.tratamientos-section {
    padding: 80px 0;
}

.treatment-card {
    background-color: var(--gris);
    border-radius: 10px;
    box-shadow: var(--sombra-tenue);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.treatment-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--gris);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.treatment-icon {
    font-size: 50px;
    color: var(--azul-profundo);
}

.treatment-card-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--negro-tenue);
    margin-bottom: 15px;
}

.treatment-card-text {
    font-weight: 500;
    font-size: 13px;
    color: var(--negro-tenue);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .tratamientos-section {
        padding: 50px 0;
    }
    
    .treatment-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .treatment-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .treatment-icon {
        font-size: 28px;
    }
    
    .treatment-card-title {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .treatment-card-text {
        font-size: 13px;
    }
}

/* Sección de Servicios */
.servicios-section {
    padding: 80px 0;
}

.service-item {
    padding: 30px 20px;
    text-align: left;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--gris);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
    box-shadow: var(--sombra-tenue);
}

.service-icon {
    font-size: 32px;
    color: var(--azul-profundo);
}

.service-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--negro-tenue);
    margin-bottom: 15px;
}

.service-description {
    font-weight: 500;
    font-size: 13px;
    color: var(--negro-tenue);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .servicios-section {
        padding: 50px 0;
    }
    
    .service-item {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .service-icon {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 13px;
    }
}

/* Hero Section */
.hero-section {
    padding: 0;
}

.hero-background {
    background: linear-gradient(to bottom, #F6F3EE, #FFFFFF);
    padding: 80px 0;
}

.title-hero {
    font-weight: 600;
    font-size: 65px;
    color: var(--negro-tenue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text {
    font-weight: 500;
    font-size: 16px;
    color: var(--negro-tenue);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    box-shadow: var(--sombra-tenue);
}

/* Botones personalizados */
.btn-primary-custom {
    background-color: var(--azul-profundo);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 17px;
    border-radius: 5px;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--azul-profundo);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--negro-tenue);
    font-weight: 600;
    font-size: 17px;
    border-radius: 5px;
    border: 1px solid var(--negro-tenue);
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section en móvil */
@media (max-width: 768px) {
    .hero-background {
        padding: 50px 0;
    }
    
    .title-hero {
        font-size: 40px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-text {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        font-size: 16px;
        padding: 10px 25px;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-image-wrapper {
        margin-top: 20px;
    }
}
/* Reviews Section */
.reviews-container {
    padding: 80px 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;
}

.btn-hero {
    font-weight: 600;
    font-size: 17px;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background-color: var(--azul-cielo);
    color: #fff;
}

.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--sombra-tenue);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--negro-tenue);
    border: 2px solid var(--negro-tenue);
}

.btn-hero-secondary:hover {
    color: var(--negro-tenue);
    transform: translateY(-3px);
    box-shadow: var(--sombra-tenue);
}

.hero-image {
    width: 100%;
    height: auto;
}
/* Video Carousel Section */
.video-carousel-section {
    padding: 80px 0;
}

@media (max-width: 991.98px) {
    .video-carousel-section {
        padding: 60px 0;
    }
}

.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: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0.5rem;
    z-index: 10;
}

.video-marquee-control:hover {
    background-color: transparent;
    transform: scale(1.2);
}

.video-marquee-control:active {
    transform: scale(0.9);
}

.video-marquee-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.video-marquee-control i {
    pointer-events: none;
    color: var(--rojo-claro);
    font-size: 32px;
    transition: color 0.3s ease;
}

.video-marquee-control:hover i {
    color: var(--rojo-claro);
}

/* Sección FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background-color: var(--gris);
    border-radius: 7px;
    overflow: hidden;
}

.faq-button {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.faq-question-text {
    font-weight: 500;
    font-size: 15px;
    color: var(--azul-profundo);
    flex: 1;
    margin-right: 15px;
}

.faq-icon {
    color: var(--negro-tenue);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-button[aria-expanded="true"] .faq-icon i.fa-plus {
    display: none;
}

.faq-button[aria-expanded="false"] .faq-icon i.fa-times {
    display: none;
}

.faq-button[aria-expanded="true"] .faq-icon i.fa-times {
    display: inline-block;
}

.faq-button[aria-expanded="false"] .faq-icon i.fa-plus {
    display: inline-block;
}

.faq-answer {
    background-color: var(--gris);
    border-radius: 7px;
    padding: 20px 25px;
    margin-top: 5px;
    font-weight: 500;
    font-size: 14px;
    color: var(--negro-tenue);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-button {
        padding: 18px 20px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 18px 20px;
        font-size: 13px;
    }
}

/* Sección Testimonios */
.testimonios-section {
    padding: 0;
}

.testimonios-background {
    background-color: var(--gris);
    padding: 80px 0;
}

.testimonio-card {
    background-color: white;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: var(--sombra-tenue);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonio-text {
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    color: var(--negro-tenue);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.testimonio-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--negro-tenue);
    text-align: right;
    margin: 0;
}

/* Carousel de testimonios */
#testimoniosCarousel {
    margin-top: 50px;
}

#testimoniosCarousel .carousel-indicators {
    position: relative;
    margin-top: 40px;
    margin-bottom: 0;
    bottom: auto;
    left: auto;
    right: auto;
    justify-content: center;
}

#testimoniosCarousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    margin: 0 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

#testimoniosCarousel .carousel-indicators li.active {
    background-color: var(--azul-profundo);
}

#testimoniosCarousel .carousel-control-prev,
#testimoniosCarousel .carousel-control-next {
    display: none;
}

@media (max-width: 991.98px) {
    .testimonios-background {
        padding: 50px 0;
    }
    
    #testimoniosCarousel {
        margin-top: 30px;
    }
    
    .testimonio-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .testimonio-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .testimonio-name {
        font-size: 17px;
    }
    
    #testimoniosCarousel .carousel-indicators {
        margin-top: 30px;
    }
    
    /* En móvil, asegurar que solo se muestre 1 testimonio por slide */
    #testimoniosCarousel .carousel-item .row > div:last-child {
        display: none;
    }
}

/* Sección Mapa */
.mapa-section {
    padding: 80px 0 0 0;
}

.mapa-texto {
    font-weight: 600;
    font-size: 16px;
    color: var(--negro-tenue);
    margin-bottom: 10px;
}

.mapa-telefono {
    font-weight: 500;
    font-size: 15px;
    color: var(--negro-tenue);
    margin-bottom: 40px;
}

.mapa-container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.mapa-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .mapa-section {
        padding: 50px 0 0 0;
    }
    
    .mapa-texto {
        font-size: 15px;
    }
    
    .mapa-telefono {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .mapa-container iframe {
        height: 350px;
    }
     /* 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;
    }
}
/* Footer Section */
.footer-section {
    background-color: #333333;
    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: #FFFFFF;
    margin-bottom: 15px;
}

.footer-title-social {
    margin-top: 30px;
}

.footer-border {
    height: 2px;
    background: linear-gradient(to right, #FFFFFF 50%, #FFFFFF 50%);
    margin-bottom: 20px;
    width: 100%;
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #FFFFFF;
    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: #FFFFFF;
    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 #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon i {
    font-size: 18px;
}

.footer-social-icon:hover {
    color: #FFFFFF;
    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 #FFFFFF;
}

.footer-title-center {
    text-align: center;
}

.footer-border-center {
    height: 2px;
    background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 35%, #FFFFFF 35%, #FFFFFF 65%, #FFFFFF 65%, #FFFFFF 100%);
    margin: 15px auto 25px auto;
    width: 100%;
    max-width: 100%;
}

.footer-sitemap {
    margin-bottom: 20px;
}

.footer-sitemap-links {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    line-height: 1.8;
}

.footer-sitemap-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: none;
}

.footer-sitemap-links a:hover,
.footer-sitemap-links a:focus {
    color: #FFFFFF;
    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: #FFFFFF;
    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: #FFFFFF;
    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: #FFFFFF;
    text-decoration: underline;
    opacity: 0.8;
}

.footer-border-white {
    height: 1px;
    background-color: #FFFFFF;
    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: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-copyright-text a {
    color: #FFFFFF !important;
    text-decoration: none;
}

.footer-copyright-text a:hover {
    color: #FFFFFF !important;
    text-decoration: underline;
}

.footer-copyright-text:last-child {
    margin-bottom: 0;
}
/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white !important;
    font-size: 32px;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
    color: white !important;
    text-decoration: none;
}

.whatsapp-btn i {
    z-index: 2;
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background-color: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: normal;
    text-align: left;
    min-width: 140px;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        left: 70px;
        font-size: 13px;
        padding: 8px 12px;
        min-width: 120px;
    }
}