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

body {
    background-color: var(--color-charcoal);
    color: #fff;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-top: 95px;
    overflow-x: hidden;
}

.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    background: linear-gradient(90deg, var(--color-dark-green) 0%, var(--color-medium-green) 100%);
    border-bottom: 3px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    z-index: 10000;
}

.top-navbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 500px;
}

.top-navbar-logo {
    width: auto;
    height: 58px;
    max-width: 280px;
    object-fit: contain;
    border-radius: 14px;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.top-navbar-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.4px;
}

.top-navbar-links {
    display: flex;
    gap: 18px;
    margin-right: 32px;
}

.top-navbar-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid var(--color-gold);
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.25s ease;
}

.top-navbar-link:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.top-navbar-link--cta {
    font-weight: 900;
    font-size: 0.96rem;
    padding: 9px 14px;
    letter-spacing: 0.03em;
}

.top-navbar-link--stacked {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    text-align: center;
    padding: 9px 16px;
    min-width: 138px;
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    background: linear-gradient(145deg, #f0d56a 0%, var(--color-gold) 48%, #a88b20 100%);
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    box-shadow:
        0 0 0 1px rgba(15, 166, 120, 0.35),
        0 0 16px rgba(212, 175, 55, 0.65),
        0 0 32px rgba(15, 166, 120, 0.28);
    animation: navbarApuestasGlow 2.15s ease-in-out infinite;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.top-navbar-link--stacked:hover {
    background: linear-gradient(145deg, #fff3b8 0%, #e8c84a 45%, #9a7a18 100%);
    color: var(--color-charcoal);
    filter: brightness(1.06);
    transform: scale(1.03);
    animation-play-state: paused;
}

.top-navbar-link-main {
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #1a1000;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.top-navbar-link-sub {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-top: 4px;
    color: var(--color-dark-green);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

@keyframes navbarApuestasGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(15, 166, 120, 0.3),
            0 0 14px rgba(212, 175, 55, 0.5),
            0 0 28px rgba(15, 166, 120, 0.22);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(15, 166, 120, 0.45),
            0 0 22px rgba(212, 175, 55, 0.85),
            0 0 40px rgba(15, 166, 120, 0.38);
    }
}

/* Encabezado */
.encabezado {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.titulo {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 2em;
    color: #ffffff;
}

.logo {
    height: 100px;
    width: auto;
    background: transparent;
    border-radius: 0;
}

.logo2 {
    height: 100px;
    width: auto;
    background: transparent;
    border-radius: 0;
}

.logo2--rounded {
    border-radius: 16px;
    border: 2px solid var(--color-gold);
    padding: 6px;
    background: rgba(11, 61, 58, 0.45);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

/* Contenedor de video */
.video-container {
    width: 75%;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    height: 72vh;
    border: 2px solid var(--color-medium-green);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(15, 166, 120, 0.45);
    position: relative;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Imagen fallback */
.fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

/* Botón de pantalla grande*/
.fullscreen-btn {
    background-color: var(--color-medium-green);
    color: #fff;
    font-family: var(--font-heading);
    padding: 7px 14px;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.38);
    transition: background 0.3s ease;
}

.fullscreen-btn:hover {
    background-color: #0d8f66;
}

.boton-completa {
    text-align: center;
    margin-bottom: 20px;
}

/* Botón de WhatsApp */
.boton-container {
    text-align: center;
}

.boton-wsp {
    background-color: #25D366;
    color: rgb(0, 0, 0);
    padding: 16px 28px;
    font-size: 2.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
    display: inline-block;
    margin-bottom: 9px;
}

.boton-wsp:hover {
    background-color: #1ebe5b;
}

.boton-container--post-revistas {
    margin-top: 4px;
    margin-bottom: 24px;
}

.boton-wsp--destacado {
    font-size: 2.42em;
    font-weight: 900;
    padding: 18px 31px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    animation: wspDestacadoPulse 1.85s ease-in-out infinite;
}

.boton-wsp--destacado:hover {
    background-color: #1ebe5b;
    filter: brightness(1.06);
}

@keyframes wspDestacadoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.55),
            0 0 22px rgba(37, 211, 102, 0.85),
            0 0 40px rgba(18, 140, 60, 0.45);
    }
    50% {
        transform: scale(1.03);
        box-shadow:
            0 0 0 10px rgba(37, 211, 102, 0),
            0 0 34px rgba(80, 255, 150, 0.95),
            0 0 56px rgba(37, 211, 102, 0.55);
    }
}

/* Botón de Telegram */
.boton-container2 {
    text-align: center;
    margin-top: 5vmin;
}

.boton-tlg {
    background: linear-gradient(145deg, #2ec5e8 0%, #20a4c5 45%, #0d8fbf 100%);
    color: rgb(0, 0, 0);
    padding: 14px 24px;
    font-size: 1.87em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    box-shadow:
        0 0 18px rgba(32, 164, 197, 0.65),
        0 0 36px rgba(0, 180, 255, 0.35);
    transition: filter 0.25s ease, background 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38em;
    animation: telegramLlamativo 2.4s ease-in-out infinite;
}

.boton-tlg-icon {
    flex-shrink: 0;
    width: 1.05em;
    height: 1.05em;
    display: block;
}

.boton-tlg:hover {
    background: linear-gradient(145deg, #4ad4f5 0%, #1a9ec4 50%, #0a7a9e 100%);
    filter: brightness(1.08);
    animation-play-state: paused;
}

@keyframes telegramLlamativo {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow:
            0 0 0 0 rgba(0, 220, 255, 0.35),
            0 0 22px rgba(32, 164, 197, 0.8),
            0 0 44px rgba(0, 150, 220, 0.4);
    }
    40% {
        transform: translateY(-4px) scale(1.025);
        box-shadow:
            0 0 0 12px rgba(0, 220, 255, 0),
            0 0 38px rgba(120, 235, 255, 0.95),
            0 0 64px rgba(32, 164, 197, 0.55);
    }
    70% {
        transform: translateY(-1px) scale(1.01);
        box-shadow:
            0 0 26px rgba(32, 164, 197, 0.9),
            0 0 50px rgba(0, 200, 255, 0.45);
    }
}

.titulorevistas {
    font-family: var(--font-heading);
    text-align: center;
    margin-top: 10px;
    font-size: 2em;
    color: #ffffff;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.revistas-estado {
    text-align: center;
    margin: 10px auto 20px;
    color: #f2f2f2;
    font-size: 1rem;
}

.revistas-grid {
    width: min(1100px, 100%);
    margin: 0 auto 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.revista-card {
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    background: var(--color-dark-green);
    padding: 14px;
    box-shadow: 0 0 12px rgba(15, 166, 120, 0.2);
}

.revista-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    min-height: 48px;
}

.revista-acciones {
    display: flex;
    gap: 10px;
}

.btn-revista {
    flex: 1;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 700;
    cursor: pointer;
}

.btn-ver {
    background: var(--color-medium-green);
    color: #fff;
}

.btn-descargar {
    background: #25D366;
    color: #000;
}

.popup-revista {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.82);
    z-index: 50000;
}

.popup-revista.abierto {
    display: flex;
}

.popup-contenido {
    width: min(96vw, 1100px);
    height: min(92vh, 850px);
    background: var(--color-charcoal);
    border: 2px solid var(--color-gold);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popup-revista-barra {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(180deg, var(--color-dark-green) 0%, var(--color-charcoal) 100%);
    border-bottom: 2px solid var(--color-gold);
    flex-shrink: 0;
    z-index: 3;
}

.popup-cerrar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    min-width: 132px;
    padding: 12px 22px;
    background: #dc3545;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(220, 53, 69, 0.45);
    transition: filter 0.2s ease, transform 0.15s ease;
}

.popup-cerrar:hover {
    filter: brightness(1.08);
}

.popup-cerrar:active {
    transform: scale(0.98);
}

.popup-cerrar-icon {
    font-size: 1.85rem;
    line-height: 1;
    font-weight: 700;
}

.popup-cerrar-texto {
    line-height: 1;
}

#popupRevistaFrame {
    flex: 1;
    width: 100%;
    min-height: 0;
    border: none;
}

#mainContent {
    display: block;
    filter: blur(8px);
    transition: filter 0.3s;
}

#mainContent.show-content {
    display: block;
    filter: blur(0);
}

.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow:
        0 0 0 6px rgba(37, 211, 102, 0.25),
        0 0 24px rgba(37, 211, 102, 0.9),
        0 0 36px rgba(37, 211, 102, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: whatsappPulse 1.8s infinite;
}

.btn-whatsapp img {
    width: 35px;
    height: 35px;
}

.btn-whatsapp:hover {
    transform: scale(1.12);
    box-shadow:
        0 0 0 8px rgba(37, 211, 102, 0.35),
        0 0 30px rgba(37, 211, 102, 1),
        0 0 44px rgba(37, 211, 102, 0.65);
}

@keyframes whatsappPulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.45),
            0 0 20px rgba(37, 211, 102, 0.85),
            0 0 30px rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow:
            0 0 0 12px rgba(37, 211, 102, 0),
            0 0 26px rgba(37, 211, 102, 1),
            0 0 42px rgba(37, 211, 102, 0.65);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0),
            0 0 20px rgba(37, 211, 102, 0.85),
            0 0 30px rgba(37, 211, 102, 0.5);
    }
}

/* Tira resplandeciente encima del video (mismo enlace que WhatsApp) */
.ganador-banner-wrap {
    width: 75%;
    max-width: 1200px;
    margin: 12px auto 18px auto;
    box-sizing: border-box;
}

.polla-banner-wrap {
    width: 75%;
    max-width: 1200px;
    margin: 0 auto 18px auto;
    box-sizing: border-box;
}

.polla-banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    width: 100%;
    min-height: 64px;
    padding: 16px 22px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: #ffeb3b;
    background: linear-gradient(145deg, var(--color-dark-green) 0%, var(--color-charcoal) 42%, #0a2e2b 100%);
    border: 3px solid var(--color-gold);
    border-radius: 14px;
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.22),
        0 0 26px rgba(255, 215, 0, 0.5),
        0 0 44px rgba(212, 175, 55, 0.32),
        inset 0 0 18px rgba(255, 235, 59, 0.07);
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    animation: ganadorBannerGlow 2.1s ease-in-out infinite;
}

.polla-banner:hover {
    transform: scale(1.015);
    filter: brightness(1.08);
    box-shadow:
        0 0 0 6px rgba(212, 175, 55, 0.35),
        0 0 32px rgba(255, 215, 0, 0.75),
        0 0 52px rgba(212, 175, 55, 0.45),
        inset 0 0 22px rgba(255, 235, 59, 0.12);
}

/* GANADOR +400: mismo ritmo/tamaño que botón Telegram, colores oro únicos */
.ganador-banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45em 0.65em;
    width: 100%;
    padding: 16px 28px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    color: #1a0f00;
    background: linear-gradient(145deg, #e8c84a 0%, var(--color-gold) 42%, #a88b20 100%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    box-shadow:
        0 0 18px rgba(255, 193, 7, 0.65),
        0 0 36px rgba(200, 140, 0, 0.35);
    font-family: var(--font-heading);
    font-size: 2.2em;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: filter 0.25s ease, background 0.25s ease;
    animation: ganadorBannerLlamativo 2.4s ease-in-out infinite;
}

.ganador-banner .ganador-line1 {
    font-size: 1em;
    font-weight: 900;
    color: #140a00;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ganador-banner .ganador-line2 {
    font-size: 0.82em;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #2d1800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ganador-banner:hover {
    background: linear-gradient(145deg, #fff3b0 0%, #ffb300 48%, #a67c00 100%);
    filter: brightness(1.06);
    animation-play-state: paused;
}

.polla-banner .polla-line1 {
    font-size: clamp(0.82rem, 2.1vw, 1.22rem);
    color: #ffe082;
    text-shadow:
        0 0 10px rgba(255, 224, 130, 0.95),
        0 0 22px rgba(255, 193, 7, 0.45);
}

.polla-banner .polla-line2 {
    font-size: clamp(0.76rem, 1.85vw, 1rem);
    color: var(--color-gold);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.85);
}

@keyframes ganadorBannerGlow {
    0% {
        box-shadow:
            0 0 0 0 rgba(255, 193, 7, 0.35),
            0 0 22px rgba(255, 215, 0, 0.45),
            0 0 40px rgba(212, 175, 55, 0.28),
            inset 0 0 18px rgba(255, 235, 59, 0.07);
    }
    55% {
        box-shadow:
            0 0 0 10px rgba(255, 193, 7, 0),
            0 0 34px rgba(255, 215, 0, 0.85),
            0 0 56px rgba(212, 175, 55, 0.5),
            inset 0 0 22px rgba(255, 235, 59, 0.14);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(255, 193, 7, 0),
            0 0 22px rgba(255, 215, 0, 0.45),
            0 0 40px rgba(212, 175, 55, 0.28),
            inset 0 0 18px rgba(255, 235, 59, 0.07);
    }
}

@keyframes ganadorBannerLlamativo {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 200, 60, 0.4),
            0 0 22px rgba(255, 193, 7, 0.82),
            0 0 44px rgba(180, 120, 0, 0.42);
    }
    40% {
        transform: translateY(-4px) scale(1.025);
        box-shadow:
            0 0 0 12px rgba(255, 220, 100, 0),
            0 0 38px rgba(255, 236, 160, 0.92),
            0 0 64px rgba(255, 180, 0, 0.52);
    }
    70% {
        transform: translateY(-1px) scale(1.01);
        box-shadow:
            0 0 26px rgba(255, 193, 7, 0.9),
            0 0 50px rgba(220, 150, 0, 0.48);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 85px;
    }

    .top-navbar {
        height: auto;
        min-height: 68px;
        padding: 8px 10px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .top-navbar-left { min-width: auto; }

    .top-navbar-title { display: none; }

    .top-navbar-logo {
        width: auto;
        height: 38px;
        max-width: 160px;
        padding: 0;
        border-radius: 12px;
    }

    .top-navbar-links {
        margin-right: 0;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .top-navbar-link {
        font-size: 0.72rem;
        padding: 6px 8px;
    }

    .top-navbar-link--cta {
        font-size: 0.82rem;
        font-weight: 900;
        padding: 7px 10px;
    }

    .top-navbar-link--stacked {
        min-width: 108px;
        padding: 7px 10px;
        border-radius: 7px;
    }

    .top-navbar-link-main {
        font-size: 0.7rem;
    }

    .top-navbar-link-sub {
        font-size: 0.54rem;
        margin-top: 3px;
        letter-spacing: 0.14em;
    }

    .encabezado {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .titulo {
        text-align: center;
        display: none;
    }

    .titulorevistas {
        font-size: 1.2em;
        padding: 0 10px;
        word-wrap: break-word;
        text-align: center;
    }

    .logo {
        height: 100px;
    }

    .boton-wsp {
        font-size: clamp(0.92rem, 3.9vw, 1.12rem);
        font-weight: 800;
        padding: 14px 20px;
        line-height: 1.25;
    }

    .boton-wsp--destacado {
        font-size: clamp(1.01rem, 4.3vw, 1.23rem);
        font-weight: 900;
        padding: 15px 22px;
    }

    .boton-tlg {
        font-size: clamp(0.78rem, 3.32vw, 0.95rem);
        font-weight: 800;
        padding: 12px 17px;
        line-height: 1.25;
        border-radius: 10px;
    }

    .boton-tlg-icon {
        width: 1.2em;
        height: 1.2em;
    }

    .fullscreen-btn {
        font-size: clamp(0.73rem, 2.86vw, 0.81rem);
        font-weight: 900;
        padding: 8px 12px;
        line-height: 1.2;
        letter-spacing: 0.015em;
    }

    .boton-completa {
        margin-top: 0;
        margin-bottom: 18px;
        padding: 0 12px;
    }

    .ganador-banner-wrap,
    .polla-banner-wrap {
        width: 100%;
        max-width: none;
        padding: 0 12px;
        margin-bottom: 14px;
    }

    .ganador-banner-wrap {
        margin-top: 8px;
    }

    .polla-banner {
        min-height: 56px;
        padding: 14px 16px;
        gap: 8px 14px;
    }

    .ganador-banner {
        min-height: 0;
        padding: 14px 20px;
        font-size: clamp(0.92rem, 3.9vw, 1.12rem);
        border-radius: 10px;
        gap: 0.4em 0.55em;
    }

    .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border: 2px solid var(--color-medium-green);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(15, 166, 120, 0.45);
        margin-bottom: 8px;
    }

    .logo2 {
        display: none;
    }

    .popup-revista-barra {
        flex-direction: column;
        align-items: stretch;
    }

    .popup-cerrar {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        font-size: 1.05rem;
    }
    
    @media (max-width: 600px) {
        .btn-whatsapp {
            width: 50px;
            height: 50px;
            bottom: 15px;
            right: 15px;
        }

        .btn-whatsapp img {
            width: 30px;
            height: 30px;
        }

        .polla-banner {
            flex-direction: column;
            gap: 6px;
        }

        .ganador-banner {
            flex-direction: column;
            gap: 0.35em;
            padding: 15px 18px;
            font-size: clamp(0.95rem, 4.2vw, 1.18rem);
        }

        .fullscreen-btn {
            font-size: clamp(0.73rem, 3.25vw, 0.83rem);
            padding: 9px 10px;
        }

        .boton-wsp {
            font-size: clamp(0.95rem, 4.2vw, 1.18rem);
            padding: 15px 18px;
        }

        .boton-tlg {
            font-size: clamp(0.81rem, 3.57vw, 1rem);
            padding: 13px 15px;
        }

        .boton-wsp--destacado {
            font-size: clamp(1.05rem, 4.65vw, 1.3rem);
            padding: 17px 20px;
        }
    }
}