/* ==========================================================================
   DESAFIO APLUS
   Landing page pública
   ========================================================================== */

:root {
    --primary: #1cdbda;
    --primary-dark: #0aa8aa;
    --primary-soft: rgba(28, 219, 218, 0.12);

    --background: #020607;
    --panel: #071012;
    --panel-light: #0a1618;

    --text: #f5f8f8;
    --muted: #9eabad;

    --border: rgba(28, 219, 218, 0.32);
    --border-light: rgba(255, 255, 255, 0.12);

    --container: 1220px;
    --header-height: 76px;

    --radius-small: 7px;
    --radius: 12px;
    --radius-large: 20px;

    --transition: 250ms ease;
}

/* ==========================================================================
   RESET
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    min-height: 100vh;

    background: var(--background);
    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

p {
    margin-top: 0;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;

    height: var(--header-height);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    background:
        rgba(2, 6, 7, 0.94);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: auto;
    max-width: 230px;
    height: 45px;

    object-fit: contain;
    object-position: left center;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation > a:not(.primary-button) {
    position: relative;

    padding-block: 10px;

    color: var(--text);

    font-size: 0.75rem;
    font-weight: 900;

    letter-spacing: 0.02em;
    text-transform: uppercase;

    transition:
        color var(--transition);
}

.navigation > a:not(.primary-button)::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);
    transform-origin: left;

    transition:
        transform var(--transition);
}

.navigation > a:not(.primary-button):hover {
    color: var(--primary);
}

.navigation > a:not(.primary-button):hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--primary);

    transition:
        transform var(--transition),
        opacity var(--transition);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    min-height: 54px;

    padding: 0 28px;

    border: 1px solid var(--primary);
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #20c9cf
        );

    color: #001011;

    font-size: 0.8rem;
    font-weight: 950;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    box-shadow:
        0 0 25px rgba(28, 219, 218, 0.25);

    cursor: pointer;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}

.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 40px rgba(28, 219, 218, 0.4);

    filter: brightness(1.05);
}

.primary-button.small {
    min-height: 40px;

    padding-inline: 18px;

    font-size: 0.7rem;
}

.primary-button.large {
    min-width: 390px;
    min-height: 60px;

    font-size: 1rem;
}

/* ==========================================================================
   HERO — TEXTO À ESQUERDA E IMAGEM À DIREITA
   ========================================================================== */

.hero {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    padding: 45px 0;

    border-bottom:
        1px solid rgba(28, 219, 218, 0.2);

    background:
        radial-gradient(
            circle at 76% 48%,
            rgba(28, 219, 218, 0.09),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #020607,
            #010405
        );

    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Grid principal da Hero
|--------------------------------------------------------------------------
|
| É este grid que mantém:
|
| texto | imagem
|
| lado a lado.
|
*/

.hero-grid {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(420px, 0.82fr)
        minmax(500px, 1.18fr);

    align-items: center;

    gap: 38px;
}

.hero-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 540px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 0.75rem;
    font-weight: 900;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.section-title h2,
.prize-content h2,
.final-cta h2 {
    margin: 0;

    font-family:
        Impact,
        "Arial Black",
        Arial,
        sans-serif;

    line-height: 0.98;

    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 530px;

    font-size:
        clamp(3.8rem, 5.7vw, 6rem);
}

.hero h1 span {
    display: block;

    color: var(--primary);

    text-shadow:
        0 0 26px rgba(28, 219, 218, 0.1);
}

.hero-description {
    max-width: 450px;

    margin: 23px 0;

    color: var(--text);

    font-size: 1rem;
}

.hero-value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin-bottom: 25px;
}

.hero-value small {
    color: #a8c8ca;

    font-size: 0.75rem;

    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-value strong {
    color: var(--primary);

    font-size: 1.45rem;
    font-weight: 950;
}

/*
|--------------------------------------------------------------------------
| Coluna da imagem do Hero
|--------------------------------------------------------------------------
*/

.hero-image-area {
    position: relative;
    z-index: 2;

    width: 100%;
    min-width: 0;
    height: 610px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    overflow: hidden;
}

/* Brilho atrás da imagem */

.hero-image-area::before {
    content: "";

    position: absolute;
    inset: 18% 8%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(28, 219, 218, 0.14),
            transparent 70%
        );

    filter: blur(18px);

    pointer-events: none;
}

/*
|--------------------------------------------------------------------------
| Imagem do kit
|--------------------------------------------------------------------------
|
| object-fit: contain impede que a imagem seja cortada.
|
*/

.hero-image-area img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 22px 38px
            rgba(0, 0, 0, 0.55)
        )
        drop-shadow(
            0 0 20px
            rgba(28, 219, 218, 0.1)
        );
}

/*
|--------------------------------------------------------------------------
| Regras antigas desativadas
|--------------------------------------------------------------------------
|
| Isso evita que uma regra antiga volte a transformar
| a imagem em background da seção inteira.
|
*/

.hero-background-image,
.hero-overlay {
    display: none !important;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */

.section {
    padding: 75px 0;
}

.section-bordered {
    border-top:
        1px solid rgba(28, 219, 218, 0.17);

    border-bottom:
        1px solid rgba(28, 219, 218, 0.17);

    background:
        linear-gradient(
            180deg,
            rgba(28, 219, 218, 0.018),
            transparent
        );
}

.section-title {
    margin-bottom: 34px;

    text-align: center;
}

.section-title h2 {
    font-size:
        clamp(2rem, 4vw, 3rem);
}

.section-title p {
    margin: 8px 0 0;

    color: var(--primary);

    font-size: 0.82rem;
}

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.step-card {
    position: relative;

    min-height: 230px;

    padding: 25px;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 8px;

    background:
        linear-gradient(
            145deg,
            #091214,
            #030607
        );

    text-align: center;

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.step-card::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );
}

.step-card:hover {
    transform: translateY(-5px);

    border-color: var(--primary);

    box-shadow:
        0 0 26px rgba(28, 219, 218, 0.12);
}

.step-number {
    position: absolute;
    top: 14px;
    left: 16px;

    color: var(--primary);

    font-size: 1.5rem;
    font-weight: 900;
}

.step-icon {
    display: block;

    margin: 28px 0 20px;

    color: var(--primary);

    font-size: 2.3rem;
}

.step-card h3 {
    margin: 0;

    font-size: 0.95rem;

    text-transform: uppercase;
}

.step-card p {
    color: var(--muted);

    font-size: 0.82rem;
}

/* ==========================================================================
   JOGOS
   ========================================================================== */

.games-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 10px;
}

.game-card {
    position: relative;

    height: 155px;

    border: 1px solid var(--border);
    border-radius: 7px;

    background: var(--panel);

    overflow: hidden;

    isolation: isolate;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.game-card:hover {
    transform: translateY(-4px);

    border-color: var(--primary);

    box-shadow:
        0 0 25px rgba(28, 219, 218, 0.2);
}

.game-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.game-card::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            transparent 30%,
            rgba(0, 0, 0, 0.92)
        );
}

.game-card span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 2;

    color: white;

    font-size: 0.72rem;
    font-weight: 900;

    text-transform: uppercase;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   PRÊMIO
   ========================================================================== */

.prize-grid {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 45px;

    align-items: center;
}

.prize-image {
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background:
        radial-gradient(
            circle,
            rgba(28, 219, 218, 0.14),
            transparent 60%
        ),
        #050b0c;

    overflow: hidden;
}

.prize-image img {
    width: 100%;
    height: 100%;
    max-height: 410px;

    object-fit: contain;
    object-position: center;
}

.prize-content h2 {
    font-size:
        clamp(2.5rem, 5vw, 4.4rem);
}

.prize-content h2 span {
    display: block;

    color: var(--primary);
}

.prize-list {
    margin-block: 24px;

    padding: 0;

    list-style: none;
}

.prize-list li {
    padding: 7px 0;

    font-size: 0.78rem;

    text-transform: uppercase;
}

.prize-list li::before {
    content: "◉";

    margin-right: 10px;

    color: var(--primary);
}

.prize-value {
    display: inline-flex;
    flex-direction: column;

    margin: 10px 0 16px;
    padding: 17px 23px;

    border: 1px solid var(--primary);
    border-radius: 7px;

    background:
        rgba(28, 219, 218, 0.035);
}

.prize-value small {
    color: var(--primary);

    font-size: 0.7rem;

    text-transform: uppercase;
}

.prize-value strong {
    color: var(--primary);

    font-size: 2rem;
}

.prize-content > p {
    color: var(--muted);

    font-size: 0.82rem;
}
/* ==========================================================================
   CONHEÇA A APLUSTECH
   ========================================================================== */

.brand-showcase {
    position: relative;

    border-top:
        1px solid rgba(28, 219, 218, 0.18);

    border-bottom:
        1px solid rgba(28, 219, 218, 0.18);

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(28, 219, 218, 0.11),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #030809,
            #071113 58%,
            #020607
        );

    overflow: hidden;
}

.brand-showcase::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(28, 219, 218, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(28, 219, 218, 0.025) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}

.brand-showcase-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(400px, 0.92fr);

    align-items: center;

    gap: 65px;
}

.brand-showcase-image {
    position: relative;

    min-height: 490px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    border:
        1px solid rgba(28, 219, 218, 0.28);

    border-radius: 14px;

    background:
        radial-gradient(
            circle at 50% 60%,
            rgba(28, 219, 218, 0.16),
            transparent 48%
        ),
        rgba(2, 8, 9, 0.86);

    overflow: hidden;

    box-shadow:
        0 0 40px rgba(28, 219, 218, 0.08);
}

.brand-showcase-image::after {
    content: "";

    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 7%;

    height: 90px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(28, 219, 218, 0.22),
            transparent 70%
        );

    filter: blur(13px);
}

.brand-showcase-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;
    max-height: 455px;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(
            0 20px 35px
            rgba(0, 0, 0, 0.55)
        );
}

.brand-showcase-content {
    position: relative;
    z-index: 2;
}

.brand-showcase-content h2 {
    margin: 0;

    font-family:
        Impact,
        "Arial Black",
        Arial,
        sans-serif;

    font-size:
        clamp(2.8rem, 4.8vw, 5rem);

    line-height: 0.98;

    letter-spacing: 0.01em;

    text-transform: uppercase;
}

.brand-showcase-content h2 span {
    display: block;

    color: var(--primary);

    text-shadow:
        0 0 24px
        rgba(28, 219, 218, 0.1);
}

.brand-showcase-description {
    max-width: 570px;

    margin: 22px 0 25px;

    color: var(--muted);

    font-size: 1rem;
}

.brand-showcase-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 11px 20px;

    margin: 0 0 30px;
    padding: 0;

    list-style: none;
}

.brand-showcase-list li {
    position: relative;

    padding-left: 25px;

    color: var(--text);

    font-size: 0.83rem;
    font-weight: 800;

    text-transform: uppercase;
}

.brand-showcase-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--primary);

    font-weight: 950;
}

.brand-showcase-button {
    min-width: 325px;
}
/* ==========================================================================
   REGRAS
   ========================================================================== */

.rules-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));
}

.rule-card {
    padding: 16px;

    border-right:
        1px solid rgba(255, 255, 255, 0.13);

    text-align: center;
}

.rule-card:last-child {
    border-right: 0;
}

.rule-icon {
    display: inline-grid;
    place-items: center;

    width: 34px;
    height: 34px;

    border: 1px solid var(--primary);
    border-radius: 50%;

    color: var(--primary);
}

.rule-card h3 {
    min-height: 38px;

    margin-bottom: 8px;

    font-size: 0.68rem;

    text-transform: uppercase;
}

.rule-card p {
    color: var(--muted);

    font-size: 0.68rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px 20px;
}

.faq-item {
    border:
        1px solid rgba(28, 219, 218, 0.25);

    border-radius: 7px;

    background: #071012;

    overflow: hidden;

    transition:
        border-color var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 15px;

    border: 0;

    background: transparent;
    color: var(--primary);

    font-weight: 800;
    text-align: left;

    cursor: pointer;
}

.faq-question span {
    flex: 0 0 auto;

    font-size: 1.3rem;

    transition:
        transform var(--transition);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 300ms ease;
}

.faq-answer p {
    margin: 0;

    padding: 0 15px 15px;

    color: var(--muted);

    font-size: 0.82rem;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.final-cta {
    position: relative;

    min-height: 290px;

    display: flex;
    align-items: center;

    background-image: var(--cta-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 8, 9, 0.9),
            rgba(0, 8, 9, 0.52)
        );
}

.final-cta-inner {
    position: relative;
    z-index: 2;

    max-width: 780px;

    margin-left: auto;

    text-align: center;
}

.final-cta h2 {
    font-size:
        clamp(2rem, 4vw, 3.5rem);
}

.final-cta h2 span {
    display: block;

    color: var(--primary);
}

.final-cta p {
    margin-bottom: 18px;

    font-size: 0.85rem;

    text-transform: uppercase;
}

.final-cta small {
    display: block;

    margin-top: 12px;

    color: var(--primary);

    text-transform: uppercase;
}

/* ==========================================================================
   INSCRIÇÕES ENCERRADAS
   ========================================================================== */

.closed-message {
    padding: 24px;

    background: #331414;
    color: #ffb5b5;

    text-align: center;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.footer {
    padding: 35px 0;

    border-top:
        1px solid rgba(28, 219, 218, 0.22);

    background: #010405;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1fr auto auto;

    align-items: center;
    gap: 30px;
}

.footer-logo {
    width: auto;
    max-width: 220px;
    height: 42px;

    object-fit: contain;
    object-position: left center;
}

.footer p {
    max-width: 300px;

    margin: 10px 0 0;

    color: var(--muted);

    font-size: 0.75rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    color: var(--primary);

    font-size: 0.75rem;
}

.copyright {
    text-align: right;
}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.reveal.visible {
    opacity: 1;

    transform: none;
}

/* ==========================================================================
   ACESSIBILIDADE
   ========================================================================== */

a:focus-visible,
button:focus-visible {
    outline:
        3px solid rgba(28, 219, 218, 0.55);

    outline-offset: 4px;
}

/* ==========================================================================
   RESPONSIVIDADE — NOTEBOOKS E TABLETS GRANDES
   ========================================================================== */

@media (max-width: 1100px) {
    .navigation {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns:
            minmax(360px, 0.9fr)
            minmax(400px, 1.1fr);

        gap: 24px;
    }

    .hero-image-area {
        height: 530px;
    }

    .hero h1 {
        font-size:
            clamp(3.2rem, 6vw, 5rem);
    }

    .games-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .rules-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .rule-card:nth-child(3n) {
        border-right: 0;
    }

    .rule-card:nth-child(-n + 3) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.13);
    }
}

/* ==========================================================================
   RESPONSIVIDADE — TABLETS
   ========================================================================== */

@media (max-width: 950px) {
    .brand-showcase-grid {
    grid-template-columns: 1fr;

    gap: 35px;
}

    .brand-showcase-image {
    min-height: 420px;
}
    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    .navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 20px;

        border-bottom:
            1px solid var(--border);

        background:
            rgba(2, 6, 7, 0.98);
    }

    .navigation.active {
        display: flex;
    }

    .navigation > a {
        padding: 13px;
    }

    .hero {
        min-height: auto;

        padding: 50px 0;
    }

    .hero-grid {
        grid-template-columns:
            minmax(330px, 0.9fr)
            minmax(350px, 1.1fr);

        gap: 20px;
    }

    .hero-image-area {
        height: 470px;
    }

    .steps-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .games-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .prize-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        justify-items: start;
    }

    .copyright {
        text-align: left;
    }
}

/* ==========================================================================
   RESPONSIVIDADE — CELULARES
   ========================================================================== */

@media (max-width: 750px) {
    .brand-showcase-image {
    min-height: 340px;

    padding: 15px;
}

    .brand-showcase-image img {
    max-height: 320px;
}

    .brand-showcase-content h2 {
    font-size:
        clamp(2.6rem, 13vw, 4rem);
}

    .brand-showcase-list {
    grid-template-columns: 1fr;
}

    .brand-showcase-button {
    width: 100%;
    min-width: 0;
}
    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .hero {
        min-height: auto;

        padding: 40px 0 30px;
    }

    .hero-grid {
        width: min(
            calc(100% - 30px),
            var(--container)
        );

        grid-template-columns: 1fr;

        gap: 28px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        max-width: 100%;

        font-size:
            clamp(3rem, 14vw, 4.5rem);
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-image-area {
        width: 100%;
        height: 410px;

        padding: 0;
    }

    .hero-image-area img {
        width: 100%;
        height: 100%;

        object-fit: contain;
        object-position: center;
    }

    .steps-grid,
    .games-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .rule-card,
    .rule-card:nth-child(3n) {
        border-right: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.13);
    }

    .primary-button.large {
        width: 100%;
        min-width: 0;
    }

    .final-cta {
        min-height: 360px;

        padding: 45px 0;
    }

    .final-cta-inner {
        margin: 0 auto;
    }
}

/* ==========================================================================
   CELULARES PEQUENOS
   ========================================================================== */

@media (max-width: 480px) {
    .logo img {
        max-width: 175px;
        height: 38px;
    }

    .hero h1 {
        font-size:
            clamp(2.7rem, 15vw, 3.7rem);
    }

    .hero-image-area {
        height: 330px;
    }

    .hero .primary-button {
        width: 100%;
    }

    .step-card {
        min-height: auto;
    }

    .game-card {
        height: 190px;
    }

    .prize-image {
        min-height: 330px;
    }
}

/* ==========================================================================
   REDUÇÃO DE MOVIMENTO
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

    .reveal {
        opacity: 1;

        transform: none;
    }
}