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

.premios-hero {
    --premios-brown: #5b311c;
    --premios-gold: #f3c302;
    --premios-orange: #f05a21;
    --premios-cream: #ffe084;
    position: relative;
    padding: 140px 0 90px;
    color: #ffffff;
    height: auto;
}

.premios-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 205, 112, 0.22), transparent 55%),
        radial-gradient(circle at 78% 10%, rgba(255, 122, 40, 0.2), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.premios-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.premios-loop {
    position: absolute;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0.75;
}

.premios-loop--top {
    width: clamp(160px, 20vw, 240px);
    height: clamp(160px, 20vw, 240px);
    top: 130px;
    left: 70px;
}

.premios-loop--bottom {
    width: clamp(190px, 24vw, 280px);
    height: clamp(190px, 24vw, 280px);
    bottom: 140px;
    left: 30px;
}

.premios-plane {
    position: absolute;
    left: -35px;
    bottom: 20px;
    width: clamp(170px, 24vw, 280px);
    height: auto;
    transform: rotate(-8deg);
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.35));
    opacity: 0.95;
    animation: planeFloat 8s ease-in-out infinite;
}

@keyframes planeFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
    }

    50% {
        transform: translate3d(10px, -12px, 0) rotate(-6deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
    }
}

.premios-frame {
    width: min(1200px, 92vw);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.premios-title {
    margin: 0;
    text-align: center;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.premios-grid {
    margin-top: clamp(18px, 3.6vw, 32px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: clamp(18px, 4vw, 38px);
    align-items: center;
}

/* Contenedor principal de premios */
.premios-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    max-width: 100%;
    margin: 0 auto;
}

.premios-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 520px;
}

.premios-kicker-image {
    width: clamp(260px, 42vw, 520px);
    max-width: 100%;
    height: auto;
    display: block;
}

.premios-sub-image {
    width: clamp(170px, 28vw, 360px);
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 4px;
}

/* Botón CTA */
.premios-cta {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 0;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.25));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.premios-cta-image {
    width: clamp(240px, 32vw, 380px);
    max-width: 100%;
    height: auto;
    display: block;
}

.premios-cta:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.28));
}

.premios-cta:active {
    transform: translateY(0);
}

.premios-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.premios-promo {
    margin: 26px auto 0;
    display: table;
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    text-align: center;
}

.premios-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding-right: 24px;
}

/* Estilos para las imágenes responsive */
.premios-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.2));
}

/* Mostrar imagen desktop por defecto, ocultar mobile */
.premios-image--desktop {
    display: block;
}

.premios-image--mobile {
    display: none;
}

/* En pantallas medianas, ajustar tamaño */
@media (max-width: 1100px) {
    .premios-image {
        max-width: 900px;
    }

    .premios-visual {
        padding-right: 0;
    }
}

/* En pantallas pequeñas, cambiar a imagen mobile */
@media (max-width: 980px) {
    .premios-hero {
        padding: 120px 0 70px;
    }

    .premios-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .premios-content {
        align-items: center;
        margin: 0 auto;
    }

    .premios-copy {
        align-items: center;
        margin: 0 auto;
    }

    .premios-cta {
        align-self: center;
    }

    .premios-visual {
        justify-self: center;
        padding-right: 0;
    }

    .premios-image {
        max-width: 700px;
    }
}

/* Breakpoint para cambiar a imagen responsive */
@media (max-width: 768px) {
    /* Ocultar imagen desktop, mostrar mobile */
    .premios-image--desktop {
        display: none;
    }

    .premios-image--mobile {
        display: block;
    }

    .premios-image {
        max-width: 100%;
    }

    .premios-content {
        gap: clamp(20px, 5vw, 32px);
    }
}

@media (max-width: 720px) {

    .premios-loop--top,
    .premios-loop--bottom {
        display: none;
    }

    .premios-plane {
        left: -40px;
        bottom: 10px;
        width: clamp(140px, 32vw, 220px);
    }
}

@media (max-width: 520px) {
    .premios-hero {
        padding: 110px 0 60px;
    }

    .premios-cta {
        width: min(100%, 260px);
    }

    .premios-promo {
        width: min(100%, 320px);
    }
}