/* views/pages/premios/premios.css */

body.page-premios.fondo {
    background-image: url('../../../public/assets/img/fondoPremios.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #f05a21;
}

.premios-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 130px 20px 60px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.premios-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Title */
.premios-main-title {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'AmsiPro', sans-serif;
    font-weight: 900;
    color: #ffead0;
    font-size: clamp(3rem, 6vw, 5.5rem);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
}

.desktop-title {
    display: block;
    line-height: 1.1;
}

.mobile-title-img {
    display: none;
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

/* Images Row (Stacked centrally) */
.premios-flex-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.premios-main-img {
    width: 100%;
    height: auto;
    max-width: 900px;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

.desktop-img + .desktop-img,
.mobile-img + .mobile-img {
    margin-top: -35px; /* Compensa el espacio sobrante en blanco */
}

.premios-main-img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Contenedor del CTA */
.premios-cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

.premios-cta-btn {
    display: block;
    max-width: 320px;
    width: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.premios-cta-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.cta-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Promocion and Legal Text */
.premios-valido-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    gap: 15px;
}

.valido-img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.premios-legal-text {
    font-family: var(--font-primary, Arial), sans-serif;
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Responsive */

@media (max-width: 1024px) {
    .premios-main-img {
        max-width: 90vw;
    }
}

@media (max-width: 768px) {
    .premios-section {
        padding-top: 110px;
    }

    .desktop-title {
        display: none;
    }

    .mobile-title-img {
        display: block;
    }

    .premios-flex-row {
        gap: 0;
    }

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
        max-width: 95vw;
    }

    .premios-cta-btn {
        max-width: 280px;
    }

    .valido-img {
        max-width: 320px;
    }

    .premios-legal-text {
        font-size: 0.65rem;
        padding: 0 15px;
    }
}