/* ===================================
   HERO SECTION - FONDOS Y ESTRUCTURA
   =================================== */
body {
    box-sizing: border-box;
    font-family: sans-serif;
    background-color: #fff;
}
.txt-span{
    font-size: 28px;
    font-weight: 800;
}
.txt-span2{
    font-size: 43px;
    font-weight: 800;
}
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../img/fondo-desktop.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Fondo para MÓVIL y TABLET */
@media (max-width: 991px) {
    .hero-section {
        background-image: url('../img/fondo-mobile.png');
      
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
        height: auto;
    }
}
/* ===================================
   NAVBAR - ESTILO OFICIAL
   =================================== */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1.5rem 0;
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hisense-logo {
    height: 60px;
    width: auto;
}

.fifa-logo {
    height: 50px;
    width: auto;
}

.patrocinador-text {
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 5px;
    opacity: 0.9;
}

/* ===================================
   CÁPSULA DEL MENÚ
   =================================== */

.navbar-capsule {
    background: white;
    border-radius: 50px;
    padding: 0.4rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-nav {
    flex-direction: row;
    gap: 0.5rem;
}

.navbar-nav .nav-item {
    display: inline-block;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00d084 !important;
}

/* Botón hamburguesa */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================
   RESPONSIVE - TABLET Y MÓVIL
   =================================== */

@media (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .hisense-logo {
        height: 35px;
    }
    
    .fifa-logo {
        height: 40px;
    }
    
    .patrocinador-text {
        font-size: 0.55rem;
    }
    
    .navbar-capsule {
        background: white;
        border-radius: 30px;
        padding: 0.5rem 1rem;
        margin-top: 1rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem;
    }
    
    .navbar-collapse {
        background: transparent;
    }
}

/* Móvil pequeño */
@media (max-width: 575px) {
    .hisense-logo {
        height: 50px;
    }
    
    .fifa-logo {
        height: 32px;
    }
    
    .patrocinador-text {
        display: none; /* Ocultar texto en móviles muy pequeños */
    }
    
    .navbar-capsule {
        padding: 0.4rem 0.8rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem !important;
    }
}

/* ===================================
   HERO WRAPPER - OCUPA EL ESPACIO RESTANTE
   =================================== */

.hero-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

/* ===================================
   LINE IMAGE (Texto como imagen)
   =================================== */

.hero-line {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2vh;
}

.hero-line-img {
    max-width: 60%;
    height: auto;
    max-height: 15vh;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* ===================================
   TROFEO - IMAGEN PRINCIPAL GRANDE
   =================================== */

.hero-products {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.trofeo-container {
    width: 100%;
    max-width: 850px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.product-image.trophy {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 220px); /* Más espacio para el trofeo */
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-line-img {
        max-width: 70%;
        max-height: 12vh;
    }
    
    .trofeo-container {
        max-width: 500px;
    }
    
    .product-image.trophy {
        max-height: 55vh;
    }
    
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */

@media (max-width: 767px) {
    .hero-line {
        margin-bottom: 3vh;
    }
    .hero-wrapper {
    padding-bottom: 10vh; /* Cambiar de 3vh a 10vh */
    align-items: center; /* Agregar esta línea */
    }
    .hero-line-img {
        max-width: 85%;
        max-height: 10vh;
    }
    
    .trofeo-container {
        max-width: 380px;
    }
    
    .product-image.trophy {
        max-height: 48vh;
    }
     
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO
   =================================== */

@media (max-width: 575px) {
    .hero-line-img {
        max-width: 90%;
        max-height: 9vh;
    }
     .hero-wrapper {
        padding-bottom: 0vh; /* Agregar o modificar */
        align-items: center; /* Agregar esta línea */
    }
     .hero-line {
        margin-bottom: 2vh; /* Reducir margen */
    }
    .trofeo-container {
        max-width: 370px;
    }
    
    .product-image.trophy {
        max-height: 42vh;
    }
}

@media (max-width: 400px) {
    .hero-line-img {
        max-width: 95%;
        max-height: 8vh;
    }
    
    .trofeo-container {
        max-width: 350px;
    }
    
    .product-image.trophy {
        max-height: 40vh;
    }
}

/* ===================================
   PANTALLAS MUY GRANDES
   =================================== */

@media (min-width: 1920px) {
    .trofeo-container {
        max-width: 950px;
    }
    
    .product-image.trophy {
        max-height: calc(100vh - 250px);
    }
}
/* ===================================
   SECCIÓN DINÁMICA - ESTRUCTURA BÁSICA
   =================================== */

.dinamica-section {
    position: relative;
    width: 100%;
    min-height: 800px;
    
     padding: 3px 0; /* Compensa el espacio del border */
    /* box-sizing: border-box; Incluye padding en las dimensiones */
}

/* Div 1: Fondo de pasto */
.pasto-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.pasto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

/* Div 2: Contenedor blanco redondeado */
.contenedor-blanco {
    position: relative;
    background-color: #fff;
    border-radius: 50px 50px 0 0;
    min-height: 500px;
    margin-top: 280px;
    /* box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1); */
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */

@media (max-width: 991px) {
    .dinamica-section {
        min-height: 700px;
    }
    
    .pasto-background {
        height: 300px;
    }
    
    .pasto-img {
        object-position: center;
        
    }
    
    .contenedor-blanco {
        margin-top: 216px;
        border-radius: 40px 40px 0 0;
        min-height: 450px;
    }

}

@media (max-width: 767px) {
    .dinamica-section {
        min-height: 650px;
    }
    
    .pasto-background {
        height: 250px;
    }
    
    .contenedor-blanco {
        /* margin-top: 180px; */
        border-radius: 30px 30px 0 0;
        /* min-height: 400px; */
    }
      .pasto-img {
        object-position: center;
    }
 
}

/* ===================================
   MOSTRAR/OCULTAR SEGÚN DISPOSITIVO
   =================================== */

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* En móvil: ocultar desktop, mostrar móvil */
@media (max-width: 991px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    .pasto-img{
        height: 62%;
    }
}


/* ===================================
   TEXTO SOBRE EL PASTO
   =================================== */

.pasto-texto {
    position: absolute;
    top: 40px;
    left: 0; /* O quita el left por completo */
    right: 0;
    
    z-index: 10;
    color: white;
    text-align: center;
    width: 90%;
    max-width: 800px;
    max-width: 800px;
    margin: 0 auto; /* Centra el contenedor */
}

.pasto-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pasto-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    text-align: center;
}

/* Responsive para el texto */
@media (max-width: 991px) {
    .pasto-texto {
        top: 30px;
        left: 30px;
    }
    
    .pasto-subtitle {
        font-size: 0.8rem;
    }
    
    .pasto-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .pasto-texto {
        top: 25px;
        left: 20px;
    }
    
    .pasto-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .pasto-title {
        font-size: 1.5rem;
    }
}

/* ===================================
   (Mantén el resto del CSS anterior)
   =================================== */

   /* ===================================
   TARJETAS DE PASOS
   =================================== */

.paso-card {
    background: linear-gradient(135deg, #003159 0%, #004080 100%);
    border-radius: 25px;
    padding: 0px 20px 20px; /* Más padding arriba para el icono */
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    border: solid #fff;
    position: relative;
    top: -50px;
    z-index: 1;
}

.paso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.4);
}

/* ===================================
   ICONOS DE LOS PASOS
   =================================== */

.paso-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
     border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid  #00cdce;
    position: relative;
    top: -50px;
    z-index: 0;
     background: linear-gradient(135deg, #003366 0%, #004080 100%);
}

.paso-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* ===================================
   TEXTO DE LAS TARJETAS
   =================================== */

.paso-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.paso-text {
    font-size: 26px;
    color: white;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}
 .txt-span{
        font-size: 25px;
        
    }
.tex-p1{
  position: relative;
  top: -38px;
}
.tex-p2{
  position: relative;
  top: -38px;
}

/* ===================================
   FOOTER DE LA SECCIÓN
   =================================== */

.dinamica-footer {
    margin-top: 3rem;
    padding: 0 20px;
}

.footer-text {
    font-size: 47px;
    font-weight: 700;
    color: #003159;
    margin: 0;
    line-height: 1.4;
    position: relative;
    top: -48px;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 991px) {
    .paso-card {
    background: linear-gradient(135deg, #003159 0%, #004080 100%);
    border-radius: 25px;
    padding: 0px 20px 20px; /* Más padding arriba para el icono */
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible; /* CAMBIAR: de hidden a visible */
    border: solid #fff;
    top: -50px;
    z-index: 1; /* z-index menor que el icono */
    }
    
    .paso-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px; /* Margen abajo para separar del texto */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid #00cdce;
    position: relative;
    top: -100px; /* Ajustar para que quede en el borde */
    z-index: 10; /* z-index MAYOR que la tarjeta */
    background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Mismo fondo que la tarjeta */
}
    
    .paso-icon {
        width: 45px;
        height: 45px;
    }
    
    .paso-title {
        font-size: 1.3rem;
    }
    
    .paso-text {
        font-size: 24px;
    }
   
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */

@media (max-width: 767px) {
    .contenedor-blanco {
        min-height: auto;
        padding-bottom: 40px;
    }
    
    .paso-card {
         padding: 50px 15px 15px;
        top: -50px;
    }
    
    .paso-icon-wrapper {
        width: 70px;
        height: 70px;
        top: -50px;
    }
    
    .paso-icon {
        width: 40px;
        height: 40px;
    }
    
    .paso-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .paso-text {
        font-size: 20px;
    }
    
    .dinamica-footer {
        margin-top: 2rem;
    }
    
    .footer-text {
        font-size: 47px;
    }
  }

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO
   =================================== */

@media (max-width: 575px) {
    .paso-card {
        padding: 45px 12px 12px;
        top: -100px;
        width: 82%;
        margin: 0 auto;
        
    }
    
    .paso-icon-wrapper {
        width: 60px;
        height: 60px;
        top: -80px;
    }
    
    .paso-icon {
        width: 35px;
        height: 35px;
    }
    
    .paso-title {
        font-size: 1.1rem;
    }
    
    .paso-text {
         font-size: 20px;
    }
    .txt-span {
        font-size: 20px;
        font-weight: 800;
    }

    .txt-span2 {
        font-size: 20px;
        font-weight: 800;
    }
    .footer-text {
         font-size: 22px;
    }
}

/* ===================================
   SECCIÓN PREMIOS - ESTRUCTURA
   =================================== */

.premios-section {
    position: relative;
    padding: 80px 0 60px;
    background-color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Fondo móvil */
@media (max-width: 991px) {
    .premios-section {
        background-color: #fff;
        padding: 60px 0 40px;
    }
}

/* ===================================
   HEADER DE PREMIOS
   =================================== */

.premios-header {
   margin: 0 auto;
    text-align: center;
}

.premios-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    color: #003159;
}

.premios-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #003159;
    margin: 0 auto;
    
}

/* ===================================
   CONTENEDOR DE PREMIOS
   =================================== */

.premios-container {
    
}

@media (max-width: 767px) {
    .premios-container {
        border-radius: 30px;
        padding: 40px 25px;
    }
}

/* ===================================
   IMAGEN DE BOLETOS - ESPACIO
   =================================== */

.premios-imagen-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
   
}

.boletos-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    /* Placeholder - quitar cuando pongas la imagen real */
    display: flex;
}

/* Cuando no hay imagen, mostrar placeholder */
.boletos-img[src="assets/img/boletos-premio.png"] {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #00C7C9 0%, #00999a 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 199, 201, 0.3);
}

/* ===================================
   TARJETA DE INFORMACIÓN DEL PREMIO
   =================================== */

.premio-info-card {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    border-radius: 25px;
    /* padding: 13px 72px; */
    padding: 47px 63px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    border: #00cdce solid 5px;
}

.premio-titulo {
    font-size: 4rem;
    letter-spacing: 1px;
    color: #00cdce;
    text-align: left;
}

.premio-descripcion {
    font-size: 45px;
    line-height: 1.6;
    opacity: 0.95;
}

.premio-ganadores {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.ganadores-text {
    font-size: 16px;
    font-weight: 600;
    color: #9e9e9e;
    text-align: center;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 991px) {
   .premio-info-card {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    border-radius: 25px;
    padding: 47px 63px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    border: #00cdce solid 5px;
}

.premio-titulo {
    font-size: 4rem;
    letter-spacing: 1px;
    color: #00cdce;
    text-align: left;
}

.premio-descripcion {
    font-size: 3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.premio-ganadores {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.ganadores-text {
    font-size: 1.3rem;
    font-weight: 600;
}
}
/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */

@media (max-width: 767px) {
    .premios-header {
        margin-bottom: 2.5rem;
    }
    
    .premios-container {
        padding: 40px 20px;
    }
    
    .premios-imagen-wrapper {
        min-height: 200px;
        margin-bottom: 20px;
    }
    
    .boletos-img {
        max-height: 250px;
    }
    
    .premio-info-card {
        padding: 35px 25px;
        text-align: center;
    }
    
    .premio-titulo {
        font-size: 1.8rem;
         color: #00cdce;
    }
    
    .premio-descripcion {
        font-size: 1rem;
    }
    
    .ganadores-text {
        font-size: 1rem;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO
   =================================== */

@media (max-width: 575px) {
    .premios-section {
        padding: 50px 0 10px;
    }
    
    .premios-header {
        margin-bottom: 2rem;
    }
    
    .premios-title {
        font-size: 1.8rem;
    }
    
    .premios-container {
        border-radius: 25px;
        padding: 30px 15px;
    }
    
    .premios-imagen-wrapper {
        min-height: 180px;
    }
    
    .boletos-img {
        max-height: 200px;
    }
    
    .premio-info-card {
        padding: 30px 20px;
    }
    
    .premio-titulo {
        font-size: 1.5rem;
         color: #00cdce;
    }
    
    .premio-descripcion {
        font-size:22px;
        text-align: left;
    }
    
    .ganadores-text {
        font-size: 0.95rem;
        text-align: center;
    }
}
/* ===================================
   SECCIÓN PRODUCTOS PARTICIPANTES
   =================================== */

.productos-section {
    
    /* width: 100%;
    background: white;
    padding: 80px 0 0;
    border-radius: 0px 0px 50px 50px;
    z-index: 2; */
    
    
}
.fondo-borde-blanco{
  position: relative;
    width: 100%;
    background: white;
    padding: 80px 0 0;
    border-radius: 0px 0px 50px 50px;
    z-index: 2;
    /* border: solid #00999a; */
}

.productos-header {
    margin-bottom: 3rem;
}

.productos-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #003366;
}

.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 20;
    background-color: rgba(0, 51, 102, 0.8);
    border-radius: 50%;
}

.carousel-control-prev {
    left: 10px; /* DENTRO del contenedor en móvil */
}

.carousel-control-next {
    right: 10px; /* DENTRO del contenedor en móvil */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
    background-size: 25px 25px;
}

/* Desktop: Ocultar flechas */
@media (min-width: 992px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}

/* Móvil: Mostrar flechas dentro del área visible */
@media (max-width: 991px) {
    .carousel-control-prev {
        left: 5px !important;
    }
    
    .carousel-control-next {
        right: 5px !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
        background-size: 20px 20px;
    }
}

/* ===================================
   CARRUSEL
   =================================== */

.productos-carousel-wrapper {
    padding: 0 15px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-item {
    padding: 10px;
}

/* ===================================
   MOSTRAR 3 PRODUCTOS EN ESCRITORIO
   =================================== */

@media (min-width: 992px) {
    .productos-carousel-wrapper .carousel-inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        gap: 0px;
    }
    
    .productos-carousel-wrapper .carousel-item {
        flex: 0 0 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
        display: block !important;
        opacity: 1 !important;
        padding: 10px;
         margin-right: 0 !important;
    }
    
    .productos-carousel-wrapper .carousel-item.active,
    .productos-carousel-wrapper .carousel-item:not(.active) {
        display: block !important;
        visibility: visible !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}

/* ===================================
   MOSTRAR 1 PRODUCTO EN MÓVIL (CARRUSEL)
   =================================== */

@media (max-width: 991px) {
    .productos-carousel-wrapper .carousel-inner {
        display: block !important;
    }
    
    .productos-carousel-wrapper .carousel-item {
        display: none !important;
         margin-right: -100%; /* Mantener en móvil */
    }
    
    .productos-carousel-wrapper .carousel-item.active {
        display: block !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: flex !important;
    }
    
    .productos-section {
        padding: 60px 0 0;
    }
    
    .productos-header {
        margin-bottom: 2rem;
    }
    
    .producto-card {
        max-width: 350px;
    }
    
    .producto-imagen-wrapper {
        height: 200px;
    }
    
    .producto-info {
        padding: 25px 20px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .productos-fondo-turquesa {
        height: 100px;
    }
}

/* ===================================
   TARJETA DE PRODUCTO
   =================================== */

.producto-card {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    border: 3px solid #00cdce;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
}

.producto-imagen-wrapper {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.producto-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.producto-info {
    padding: 30px 25px;
    text-align: center;
}

.producto-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.producto-precio {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.btn-comprar {
    background: #00cdce;
    color: #003159;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-comprar:hover {
    background: #00cdce;
    transform: scale(1.05);
}

/* ===================================
   CONTROLES DEL CARRUSEL
   =================================== */

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 10;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: #003159;
    border-radius: 50%;
    background-size: 25px 25px;
}

/* ===================================
   FONDO TURQUESA
   =================================== */

.productos-fondo-turquesa {
    background: #00cdce;
    height: 150px;
    margin-top: -44px;
    position: relative;
    z-index: 1;
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO
   =================================== */

@media (max-width: 575px) {
    .productos-title {
        font-size: 1.5rem;
    }
    
    .producto-card {
        max-width: 300px;
    }
    
    .producto-imagen-wrapper {
        height: 180px;
    }
    
    .productos-fondo-turquesa {
        height: 100px;
    }
}

/* ===================================
   SECCIÓN FAQ / PREGUNTAS FRECUENTES
   =================================== */

.faq-section {
    background: #00cdce;
    padding: 80px 0;
    position: relative;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.faq-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-shadow: 2px 2px 8px rgb(6, 6, 6);
    color: #f8f9fa;
}

/* ===================================
   ACORDEÓN
   =================================== */

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: none !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: white;
    color: #003159;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
    text-align: left;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #003159;
    color: white;
}

.accordion-button:hover {
    background: #f8f9fa;
}

.accordion-button:not(.collapsed):hover {
    background: #003159;
}

.pregunta-text {
    flex: 1;
    padding-right: 30px;
}

/* Icono de flecha */
.accordion-button::after {
    content: '▼';
    font-size: 0.8rem;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    border: none;
    background-image: none;
    width: auto;
    height: auto;
}

.accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
    color: white;
}

.accordion-collapse {
    background: white;
}

.accordion-body {
    padding: 20px 25px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */

@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-title {
        font-size: 1.6rem;
    }
    
    .accordion-button {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 18px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-title {
        font-size: 1.4rem;
    }
    
    .accordion-item {
        border-radius: 12px !important;
        margin-bottom: 12px;
    }
    
    .accordion-button {
        padding: 15px 18px;
        font-size: 0.9rem;
    }
    
    .accordion-button::after {
        right: 18px;
    }
    
    .accordion-body {
        padding: 15px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-subtitle {
        font-size: 0.85rem;
    }
    
    .faq-title {
        font-size: 1.2rem;
    }
    
    .accordion-button {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .accordion-body {
        padding: 14px 16px;
        font-size: 0.8rem;
    }
}

/* ===================================
   MODAL TÉRMINOS Y CONDICIONES
   =================================== */

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 25px 30px;
    border: none;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-header .btn-close {
    filter: invert(1);
    opacity: 1;
}

.modal-body {
    padding: 30px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body h6 {
    color: #003366;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 15px;
    color: #555;
}

.modal-footer {
    padding: 20px 30px;
    border: none;
    justify-content: center;
}

.modal-footer .btn {
    padding: 10px 40px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary {
    background: #00C1C4;
    color: white;
}

.modal-footer .btn-secondary:hover {
    background: #00a5a7;
    transform: scale(1.05);
}

/* Modal backdrop (fondo oscuro) */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */

@media (max-width: 767px) {
    .modal-dialog {
        margin: 20px;
    }
    
    .modal-content {
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
        font-size: 0.9rem;
        max-height: 60vh;
    }
    
    .modal-body h6 {
        font-size: 1rem;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
    
    .modal-footer .btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}