/* ===================================
   CONFIGURACIÓN GENERAL
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* ===================================
   FONDO DE ESTADIO (DESDE CSS)
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    width:100%;
    /* Fondo para ESCRITORIO */
    background-image: url('../img/BKG.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

/* Fondo para MÓVIL y TABLET */
@media (max-width: 991px) {
    .hero-section {
        background-image: url('../img/BKG.png');
        background-attachment: scroll;
        background-position: center top;
    }
}

/* ===================================
   NAVBAR
   =================================== */

.navbar {
   
   /*  min-height: 10vh; CAMBIAR: de 100vh a min-height */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: .5rem 0;
    background-color: #0053E2; /* Transparente al inicio */
    transition: all 0.4s ease;
}
.navbar-scrolled {
      position: fixed;
    background-color: #0053E2;
     padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mattel-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    padding: 5px;
}

.navbar-nav .nav-link {
    color: oklch(95.494% 0.00299 264.788 / 0.384) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important; /* Color rosa Mattel */
}

/* Navbar móvil */
@media (max-width: 991px) {
    .navbar-collapse {
       
        padding: 1rem;
        
        margin-top: 1rem;
    }
    
    .mattel-logo {
        height: 40px;
    }
      .navbar {
        padding: 1rem 0;
    }
    
    
    .navbar-scrolled {
        padding: 0.8rem 0;
    }
   
}

/* ===================================
   HERO CONTENT - CENTRADO CON AIRE
   =================================== */

.hero-content {
    position: relative;
    z-index: 10;
   
}

/* ===================================
   HEADER: TÍTULO Y LOGOS
   =================================== */

.hero-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
     padding: 60px 0 10px;
}

.hero-titulo-wrapper {
    flex: 1;
    min-width: 200px;
}

.hero-titulo-img {
    max-width: 90%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
 
}

.hero-logos-wrapper {
    flex-shrink: 0;
    max-width: 250px;
}

.hero-logos-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    
}

/* ===================================
   CUERPO PRINCIPAL: PRODUCTOS + TROFEO + PASOS
   =================================== */

.hero-body-wrapper {
    padding: 10px 0;
}

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

.hero-productos-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
   
}

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

.hero-trofeo-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
   
}

.hero-pasos-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 300px;
   margin-bottom: 10px;
   
}

.hero-pasos-img {
    max-width: 70%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: flex;
    justify-content: start;
    text-align: start;
    /* margin-bottom: 100px; */
    
}

.hero-tagline {
    text-align: center;
    margin-top: 3vh;
    margin-bottom: 2vh;
}

.hero-tagline p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    margin: 0;
}

.hero-tagline p br {
    display: block;
}
@media (max-width: 991px) {
    .hero-tagline {
        margin-top: 4vh;
        margin-bottom: 3vh;
    }
    
    .hero-tagline p {
        font-size: clamp(0.9rem, 1.8vw, 1.3rem);
        letter-spacing: 1.5px;
    }

      /* Ocultar elementos que no queremos en móvil */
    .hero-pasos-wrapper,
    .hero-tagline,
    .hero-trofeo-wrapper {
        display: none !important;
    }
    
    /* Alinear y centrar elementos visibles en móvil */
    .hero-header-wrapper {
        justify-content: center !important;
        flex-direction: column;
        align-items: center !important;
    }
    
    .hero-logos-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .hero-titulo-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .hero-titulo-img {
        max-width: 90%;
    }
    
    .hero-productos-wrapper {
        display: flex;
        justify-content: center;
    }
    
    .hero-productos-img {
        max-width: 80%;
    }
    
    .hero-body-wrapper {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .hero-tagline {
        margin-top: 5vh;
        margin-bottom: 4vh;
    }
    
    .hero-tagline p {
        font-size: clamp(0.85rem, 1.6vw, 1.1rem);
        letter-spacing: 1px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    .hero-tagline p br {
        display: none; /* Quitar salto de línea en móvil */
    }

      .hero-logos-img {
        max-width: 200px;
    }
    
    .hero-titulo-img {
        max-width: 95%;
    }
    
    .hero-productos-img {
        max-width: 90%;
    }
}
@media (max-width: 575px) {
    .hero-tagline {
        margin-top: 4vh;
        margin-bottom: 3vh;
    }
    
    .hero-tagline p {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
        letter-spacing: 0.8px;
    }
}
@media (max-width: 575px) {
     .hero-logos-img {
        max-width: 180px;
    }
    
    .hero-titulo-img {
        max-width: 100%;
    }
    
    .hero-productos-img {
        max-width: 100%;
    }
    .hero-tagline {
        margin-top: 4vh;
        margin-bottom: 3vh;
    }
    
    .hero-tagline p {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
        letter-spacing: 0.8px;
    }
}
/* ===================================
   FOOTER: TAGLINE FINAL
   =================================== */

.hero-footer-wrapper {
    margin-top: 40px;
}

.hero-tagline-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    /* Placeholder styling */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    border: 3px dashed rgba(255, 255, 255, 0.5);
}

/* ===================================
   RESPONSIVE - ESCRITORIO GRANDE
   =================================== */

@media (min-width: 1400px) {
    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .hero-titulo-img {
        max-height: 115px;
    }
    
    .hero-logos-img {
        max-height: 100px;
    }
    
    .hero-trofeo-img {
        max-height: 600px;
    }
    
    .hero-productos-img,
    .hero-pasos-img {
        max-height: 500px;
    }
}

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

@media (max-width: 991px) {
    .hero-content {
        padding: 100px 0 40px;
    }
    
    .hero-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-titulo-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-logos-wrapper {
        max-width: 200px;
    }
    
    .hero-body-wrapper {
        padding: 30px 0;
    }
    
    .hero-productos-wrapper,
    .hero-pasos-wrapper {
        min-height: 250px;
        justify-content: center;
    }
    
    .hero-trofeo-img {
        max-height: 400px;
    }
    
    .hero-productos-img,
    .hero-pasos-img {
        max-height: 350px;
    }
    
    .hero-footer-wrapper {
        text-align: center !important;
    }
}

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

@media (max-width: 767px) {
    .hero-content {
        padding: 80px 0 30px;
    }
    
    .hero-titulo-img {
        max-height: 100px;
    }
    
    .hero-logos-img {
        max-height: 60px;
    }
    
    .hero-body-wrapper {
        padding: 20px 0;
    }
    
    .hero-productos-wrapper,
    .hero-pasos-wrapper {
        min-height: 200px;
        padding: 15px;
    }
    
    .hero-trofeo-img {
        max-height: 300px;
    }
    
    .hero-productos-img,
    .hero-pasos-img {
        max-height: 280px;
    }
    
    .hero-tagline-img {
        max-height: 60px;
    }
}

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

@media (max-width: 575px) {
    .hero-content {
        padding: 60px 0 20px;
    }
    
    .hero-titulo-img {
        max-height: 85px;
    }
    
    .hero-logos-img {
        max-height: 50px;
    }
    
    .hero-productos-wrapper,
    .hero-pasos-wrapper {
        min-height: 180px;
    }
    
    .hero-trofeo-img {
        max-height: 250px;
    }
    
    .hero-productos-img,
    .hero-pasos-img {
        max-height: 240px;
    }
    
    .hero-tagline-img {
        max-height: 50px;
    }
}

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

.desktop-only {
    display: block !important;
    text-align: left;
}

.mobile-only {
    display: none !important;
}

/* En móvil y tablet (≤991px): ocultar desktop, mostrar móvil */
@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}
/* ===================================
   RESPONSIVE - TABLET (≤991px)
   =================================== */

@media (max-width: 991px) {
    .hero-content {
        padding: 100px 0 40px;
    }
    
    .hero-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-titulo-wrapper {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-logos-wrapper {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero-body-wrapper {
        padding: 30px 0;
    }
    
    .hero-productos-img {
        max-height: 350px;
    }
    
    .hero-pasos-img {
        max-height: 350px;
    }
    
    .hero-tagline p {
        font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    }
}

/* ===================================
   RESPONSIVE - MÓVIL (≤767px)
   =================================== */

@media (max-width: 767px) {
    .hero-content {
        padding: 80px 0 30px;
    }
    
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .hero-titulo-img {
        max-height: 95px;
    }
    
    .hero-logos-wrapper {
        max-width: 150px;
    }
    
    .hero-logos-img {
        max-height: 60px;
    }
    
    .hero-body-wrapper {
        padding: 20px 0;
    }
    
    .hero-productos-wrapper {
        margin-top: 1rem !important;
    }
    
    .hero-productos-img {
        max-height: 280px;
    }
    
    .hero-pasos-wrapper {
        margin-top: 1rem !important;
    }
    
    .hero-pasos-img {
        max-height: 300px;
    }
    
    .hero-tagline {
        margin-top: 1.5rem !important;
    }
    
    .hero-tagline p {
        font-size: clamp(0.85rem, 1.6vw, 1.1rem);
        letter-spacing: 1px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    /* Ocultar salto de línea en móvil */
    .hero-tagline p br {
        display: none;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤575px)
   =================================== */

@media (max-width: 575px) {
    .hero-content {
        padding: 60px 0 20px;
    }
    
    /* .hero-titulo-img {
        max-height: 60px;
    } */
    
    .hero-logos-wrapper {
        max-width: 120px;
    }
    
    .hero-logos-img {
        max-height: 100px;
    }
    
    .hero-productos-img {
        max-height: 270px;
    }
    
    .hero-pasos-img {
        max-height: 260px;
    }
    
    .hero-tagline p {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
        letter-spacing: 0.8px;
    }
}

/* ===================================
   CLASES DE UTILIDAD - MOSTRAR/OCULTAR
   =================================== */

.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}
/* ===================================
   SECCIÓN ¿CÓMO PARTICIPAR? - FONDOS
   =================================== */

.como-participar-section {
    position: relative;
    padding: 120px 0;
    min-height: 600px;
    /* Fondo para ESCRITORIO */
    background-image: url('../img/BKG.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Fondo para MÓVIL y TABLET */
@media (max-width: 991px) {
    .como-participar-section {
        background-image: url('../img/BKG.png');
        background-size: cover;
        background-position: center top;
        padding: 125px 0;
        min-height: auto;
    }
}




/* ===================================
   SECCIÓN PREMIOS - MISMO FONDO QUE CÓMO PARTICIPAR
   =================================== */

.premios-section {
    position: relative;
    padding: 80px 0;
    min-height: 600px;
    /* Mismo fondo que la sección ¿Cómo participar? */
    background-image: url('../img/BKG.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Fondo para MÓVIL y TABLET */
@media (max-width: 991px) {
    .premios-section {
        background-image: url('../img/BKG.png');
        background-size: cover;
        background-position: center top;
        padding: 60px 0;
        min-height: auto;
    }
}


/* ===================================
   SECCIÓN ¿CÓMO PARTICIPAR?
   =================================== */



/* Fondo de campo de fútbol (opcional) */
.como-participar-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('../img/BKG.png');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.3;
}

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

.como-participar-header {
    display: flex;
    
    justify-content: center; /* Centra el título */
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative; /* Para posicionar el logo absolutamente */
}

.como-participar-title {
      font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 0;

}

.como-participar-logos {
   position: absolute;  
    right: 0;
    max-width: 150px; 
}

.como-participar-logos img {
 
    max-height: 60px; /* Limita la altura del logo */
   
}

/* ===================================
   TARJETAS DE PASOS - VERSIÓN 2
   =================================== */

.como-participar-cards-wrapper {
    position: relative;
    z-index: 5;
    margin-top: 3rem;
}
.como-participar-cards-wrapper {
    max-width: 1000px; /* Limita el ancho total */
    margin: 0 auto; /* Centra todo */
}
.paso-card-v2 {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.paso-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.paso-icono-v2 {
    width: 100px;
    height: 100px;
    /* background: linear-gradient(135deg, #E5087E 0%, #FF1493 100%); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(229, 8, 126, 0.4);
}

.paso-icono-img {
    width:110px;
    height: 110px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); Vuelve los íconos blancos */
}

.paso-numero-v2 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #05918F;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.paso-titulo-v2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.paso-descripcion-v2 {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 991px) {
    .como-participar-section {
        padding: 60px 0 80px;
    }
    
    .como-participar-header {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 15px;
         
    }
    
    .como-participar-title {
        font-size: 2.2rem;
        /* order: 1;  */
    }
    
    .como-participar-logos {
        
            max-width: 130px;
            margin: 0 auto;
    }
    .como-participar-logos img {
         max-height: 50px;
    }
    .paso-card-v2 {
        padding: 35px 25px;
    }
    
    .paso-icono-v2 {
        width: 90px;
        height: 90px;
    }
    
    .paso-icono-img {
        width: 45px;
        height: 45px;
    }
    
    .paso-titulo-v2 {
        font-size: 1.3rem;
    }
    
    .paso-descripcion-v2 {
        font-size: 0.9rem;
    }
}

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

@media (max-width: 767px) {
    .como-participar-section {
        padding: 50px 0 60px;
    }
    
    .como-participar-title {
        font-size: 1.8rem;
    }
    
    .como-participar-logos {
        max-width: 150px;
    }
    
    .paso-card-v2 {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .paso-icono-v2 {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .paso-icono-img {
        width: 75px;
        height: 75px;
    }
    
    .paso-numero-v2 {
        font-size: 1.2rem;
    }
    
    .paso-titulo-v2 {
        font-size: 2rem;
    }
    
    .paso-descripcion-v2 {
        font-size: 0.85rem;
    }
    .premio-descripcion2{
        font-size: 7px;
    }
}

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

@media (max-width: 575px) {
    .como-participar-section {
        padding: 40px 0 50px;
    }
    
    .como-participar-title {
        font-size: 1.5rem;
    }
    
    .como-participar-logos {
        max-width: 130px;
    }
    
    .paso-card-v2 {
        padding: 25px 18px;
    }
    
    .paso-icono-v2 {
        width: 70px;
        height: 70px;
    }
    
    .paso-icono-img {
        width: 74px;
        height: 74px;
    }
    
    .paso-titulo-v2 {
        font-size: 1.1rem;
    }
    
    .paso-descripcion-v2 {
        font-size: 0.8rem;
        padding: 0px 90px;
    }
    .premio-descripcion2{
        font-size: 3px;
    }
}















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

.premios-header {
    margin-bottom: 4rem;
    color:#003159;
}

.premios-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

/* ===================================
   CARRUSEL DE PREMIOS
   =================================== */

.premios-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-inner {
    border-radius: 25px;
}

.carousel-item {
    padding: 20px;
}

/* ===================================
   TARJETA DE PREMIO
   =================================== */

.premio-card {
   
    border-radius:0px;
    padding: 40px 30px;
    text-align: center;
    color: #003159;
    /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2); */
}

.premio-imagen-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
   
}

.premio-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  
    border-radius: 15px;
}

.premio-info {
    padding: 0 20px;
    color: #003159;
}

.premio-lugar {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.premio-descripcion {
    font-size: 19px;
    line-height: 1.6;
    color: #003159;
    font-weight: 700;
    margin: 0;
}

.premio-descripcion2 {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #003159;
    font-weight: 500;
    margin: 0;
}
/* ===================================
   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: #0053E2;
    border-radius: 50%;
    background-size: 25px 25px;
}

/* ===================================
   INDICADORES DEL CARRUSEL
   =================================== */

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0053E2;
    opacity: 1;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #ff69b4;
    transform: scale(1.2);
}

/* ===================================
   RESPONSIVE - MÓVIL
   =================================== */
@media (min-width: 992px) {
    .premio-card {
        display: flex;
        flex-direction: row; /* Lado a lado */
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 30px;
    }
    
    .premio-imagen-wrapper {
        margin: 0; 
        flex-shrink: 0; 
        width: 220px;
        height: 220px;
    }
    
    .premio-info {
        text-align: left;
        padding: 0;
        flex: 1; 
    }
    
    .premio-lugar {
        text-align: left;
    }
    
    .premio-descripcion {
        text-align: left;
    }
}







@media (max-width: 991px) {
    .premios-header {
        margin-bottom: 3rem;
        color:#003159;
    }
    
    .premios-title {
        font-size: 2rem;
    }
    
    .premios-carousel-wrapper {
        padding: 0 20px;
    }
    
    .premio-card {
        padding: 30px 20px;
    }
    
    .premio-imagen-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .premio-lugar {
        font-size: 1.8rem;
    }
    
    .premio-descripcion {
        font-size: 0.95rem;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .premios-section {
        padding: 50px 0;
    }
    
    .premios-title {
        font-size: 1.6rem;
    }
    
    .premio-card {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .premio-imagen-wrapper {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .premio-lugar {
        font-size: 1.5rem;
    }
    
    .premio-descripcion {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        background-size: 20px 20px;
    }
    
    .carousel-indicators {
        bottom: -30px;
    }
    
    .carousel-indicators button {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 575px) {
    .premios-title {
        font-size: 1.4rem;
    }
    
    .premio-card {
        padding: 20px 12px;
    }
    
    .premio-imagen-wrapper {
        width: 130px;
        height: 130px;
    }
    
    .premio-lugar {
        font-size: 1.3rem;
    }
    
    .premio-descripcion {
        font-size: 0.85rem;
    }
     .premio-descripcion2{
        font-size: 0.85rem;
    }
}

/* ===================================
   INDICADORES DEL CARRUSEL (PUNTOS)
   ===================================  */

.carousel-indicators {
    bottom: -50px; 
    margin-bottom: 0;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
    border: none;
    background-color: #cccccc; 
    opacity: 1;
    margin: 0 6px;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background-color: #003159; /* Color rosa (activo) */
    transform: scale(1.3); /* Más grande cuando está activo */
}

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

@media (max-width: 991px) {
    .carousel-indicators {
        bottom: -40px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
}

@media (max-width: 767px) {
    .carousel-indicators {
        bottom: -35px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 575px) {
    .carousel-indicators {
        bottom: -30px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background: #000000;
    padding: 40px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Hisense */
.footer-logo {
    flex: 0 0 auto;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
  
}

/* Logo Beneficios */
.footer-beneficios {
    flex: 0 0 auto;
}

.footer-beneficios-img {
    max-width: 180px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    
}

/* Términos y Condiciones */
.footer-terminos {
    flex: 0 0 auto;
}

.footer-terminos-link {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-terminos-link:hover {
    color: #0053E2;
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE - TABLET (≤991px)
   =================================== */

@media (max-width: 991px) {
    .site-footer {
        padding: 35px 0;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo-img {
        max-width: 130px;
        max-height: 45px;
    }
    
    .footer-beneficios-img {
        max-width: 160px;
        max-height: 45px;
    }
    
    .footer-terminos-link {
        font-size: 0.9rem;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL (≤767px) - VERTICAL
   =================================== */

@media (max-width: 767px) {
    .site-footer {
        padding: 30px 0;
    }
    
    .footer-content {
        flex-direction: column; /* 🔑 Cambia a vertical */
        gap: 25px;
    }
    
    .footer-item {
        width: 100%;
        justify-content: center;
    }
    
    .footer-logo {
        order: 1; /* Hisense arriba */
    }
    
    .footer-logo-img {
        max-width: 120px;
        max-height: 40px;
    }
    
    .footer-beneficios {
        order: 2; /* Beneficios en medio */
    }
    
    .footer-beneficios-img {
        max-width: 150px;
        max-height: 40px;
    }
    
    .footer-terminos {
        order: 3; /* Términos abajo */
    }
    
    .footer-terminos-link {
        font-size: 0.85rem;
    }
}

/* ===================================
   RESPONSIVE - MÓVIL PEQUEÑO (≤575px)
   =================================== */

@media (max-width: 575px) {
    .site-footer {
        padding: 25px 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-logo-img {
        max-width: 100px;
        max-height: 35px;
    }
    
    .footer-beneficios-img {
        max-width: 130px;
        max-height: 35px;
    }
    
    .footer-terminos-link {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* ===================================
   Ganadores
   =================================== */
#Ganadores {
  position: relative;
    padding: 80px 0;
    min-height: 600px;
    /* Mismo fondo que la sección ¿Cómo participar? */
    background-image: url('../img/BKG.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#Ganadores .cont-w {
  padding-top: 120px;
  padding-bottom: 80px;
}
#Ganadores.interno {
  padding-top: 0px;
}
@media (max-width: 480px) {
  #Ganadores.interno h2 {
    font-size: 35px;
  }
}
#Ganadores .overfl {
  overflow: auto;
  max-width: 650px !important;
  margin: 0 auto;
}
#Ganadores table th {
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 1.3em;
  background-color: #003159;
}
#Ganadores table td {
  font-size: 1.1em;
  text-align: center;
  padding: 15px;
}
@media (min-width: 768px) {
  #Ganadores {
    /*background: url("../img/backg/BG_productos.png") top center;
        background-size: cover;*/
    /*background-attachment: fixed;*/
  }
  #Ganadores .cont-w {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}