:root {
    --page-bg-image: url('../img/mundial/fondo_partido.png');

    --logo-mobile: 35px;
    --logo-desktop: 200px;

    --message-bg: #c09454;
    --message-border: #771414;
    --message-max-width: 560px;
    --message-height-desktop: 350px;
}



#content-mensaje {
    justify-content: space-between;
    gap: 5px;

    background-color: #cb1524;
    border: 1px solid white;
    padding: 3rem;
}

#logo {
    padding-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

#sub {
    font-size: 0.9rem;
    font-weight: 500;
}

img#foto-premio {
    width: min(48vw, 200px);
    height: auto;
}

#fechavalido {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

@media (min-width: 768px) {
    #content-mensaje {
        justify-content: space-evenly;
    }

    img#foto-premio {
        width: 200px;
    }
}

@media (min-width: 768px) and (max-height: 720px) {
    img#foto-premio {
        width: 160px;
    }
}

/* PARA PREMIO */
.voucher-wrapper {
    width: 100%;
    max-width: 380px;
    margin: 24px auto;
    font-family: 'Barlow', Arial, Helvetica, sans-serif;
    position: relative;
}

.voucher-card {
    background: linear-gradient(180deg, #c09454 0%, #a77720 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 34px 28px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 220, 120, 0.85);
}

.voucher-card-prize {
    padding-bottom: 26px;
}

.voucher-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.voucher-cut {
    position: absolute;
    top: 116px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ab1824;
    z-index: 4;
}

.voucher-cut-left {
    left: -23px;
    box-shadow: inset -3px 0 6px rgba(0, 0, 0, 0.14);
}

.voucher-cut-right {
    right: -23px;
    box-shadow: inset 3px 0 6px rgba(0, 0, 0, 0.14);
}

.voucher-inner-border {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 236, 160, 0.9);
    border-radius: 22px;
    pointer-events: none;
}

.voucher-content {
    position: relative;
    z-index: 2;
}

.voucher-title {
    margin: 0;
    text-align: center;
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
}

.voucher-title-line {
    width: 120px;
    height: 2px;
    margin: 18px auto 18px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

.voucher-text {
    margin: 0 auto 18px;
    max-width: 310px;
    text-align: center;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

.voucher-prize-box {
    text-align: center;
    margin: 4px auto 20px;
}

.voucher-prize-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.voucher-prize-img {
    display: block;
    width: 200px;
    max-width: 70%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.voucher-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
}

.voucher-divider-line {
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, 0.55);
}

.voucher-divider-diamond {
    width: 9px;
    height: 9px;
    background: #ffe89a;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(255, 232, 154, 0.8);
}

.voucher-validity {
    text-align: center;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

.voucher-row-last {
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 12px 14px;
    text-align: center;

    background: linear-gradient(180deg, #fffaf0 0%, #fff1cf 100%);
    border: 1px solid rgba(255, 225, 150, 0.95);
    border-radius: 12px;

    color: #a97824;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 6px 14px rgba(80, 45, 0, 0.16);

    border-bottom: none;
}

.voucher-row-last strong {
    color: #b98735;
}

.voucher-row-last span {
    color: #c09454;
}

/*

body {
    background-image: url('../img/mundial/fondo_partido.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;

}

#content-main {
    / display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly; /

    display: grid;
    grid-template-rows: auto 1fr;
    align-content: center;
    justify-content: center;
    / gap: 2rem; /
    padding: 2rem 0px;
    / height: 100%; /
    justify-items: center;
}


#logo {
    width: 160px;
}

#content-mensaje {
    background: #c09454;
    width: 90vw;
    / height: 350px; /

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    text-align: center;

    gap: 5px;

    border-radius: 12px;
    border: 1px solid #771414;

    padding: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

#sub {
    font-size: 0.9rem;
    font-weight: 500;
}

img#foto-premio {
    max-width: 200px;
    height: auto;
}

#fechavalido {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

/ PC / DESKTOP /
@media (min-width: 767px) {

    body {
        min-height: 100vh;
        background-size: cover;
        background-position: center;
    }

    #content-main {
        / padding: 2rem; /

        gap: 1rem;
    }

    #logo {
        width: 200px;
    }

    #content-mensaje {
        justify-content: space-evenly;
        / height: 100%; /
        height: 350px;
        width: 50vw;
    }

    / h1 {
        font-size: 3rem;
    } /

    img#foto-premio {
        width: 200px;
        height: auto;
    }
}