/* ========================================
   INFINITA MENTE - ESTILOS PERSONALIZADOS
   ======================================== */


/* Reset básico */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables CSS */
:root {
    /* --primary-color: #D0006F; */
    --primary-color: #F5A623;
    /* --primary-color: #F5A623; */
    --secondary-color: #ffe066c8;
    --tertiary-color: #ff873d;
    --accent-color: #D0006F ;
    --yellow-color: #FFC600;
    --yellow-color-2: #ffe06674;
    --red-color: #FF66A3;
    --red-pastel: #FFB3BA; 
    --text-dark: #1D4F91;
    --text-light: rgba(57, 73, 98, 0.485);
    --bg-light: #ff910020;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========================================
   2. TIPOGRAFÍA Y ELEMENTOS BASE
   ======================================== */

/* Tipografía base */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color:var(--text-dark)!important;
    scroll-behavior: smooth;
}

/* Títulos */
h1{
    color: var(--text-dark) !important;
}

h5{
    color: var(--text-dark) !important;
}

/* Fuente personalizada */
.font{
    font-family: 'Annie Use Your Telescope', cursive;
    color: var(--text-dark) !important;
    /* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
    font-size: 3.3rem!important;
}
.font-light{
    font-family: 'Annie Use Your Telescope', cursive;
    color: white !important;
    /* text-shadow: 1px 1px 3px rgba(0,0,0,0.3); */
    font-size: 3.3rem!important;
}

/* Colores de texto */
.color-primary{
    color: var(--text-dark) !important;
}

.text-hero-1{
    color: var(--text-dark) !important;
}

.text-hero-2{
    color: var(--text-dark) !important;
}

.text-hero{
    font-family: 'Annie Use Your Telescope', cursive;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-dark) !important;
}

.text-small{
    color: var(--text-dark) !important;
}

/* ========================================
   4. HERO SECTION
   ======================================== */

/* Hero principal */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Reducir espaciado entre hero y sección nosotros */
#nosotros {
    padding-top: 50px;
}

/* Fondos del hero */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block; /* Por defecto visible en desktop */
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
}

.hero-background-responsive{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none; /* Por defecto oculta en desktop */
}

/* Overlays del hero */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(74, 144, 226, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%); */
    background:linear-gradient(rgba(255, 227, 102, 0.441), rgba(255, 222, 102, 0.573));
    z-index: 2;
}

.hero-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:var(--secondary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

/* ========================================
   5. ELEMENTOS DE IMÁGENES Y COMPONENTES
   ======================================== */

/* Imágenes del hero */
.img-hero{
    filter:contrast(0.9) drop-shadow(10px 20px 0px var(--primary-color))!important;
}

/* Imágenes de cartas nosotros */
.img-cartas-nos{
    width: 100%!important;
    max-width: 600px; /* Limita el ancho máximo en pantallas grandes */
    height: 400px!important;
    object-fit: contain; /* Evita que se deforme la imagen */
    object-position: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .img-cartas-nos{
        max-width: 100%;
        height: 250px;
    }
}

.segunda-grafica{
    width: 50%;
}

.img-ninoslook{
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(10px 20px 0px var(--primary-color));
}

.yoga-img{
    width: 90%;
    margin: 0 auto;
    filter:contrast(0.7) drop-shadow( 20px 20px 0px var(--primary-color));
}

/* Elementos de caja */
.tagline-box {
    border-left: 4px solid var(--primary-color);
    animation: slideInLeft 1s ease-out;
}

.box-btn{
    width: 100%!important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px!important;
}

/* Fondos */
.bg-yellow{
    background-image:linear-gradient(rgba(255, 224, 102, 0.545), rgba(255, 224, 102, 0.819)), url('../images/back-1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* ========================================
   3. NAVEGACIÓN
   ======================================== */

/* Navbar principal */
.navbar {
    transition: all 0.3s ease, transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    width: 100%;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    color:var(--text-dark) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.logo{
    width: 300px;
}

/* Navbar responsive para diferentes tamaños de pantalla */
@media (min-width: 1401px) { 
    .navbar {
        max-width: 1400px;
        margin: 0 auto;
    }
    .hero-image img{
        width: 90%;
        margin-top: 60px;
    }
    .hero-left{
        margin-top: 60px;
    }
    .primera-fila{
        width: 80%;
        margin: 0 auto;
    }
}

.img-hero{
    filter:saturate(1.2) brightness(1.2) contrast(0.7) drop-shadow(10px 20px 0px var(--primary-color))!important;

}

.box-btn{
    width: 100%!important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px!important;
}

/* Nosotros Section */


.img-cartas-nos{
    width: 100%!important;
    max-width: 600px; /* Limita el ancho máximo en pantallas grandes */
    height: 400px!important;
    object-fit: contain; /* Evita que se deforme la imagen */
    object-position: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .img-cartas-nos{
        max-width: 100%;
        height: 250px;
    }
}
.img-ninoslook{
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:brightness(1.1) contrast(0.7) drop-shadow(10px 20px 0px var(--primary-color));
}

.text-apoyo{
    width: 40%;
    margin: 0 auto;
   
} 

.sub-text{
    font-size: 0.8rem!important;
    /* font-style: italic; */
    font-weight: 500;
    margin-top: 20px;
    width: 100%;
}



.line-divisor{
    background-color: var(--primary-color);
    height: 2px;
    margin-top: 20px;
}
.line-divisor-grafica{
    background-color: var(--primary-color);
    height: 2px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: none;
}



/* ========================================
   6. CARDS Y COMPONENTES
   ======================================== */

/* Cards base */
.solution-card, .mindfulness-card, .offer-card, .how-it-works-card, .product-card, .testimonial-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
}

.solution-card:hover, .mindfulness-card:hover, .offer-card:hover, .how-it-works-card:hover, .product-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
}

.solucion-container{
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.347);
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff008890 50%, #d6006f70 100%);
}

/* Offer cards */
.offer-card{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-card-container{
    transition: box-shadow 0.3s ease, border-radius 0.3s ease;
}

.offer-card-container:hover{
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

.offer-icon img{
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

/* Elementos destacados */
.highlight-box:hover::before {
    left: 100%;
}

.primera-fila{
    filter: drop-shadow(10px 20px 0px var(--primary-color));
}

.segunda-fila{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px!important;
    padding: 50px;
    border-radius: 25px!important;
}
.segunda-fila-rounded{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    
}
.segunda-fila {
    position: relative;
    z-index: 1;
}

.yoga-img{
    width: 90%;
    margin: 0 auto;
    filter:contrast(0.7) drop-shadow( 20px 20px 0px var(--primary-color));
}


.goals-info{
    font-size: 1.2rem;
    font-weight: 500;
}

.destacado-text{
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffe0667c 50%, #ffe06628 100%);
    width: 75%!important;
    
}

.bg-linear-gradient{
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffe0667c 50%, #ffe06628 100%)!important;

}

/* Eventos y Noticias */
.eventos-noticias{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 90px!important;
}

/* Nueva sección de eventos y noticias con opacidad */
.eventos-noticias-section{
    width: 100%;
    min-height: auto;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.eventos-noticias-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(254, 209, 96, 0.17), rgba(254, 209, 96, 0.17)), url('../images/back-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

/* voluntario Section */

.voluntario-card {
    
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.voluntario-card:hover {
    transform: translateY(-10px);
}

.voluntario-image-container {
    position: relative;
    overflow: hidden;
    
}

.voluntario-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: contrast(0.7) drop-shadow(10px 10px 0px var(--primary-color));
}

.voluntario-card:hover .voluntario-image {
    filter: contrast(1) drop-shadow(10px 10px 0px var(--primary-color));
}

.voluntario-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.voluntario-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: center;
}

.voluntario-content .btn {
    margin-top: auto;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}



/* Responsive para voluntario */
@media (max-width: 768px) {
    .voluntario-card:hover {
        transform: none;
        
    }
    
    .voluntario-card:hover .voluntario-image {
        transform: none;
    }
    
    .voluntario-title {
        font-size: 1rem;
    }
    
    .voluntario-content {
        padding: 15px;
    }
}

/* Cómo Funciona Section */
.como-funciona-section{
    width: 100%;
    min-height: auto;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* .como-funciona-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(245, 165, 35, 0.3), rgba(245, 165, 35, 0.3)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
} */

.card{
    border: none!important;
    background: none!important;
}

/* Product Cards */
.product-card  {
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
    border: 5px solid white;
}
.card-img-top{
    filter: contrast(0.8);
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card {
    overflow: hidden;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 15px 0;
}

/* Testimonials */
.img-testimonial{
    background: var(--primary-color);
    border-radius: 20px;
    padding: 20px;
    border: 10px solid var(--primary-color);
}

.testimonials-section{
    /* width: 80%; */
    min-height: auto;
    /* max-width: 1400px; */
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    margin: 0 auto;
    /* border-radius: 20px; */
}

/* .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:  url('../images/back_yellow.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
} */

.testimonial-quote {
    opacity: 0.3;
}

.testimonial-card {
    border-left: 4px solid var(--primary-color);
}

.testimonial-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

/* Testimonials Slider */
.testimonials-slider {
    margin: 0;
}

.testimonials-slider .carousel {
    background: rgba(255, 255, 255, 0);
    border-radius: 25px;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    padding: 0 1rem;
}

.testimonial-text{
    /* background-image: url('../images/fondorondo_1.png'); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    
}

.testimonial-text p {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
    font-weight: 400;
}

.testimonial-text p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.testimonial-text p::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-name {
    color: rgb(57, 73, 98);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-details {
    font-size: 0.9rem;
    margin: 0;
}

/* Carousel Indicators */
.testimonials-slider .carousel-indicators {
    bottom: -50px;
}

.testimonials-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    border: none;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.testimonials-slider .carousel-indicators .active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Carousel Controls */
.testimonials-slider .carousel-control-prev,
.testimonials-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-slider .carousel-control-prev {
    left: 55px;
}

.testimonials-slider .carousel-control-next {
    right: 55px;
}

.testimonials-slider .carousel-control-prev:hover,
.testimonials-slider .carousel-control-next:hover {
    opacity: 1;
    /* background: var(--secondary-color); */
    transform: translateY(-50%) scale(1.1);
}

.testimonials-slider .carousel-control-prev-icon,
.testimonials-slider .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-image: none !important;
    color: white !important;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-slider .carousel-control-prev-icon::before {
    content: "‹";
    color: var(--primary-color) !important;
    font-size: 5rem;
    font-weight: bold;
}

.testimonials-slider .carousel-control-next-icon::before {
    content: "›";
    color: var(--primary-color) !important;
    font-size: 5rem;
    font-weight: bold;
}

/* Iconos del carousel con color primario */
.icon-prev,
.icon-next {
    color: var(--primary-color) !important;
}

/* Estilos para Swiper de Noticias */
.noticias-swiper {
    padding: 20px 0 60px 0;
}

.noticias-swiper .swiper-button-next,
.noticias-swiper .swiper-button-prev {
    color: var(--primary-color) !important;
    font-size: 2rem;
    font-weight: bold;
    display: none;
}

.noticias-swiper .swiper-button-next:after,
.noticias-swiper .swiper-button-prev:after {
    font-size: 2rem;
    font-weight: bold;
}

.noticias-swiper .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
}

.noticias-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

.noticias-swiper .swiper-slide {
    height: auto;
}

.text-small{
    color: var(--text-dark) !important;
}

/* .noticias-swiper .swiper-slide .card {
    border-radius: 20px !important;
    overflow: hidden;
} */

/* .noticias-swiper .swiper-slide .card-img-top {
    border-radius: 20px 20px 0 0 !important;
} */

/* Responsive para Swiper */
@media (max-width: 991px) {
    .noticias-swiper .swiper-button-next,
    .noticias-swiper .swiper-button-prev {
        display: none;
    }
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials-slider .carousel {
        padding: 0rem 1rem;
        margin: 0 ;
    }
    
    .testimonial-text p {
        font-size: 1.1rem !important;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-avatar i {
        font-size: 1.2rem;
    }
    
    .testimonials-slider .carousel-control-prev,
    .testimonials-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-slider .carousel-control-prev {
        left: 1px;
    }
    
    .testimonials-slider .carousel-control-next {
        right: 1px;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* FAQ */
.accordion {
    border-radius: 20px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    border: none;
    box-shadow: none;
    color: var(--text-dark) !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
}

.accordion-body {
    color: var(--text-dark) !important;
}

.accordion-body ul li {
    color: var(--text-dark) !important;
}

.accordion-body strong {
    color: var(--text-dark) !important;
}

/* Step Numbers */
.step-number{
   background-image: url('../images/fondorondo3.png');
   background-size: contain;
   background-position: center;
   background-repeat: no-repeat;
   width: 150px;
   height: 150px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.step-number img{
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.686)) brightness(6);
   
}

.uno{
    width: 20px!important;
    transition: transform 0.3s ease;
    filter: drop-shadow(10px 20px 0px var(--red-color));
}

.uno:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

.step-number img:hover {
    transform: translateY(-10px);
    transition: transform 0.3s ease;
}

/* ========================================
   7. BOTONES Y ELEMENTOS INTERACTIVOS
   ======================================== */

/* Botones base */
.btn {
    border-radius: 15px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    background:white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    background:var(--primary-color);
    color: white;
    transform: translateY(-2px);
    border: none;
}

/* Voluntario Section */

.bg-voluntario{
    background-image: url('../images/fondoBlue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.tx{
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.547);
}

/* Tienda Section Styles */

/* Estilos para gráfica de barras horizontales */
.chart-container {
    /* background: var(--yellow-color-2); */
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.chart-item {
    margin-bottom: 25px;
}

.chart-item:last-child {
    margin-bottom: 0;
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.chart-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
    font-weight: 500;
}

.chart-bar {
    background: #e9ecef;
    height: 25px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.chart-bar-fill {
    height: 100%;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    /* El ancho se define en el HTML con style="width: X%" */
}

.chart-bar-blue {
    background: linear-gradient(90deg, var(--text-dark) 0%, #5BA0F2 100%);
}

.chart-bar-coral {
    background: linear-gradient(90deg, #fe4a4a 0%, #FF8E8E 100%);
}

.chart-bar-purple {
    background: linear-gradient(90deg, var(--accent-color) 0%, #d0006f8a 100%);
}

.chart-percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Las animaciones de las barras se manejan con JavaScript */

/* Estilos para los resultados de la encuesta */
.survey-results {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.survey-item {
    font-size: 1rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.survey-item:last-child {
    border-bottom: none;
}

.survey-item strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Nuevas tarjetas de tienda estilo imagen */
.shop-card-wrapper {
    transition: all 0.3s ease;
    height: 100%;
}

.shop-card-wrapper:hover {
    transform: translateY(-10px);
}

.shop-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.shop-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.shop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 20px 20px 0 0;
    filter: contrast(0.8);
}

.shop-card:hover .shop-image {
    transform: scale(1.05);
}

.shop-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shop-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.shop-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.shop-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}


.shop-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.shop-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.author-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-logo-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.author-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.shop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    /* border-top: 1px solid #e9ecef; */
}

.shop-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.shop-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.shop-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.shop-btn:active {
    transform: translateY(0);
}

/* Estilos legacy para compatibilidad */
.product-card-wrapper {
    transition: all 0.3s ease;
    /* border: 1px solid var(--text-dark); */
    height: 100%;
    border-radius: 20px;
}

.product-card-wrapper:hover {
    transform: translateY(-10px);
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    transform: scale(1.02);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-badge .badge {
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.product-features {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.price-section {
    padding: 10px;
    border-radius: 12px;
}

.price {
    color: var(--text-dark) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-note {
    font-size: 0.75rem;
    font-weight: 500;
}

.product-btn {
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border: none;
    background: var(--primary-color);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, var(--primary-color) 100%);
}

.product-btn:active {
    transform: translateY(0);
}

.shop-benefits {
    border: 1px solid #e9ecef;
    margin-top: 2rem;
}

.benefit-item {
    padding: 20px 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
    color: var(--secondary-color) !important;
}

/* Responsive adjustments for tienda */
@media (max-width: 768px) {
    /* Gráfica responsive */
    .chart-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .chart-item {
        margin-bottom: 20px;
    }
    
    .chart-title {
        font-size: 0.9rem;
    }
    
    .chart-subtitle {
        font-size: 0.8rem;
    }
    
    .chart-bar {
        height: 20px;
    }
    
    .chart-percentage {
        font-size: 0.75rem;
        right: 8px;
    }
    
    /* Estilos responsive para la encuesta */
    .survey-results {
        padding: 15px;
    }
    
    .survey-item {
        font-size: 0.9rem;
    }
    
    .survey-item strong {
        font-size: 1rem;
    }
    
    /* Nuevas tarjetas de tienda responsive */
    .shop-card-wrapper:hover {
        transform: none;
    }
    
    .shop-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .shop-card:hover .shop-image {
        transform: none;
    }
    
    .shop-title {
        font-size: 1.8rem!important;
    }
    
    .shop-tags {
        gap: 8px;
    }
    
    .shop-tag {
        font-size: 1rem!important;
        padding: 4px 8px;
    }
    
    .shop-description {
        font-size: 1rem!important;
    }
    
    .shop-footer {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .shop-price {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .shop-btn {
        width: 100%;
        padding: 15px;
        font-size: 0.9rem;
    }
    
    /* Deshabilitar hover effects en móviles para mejorar rendimiento */
    .product-card-wrapper:hover {
        transform: none;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    /* Mantener algunas animaciones suaves en móviles */
    .offer-card:hover,
    .how-it-works-card:hover,
    .solution-card:hover,
    .mindfulness-card:hover {
        transform: none;
    }
    
    /* Animaciones suaves para móviles */
    .offer-card,
    .how-it-works-card,
    .solution-card,
    .mindfulness-card,
    .testimonial-card {
        transition: all 0.3s ease;
    }
    
    /* Animación de entrada más suave en móviles */
    .animate-on-scroll.animated {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .product-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .benefit-item {
        margin-bottom: 20px;
    }
}

/* Background Gradients */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}


/* Eventos y Noticias Carousel - Solo móvil/tablet */
#eventosCarousel .carousel-indicators {
    bottom: -50px;
}

#eventosCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    margin: 0 5px;
}

#eventosCarousel .carousel-indicators button.active {
    opacity: 1;
}

#eventosCarousel .carousel-control-prev,
#eventosCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color:transparent;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    color: var(--primary-color)!important;
}

#eventosCarousel .carousel-control-prev {
    left: 10px;
}

#eventosCarousel .carousel-control-next {
    right: 10px;
}

#eventosCarousel .carousel-control-prev:hover,
#eventosCarousel .carousel-control-next:hover {
    opacity: 1;
}

/* Responsive adjustments para el carousel */
@media (max-width: 991.98px) {
    #eventosCarousel .carousel-control-prev {
        left: 5px;
    }
    
    #eventosCarousel .carousel-control-next {
        right: 5px;
    }
}

/* Cierre CTA */
.cierre-cta {
    position: relative;
    overflow: hidden;
}
.cierre-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(245, 165, 35, 0.3), rgba(245, 165, 35, 0.3)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}
.cierre-cta > .container,
.cierre-cta > * {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

/* ========================================
   8. FOOTER
   ======================================== */

/* Footer principal */
footer{
    background-image: url('../images/fondo-footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.footer-logo{
   width: 250px;
}

.footer-logo:hover{
    color: var(--primary-color) !important;
}

/* Enlaces del footer */
.list-unstyled a{
    text-decoration: none;
    color: white !important;
}

.list-unstyled a:hover{
    color: var(--primary-color) !important;
}

/* Redes sociales */
.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

/* ***************************** Saber Más *****************************
********************************************************************** */

.cover {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    z-index: 3; /* Para que esté por encima de la capa amarilla */
}
.bg-hero-info {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
}

.bg-hero-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#ffc80070; /* Amarillo con 30% de opacidad */
    z-index: 2;
}


.stat-number{
    color: var(--primary-color) !important;
}

.bg-card-info{
    background:linear-gradient(135deg, var(--secondary-color) 0%, #ffe0667c 50%, #ffe06628 100%)!important;
    transition: all 0.3s ease;
}

.bg-card-info:hover{
    background-color: #ffc80062;
}

.p-color-text{
    color: var(--text-dark) !important;
}
.yoga-img-sabermas{
    width: 100%!important;
    margin: 0 auto;
    filter: drop-shadow( 20px 20px 0px var(--primary-color));
}

.img-maestros{
    filter:contrast(0.8) drop-shadow(10px 20px 0px var(--primary-color))!important;
}



/* ========================================
   9. ANIMACIONES Y EFECTOS
   ======================================== */

/* Animaciones base */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ========================================
   10. RESPONSIVE DESIGN
   ======================================== */

/* Responsive para móviles */
@media (max-width: 768px) {
    .navbar{
        width: 90%!important;
        padding: 0 10px!important;
        margin: 0 auto!important;
        margin-top: 10px!important;
    }
    .hero-section {
        text-align: center;
        padding: 100px 0 50px;
    }
    .hero-background-responsive{
        display: block;
    }

    .hero-background{
        display: none;
    }

    .logo{
        width: 200px!important;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    .offer-icon img {
        width: 50%;
        height: auto;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .offer-card{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0!important;
        padding-top: 10px!important;
    }

    .h4-offer{
        font-size: 1.8rem;
    }

    .primera-fila{
        margin-bottom: 60px!important;
    }

    .img-ninoslook{
        width: 90%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter:contrast(0.7) drop-shadow(10px 20px 0px var(--primary-color));
    }

    .nosotros-destacado{
        text-align: center!important;
    }

    .solucion-container{
        margin-top: -60px!important;
    }

    .segunda-fila{
        padding: 24px!important;
        margin-top: 0px!important;
    }

    .yoga-img{
        width: 100%!important;
       
        margin: 0 auto 60px auto!important;
    }

    .yoga-img-sabermas{
        width: 90%!important;
        margin: 0 auto;
        filter: drop-shadow( 20px 20px 0px var(--primary-color));
    }
    
    .img-hero{
        width: 100%!important;
        margin: 0 auto!important;
    }

    .hero-image{
        width: 100%!important;
        margin: 0 auto!important;
    }

    .box-btn{
        width: 100%!important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px!important;
        margin-top: 0!important;
        margin-bottom: 18px!important;
    }

    .apoyo-container{
        width: 95%;
        margin: 0 auto;
        
    }

    .segunda-grafica{
        width: 100%;
        margin-bottom: 30px!important;
    }

    .destacado-text{
        width: 95%!important;
        
    }

    .solucion-container{
       width: 95%!important;
       margin: 0 auto!important;
       margin-bottom: 30px!important;
    }

    .line-divisor-grafica{
        display: block!important;
    }

    .cartas-nos-container{
        width: 400px!important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cartas-nos{
        width: 290px!important;
        height: 190px!important;
        object-fit: cover!important;
        margin: 0 auto!important;
        z-index: 9999!important;
    }

    .text-apoyo{
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .card-img-top{
        width: 100%!important;
        margin: 0 auto!important;

    }

    .noticias-swiper .swiper-button-next,
.noticias-swiper .swiper-button-prev {
    color: var(--primary-color) !important;
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

    .bg-voluntario{
        width: 90%;
        margin: 0 auto;
        padding: 40px 10px!important;
    }

    #voluntario{
        width: 90%;
        margin: 0 auto;
    }
    .voluntario-card{
        min-width: 300px;
        height: auto;
        flex: 1 1 0;
        transition: all 0.3s ease;
    }

    .bg-voluntario h2{
        font-size: 2.8rem!important;
    }

    .bg-voluntario p{
        font-size: 1.4rem!important;
    }

    .testimonials-section{
        width: 90%;
    }

    /* Saber Más */
    .h1-sabermas{
        font-size: 3rem!important;
    }
    .h3-sabermas{
        font-size: 2.5rem!important;
    }

    .footer-logo{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #357abd;
}

/* ========================================
   11. ELEMENTOS FLOTANTES
   ======================================== */

/* Botón de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    transition: transform 0.3s ease;
    display: block;
    color: white !important;
}

.whatsapp-btn:hover i {
    transform: scale(1.1);
}

/* Botón de Subir */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(40, 40, 40, 0.303);
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 9999;
}

.scroll-to-top:hover {
    background: var(--yellow-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42, 42, 42, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
    display: block;
    color: white !important;
    font-size: 1.2rem;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive para botones flotantes */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .navbar, .btn, .floating-elements, .scroll-to-top, .whatsapp-btn {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}

/* ========================================
   12. ESTILOS PARA PÁGINAS ESPECÍFICAS
   ======================================== */

/* Política de Privacidad */
.privacy-content {
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section h4 {
    color: #2c5aa0;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.privacy-list {
    padding-left: 1.5rem;
}

.privacy-list li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.highlight-box {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #bbdefb;
    margin: 1.5rem 0;
}

.last-updated {
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin-bottom: 2rem;
}

/* Página de contacto/compra */
.hero-section-contacto {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 95%;
    margin: 0 auto;
    border-radius: 20px;
}

.hero-section-contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(245, 165, 35, 0.3), rgba(245, 165, 35, 0.3)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-section-contacto .container {
    position: relative;
    z-index: 2;
}

.hero-section-contacto h1 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.hero-section-contacto .lead {
    color: var(--text-dark);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Estilos de formularios para página de contacto */
.hero-section-contacto ~ section .form-control:focus,
.hero-section-contacto ~ section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(208, 0, 111, 0.25);
}

.hero-section-contacto ~ section .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Estilos específicos para botones en página de contacto */
.hero-section-contacto .btn-primary,
.hero-section-contacto + section .btn-primary,
.hero-section-contacto ~ section .btn-primary {
    background: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    transition: all 0.3s ease;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section-contacto .btn-primary:hover,
.hero-section-contacto + section .btn-primary:hover,
.hero-section-contacto ~ section .btn-primary:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Estilos de tarjetas para página de contacto */
.hero-section-contacto ~ section .card {
    border: none !important;
    background: white !important;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-section-contacto ~ section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.hero-section-contacto ~ section .card-body {
    padding: 2.5rem;
}

/* Estilos para los pasos del proceso */
.hero-section-contacto ~ section .bg-primary {
    background: var(--primary-color) !important;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(208, 0, 111, 0.3);
}

/* Estilos para las etiquetas de formulario */
.hero-section-contacto ~ section .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Estilos para los campos de formulario */
.hero-section-contacto ~ section .form-control,
.hero-section-contacto ~ section .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-section-contacto ~ section .form-control:hover,
.hero-section-contacto ~ section .form-select:hover {
    border-color: var(--primary-color);
}

/* Estilos para la sección de información adicional */
.hero-section-contacto ~ section .bg-light {
    background: var(--bg-light) !important;
    border-radius: 20px;
    padding: 3rem 2rem;
}

.hero-section-contacto ~ section h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-section-contacto ~ section h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-section-contacto ~ section .text-muted {
    color: var(--text-light) !important;
    line-height: 1.6;
}

/* Estilos para el footer de la página de contacto */
.hero-section-contacto ~ footer {
    background-image: url(../images/fondo-footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section-contacto ~ footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 79, 145, 0.85);
    z-index: 1;
}

.hero-section-contacto ~ footer .container {
    position: relative;
    z-index: 2;
}

.hero-section-contacto ~ footer h5,
.hero-section-contacto ~ footer h6 {
    color: white;
    font-weight: 600;
}

.hero-section-contacto ~ footer .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-section-contacto ~ footer .text-white-50:hover {
    color: var(--primary-color) !important;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .hero-section-contacto {
        min-height: 300px;
        padding: 2rem 0;
    }

    .hero-section-contacto h1 {
        font-size: 3rem;
        color: var(--text-dark) !important;
        font-weight: 700;
    }
    
    .hero-section-contacto ~ section .card-body {
        padding: 2rem !important;
    }
    
    .hero-section-contacto ~ section .form-control-lg,
    .hero-section-contacto ~ section .form-select-lg {
        font-size: 1rem;
    }
    
    .hero-section-contacto ~ section .bg-light {
        padding: 2rem 1rem;
    }
}


/* ========================================
   BANNER DE COOKIES
   ======================================== */

/* Banner principal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffffb7 0%, #f8f9fa 100%);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 4px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-icon {
    font-size: 3rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
}

.cookie-banner-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--tertiary-color);
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner-buttons .btn-primary {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.cookie-banner-buttons .btn-primary:hover {
    background: var(--tertiary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.cookie-banner-buttons .btn-outline-secondary,
.cookie-banner-buttons .btn-outline-primary {
    border: 2px solid currentColor;
}

.cookie-banner-buttons .btn-outline-secondary:hover,
.cookie-banner-buttons .btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Modal de configuración */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: white;
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white !important;
}

.cookie-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal-body::-webkit-scrollbar {
    width: 8px;
}

.cookie-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cookie-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.cookie-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--tertiary-color);
}

.cookie-setting-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-setting-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.1);
}

.cookie-setting-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-setting-header h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-setting-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    border: 2px solid #dee2e6;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(245, 166, 35, 0.25);
}

.form-check-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

.cookie-modal-footer .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-modal-footer .btn:hover {
    transform: translateY(-2px);
}

/* Estilos adicionales para la página de política de cookies */
.cookie-type-card {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.cookie-type-card h5 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cookie-type-card .badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

.feature-box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-box h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.third-party-box {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.third-party-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.1);
}

.third-party-box h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 992px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-icon {
        font-size: 2.5rem;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-banner-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-icon {
        font-size: 2rem;
    }

    .cookie-banner-text h4 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-banner-buttons .btn {
        width: 100%;
    }

    .cookie-modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem;
    }

    .cookie-setting-item {
        padding: 1rem;
    }

    .cookie-setting-header {
        flex-direction: column;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }
}
