/* =========================================================
   MÉTODO DIGITAL
   STYLE.CSS
   Design premium — Preto + Dourado
   Otimizado para Desktop + Mobile
   ========================================================= */


/* =========================================================
   01. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(212, 175, 55, 0.07),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 35%,
            rgba(212, 175, 55, 0.05),
            transparent 28%
        ),
        #050505;

    color: #f5f5f5;

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* =========================================================
   02. VARIÁVEIS
   ========================================================= */

:root {

    --black: #050505;
    --black-soft: #090909;
    --black-card: #101010;

    --gold: #d4af37;
    --gold-light: #f1d77a;
    --gold-dark: #9d7c16;

    --white: #ffffff;
    --text: #f5f5f5;
    --text-muted: #a4a4a4;

    --border:
        rgba(212, 175, 55, 0.18);

    --white-border:
        rgba(255, 255, 255, 0.08);

    --container: 1180px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   03. ELEMENTOS GERAIS
   ========================================================= */

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

ul {
    list-style: none;
}

p {
    color: var(--text-muted);
}

strong {
    color: var(--white);
}

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   04. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


/* =========================================================
   05. GRID / TEXTURA DO FUNDO
   ========================================================= */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

    z-index: -2;
}


/* =========================================================
   06. CONTAINERS
   ========================================================= */

.hero,
.modules,
.benefits,
.offer {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin-inline: auto;
}


/* =========================================================
   07. HEADER
   ========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

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

    background:
        rgba(5, 5, 5, 0.55);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.scrolled {

    background:
        rgba(5, 5, 5, 0.93);

    border-color:
        rgba(212, 175, 55, 0.15);

    box-shadow:
        0 12px 45px
        rgba(0, 0, 0, 0.35);
}

.site-header__container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    min-height: 78px;

    margin-inline: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   08. LOGO
   ========================================================= */

.site-logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.site-logo__mark {

    display: grid;

    place-items: center;

    width: 35px;
    height: 35px;

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

    border-radius: 9px;

    color: var(--gold);

    font-size: 0.85rem;

    font-weight: 800;

    box-shadow:
        0 0 20px
        rgba(212, 175, 55, 0.08);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.site-logo:hover .site-logo__mark {

    transform:
        rotate(-8deg)
        scale(1.05);

    background:
        rgba(212, 175, 55, 0.1);

    box-shadow:
        0 0 30px
        rgba(212, 175, 55, 0.16);
}

.site-logo__text {

    color: var(--white);

    font-size: 0.95rem;

    font-weight: 800;

    letter-spacing: -0.02em;
}

.site-logo__text span {
    color: var(--gold);
}


/* =========================================================
   09. NAVEGAÇÃO
   ========================================================= */

.site-nav__list {

    display: flex;

    align-items: center;

    gap: 35px;
}

.site-nav__link {

    position: relative;

    display: inline-flex;

    align-items: center;

    padding-block: 28px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.78rem;

    font-weight: 600;

    transition:
        color 0.3s ease;
}

.site-nav__link::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 18px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transform:
        translateX(-50%);

    transition:
        width 0.3s ease;
}

.site-nav__link:hover,
.site-nav__link.active {
    color: var(--white);
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
    width: 22px;
}


/* =========================================================
   10. CTA HEADER
   ========================================================= */

.site-header__cta {

    display: inline-flex;

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

    min-height: 40px;

    padding-inline: 19px;

    border:
        1px solid
        rgba(212, 175, 55, 0.5);

    border-radius: 999px;

    color: var(--gold-light);

    font-size: 0.72rem;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header__cta:hover {

    background: var(--gold);

    color: var(--black);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 25px
        rgba(212, 175, 55, 0.2);
}


/* =========================================================
   11. MENU MOBILE
   ========================================================= */

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border:
        1px solid
        rgba(212, 175, 55, 0.25);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.03);

    cursor: pointer;
}

.menu-toggle span {

    display: block;

    width: 18px;
    height: 1px;

    margin: 5px auto;

    background: var(--gold);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:first-child {

    transform:
        translateY(3px)
        rotate(45deg);
}

.menu-toggle.active span:last-child {

    transform:
        translateY(-3px)
        rotate(-45deg);
}


/* =========================================================
   12. BOTÕES
   ========================================================= */

.button {

    position: relative;

    display: inline-flex;

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

    min-height: 54px;

    padding: 0 30px;

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

    border-radius: 999px;

    background: transparent;

    color: var(--white);

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 0.03em;

    overflow: hidden;

    cursor: pointer;

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

.button::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: -100%;

    width: 60%;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.7s ease;
}

.button:hover::before {
    left: 150%;
}

.button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 40px
        rgba(212, 175, 55, 0.2);
}

.button:active {
    transform:
        translateY(-1px);
}

.button--primary {

    border: none;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold),
            var(--gold-dark)
        );

    color: #080808;

    box-shadow:
        0 10px 30px
        rgba(212, 175, 55, 0.15);
}

.button--primary:hover {

    color: #000;

    box-shadow:
        0 15px 50px
        rgba(212, 175, 55, 0.3);
}

.button--secondary {

    background:
        rgba(212, 175, 55, 0.03);
}

.button--large {
    width: 100%;
}


/* =========================================================
   13. HERO
   ========================================================= */

.hero {

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 80px;

    padding-top: 150px;
    padding-bottom: 100px;

    position: relative;
}

.hero::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: 8%;
    right: -180px;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.12),
            transparent 70%
        );

    filter: blur(15px);

    pointer-events: none;

    animation:
        floatingGlow 7s ease-in-out infinite;
}

.hero::after {

    content: "";

    position: absolute;

    bottom: 35px;
    left: 50%;

    width: 1px;
    height: 55px;

    background:
        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );

    opacity: 0.5;

    transform:
        translateX(-50%);
}


/* =========================================================
   14. HERO CONTENT
   ========================================================= */

.hero__content {

    position: relative;

    z-index: 2;

    animation:
        heroContent 1s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}

.hero__tag,
.section-header__tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--gold-light);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 0.22em;
}

.hero__tag::before,
.section-header__tag::before {

    content: "";

    width: 30px;
    height: 1px;

    background: var(--gold);
}

.hero__title {

    max-width: 760px;

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

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 800;

    margin-bottom: 28px;
}

.hero__title::after {

    content: "";

    display: block;

    width: 90px;
    height: 3px;

    margin-top: 30px;

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

.hero__description {

    max-width: 610px;

    margin-bottom: 34px;

    font-size: 1.08rem;

    line-height: 1.8;
}

.hero__benefits {

    display: flex;

    flex-wrap: wrap;

    gap: 18px 25px;

    margin-top: 25px;
}

.hero__benefits li {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #cfcfcf;

    font-size: 0.78rem;
}

.hero__benefits li::before {

    content: "✓";

    color: var(--gold);

    font-weight: 800;
}


/* =========================================================
   15. HERO IMAGE
   ========================================================= */

.hero__image {

    position: relative;

    display: flex;

    justify-content: center;

    animation:
        heroImage 1.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.15s
        both;

    transition:
        transform 0.25s ease-out;
}

.hero__image::before {

    content: "";

    position: absolute;

    width: 85%;

    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.24),
            transparent 68%
        );

    filter: blur(15px);

    z-index: -1;

    animation:
        pulseGlow 4s ease-in-out infinite;
}

.hero__image::after {

    content: "";

    position: absolute;

    inset: 8%;

    border:
        1px solid
        rgba(212, 175, 55, 0.25);

    border-radius: 50%;

    pointer-events: none;

    animation:
        orbit 14s linear infinite;
}

.hero__image img {

    width:
        min(
            100%,
            500px
        );

    aspect-ratio:
        1 / 1.12;

    object-fit: cover;

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

    border-radius: 28px;

    box-shadow:
        0 30px 100px
        rgba(0, 0, 0, 0.7),
        0 0 80px
        rgba(212, 175, 55, 0.08);

    filter:
        saturate(0.85)
        contrast(1.05);

    transition:
        transform 0.6s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__image:hover img {

    transform:
        scale(1.025)
        translateY(-8px);
}


/* =========================================================
   16. SEÇÕES
   ========================================================= */

.modules,
.benefits,
.offer {

    position: relative;

    padding-block: 130px;
}

.modules::before,
.benefits::before,
.offer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 70px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--gold),
            transparent
        );

    transform:
        translateX(-50%);
}


/* =========================================================
   17. SECTION HEADER
   ========================================================= */

.section-header {

    max-width: 760px;

    margin-bottom: 70px;
}

.section-header__title {

    font-size:
        clamp(
            2rem,
            4vw,
            3.6rem
        );

    line-height: 1.05;

    letter-spacing: -0.045em;

    margin-bottom: 20px;
}

.section-header__description {

    max-width: 650px;

    font-size: 1rem;

    line-height: 1.8;
}


/* =========================================================
   18. MÓDULOS
   ========================================================= */

.modules__grid {

    display: grid;

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

    gap: 18px;
}

.module-card {

    position: relative;

    min-height: 300px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

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

    border-radius:
        var(--radius-md);

    overflow: hidden;

    transform-style: preserve-3d;

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

.module-card::before {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -60px;
    right: -60px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.2),
            transparent 70%
        );

    transition:
        transform 0.6s ease;
}

.module-card::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

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

    transition:
        width 0.5s ease;
}

.module-card:hover {

    border-color:
        rgba(212, 175, 55, 0.3);

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.07),
            rgba(255, 255, 255, 0.02)
        );
}

.module-card:hover::before {
    transform: scale(2);
}

.module-card:hover::after {
    width: 100%;
}

.module-card__number {

    display: block;

    color: var(--gold);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.15em;

    margin-bottom: 80px;
}

.module-card__title {

    font-size: 1.4rem;

    margin-bottom: 14px;
}

.module-card__description {

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =========================================================
   19. SECTION ACTION
   ========================================================= */

.section-action {

    display: flex;

    justify-content: center;

    margin-top: 55px;
}


/* =========================================================
   20. BENEFÍCIOS
   ========================================================= */

.benefits__content {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;
}

.benefits__content h3 {

    margin-bottom: 28px;

    font-size: 1.4rem;
}

.audience-card {

    position: relative;

    padding: 25px 0;

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

    transition:
        padding-left 0.3s ease;
}

.audience-card:hover {
    padding-left: 10px;
}

.audience-card h4 {

    margin-bottom: 8px;

    color: var(--white);

    font-size: 1rem;
}

.audience-card p {

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =========================================================
   21. LISTA DE BENEFÍCIOS
   ========================================================= */

.benefits__list {

    padding: 35px;

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

    border-radius:
        var(--radius-lg);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.08),
            transparent 40%
        ),
        rgba(255, 255, 255, 0.02);

    transition:
        border-color 0.35s ease,
        transform 0.35s ease;
}

.benefits__list:hover {

    border-color:
        rgba(212, 175, 55, 0.32);

    transform:
        translateY(-5px);
}

.benefits__list ul {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.benefits__list li {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #d8d8d8;
}

.benefits__list li::before {

    content: "✓";

    display: grid;

    place-items: center;

    width: 27px;
    height: 27px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(212, 175, 55, 0.12);

    color: var(--gold);

    font-size: 0.75rem;

    font-weight: 800;
}


/* =========================================================
   22. FRASE
   ========================================================= */

.benefits__quote {

    max-width: 800px;

    margin: 80px auto 0;

    padding-top: 40px;

    border-top:
        1px solid
        rgba(212, 175, 55, 0.2);

    text-align: center;

    color: var(--white);

    font-size:
        clamp(
            1.4rem,
            3vw,
            2.2rem
        );

    font-weight: 600;

    line-height: 1.35;
}

.benefits__quote::before {

    content: "“";

    display: block;

    color: var(--gold);

    font-size: 4rem;

    line-height: 0.5;

    margin-bottom: 15px;
}


/* =========================================================
   23. OFERTA
   ========================================================= */

.offer {
    padding-bottom: 160px;
}

.offer__content {

    display: grid;

    grid-template-columns:
        1fr
        420px;

    gap: 80px;

    align-items: center;
}


/* =========================================================
   24. INCLUSOS
   ========================================================= */

.offer__includes h3 {

    margin-bottom: 25px;

    font-size: 1.4rem;
}

.offer__includes ul {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.offer__includes li {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #d7d7d7;
}

.offer__includes li::before {

    content: "✓";

    color: var(--gold);

    font-weight: 800;
}


/* =========================================================
   25. CARD DA OFERTA
   ========================================================= */

.offer__card {

    position: relative;

    padding: 45px 35px;

    text-align: center;

    border-radius:
        var(--radius-lg);

    border:
        1px solid
        rgba(212, 175, 55, 0.35);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(212, 175, 55, 0.15),
            transparent 50%
        ),
        #0b0b0b;

    box-shadow:
        0 30px 100px
        rgba(0, 0, 0, 0.6),
        0 0 70px
        rgba(212, 175, 55, 0.06);

    overflow: hidden;

    transform-style: preserve-3d;

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

.offer__card:hover {

    box-shadow:
        0 40px 120px
        rgba(0, 0, 0, 0.7),
        0 0 80px
        rgba(212, 175, 55, 0.12);
}

.offer__card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(212, 175, 55, 0.4),
            transparent
        );

    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    mask-composite: exclude;
    -webkit-mask-composite: xor;

    pointer-events: none;
}

.offer__label {

    display: inline-block;

    margin-bottom: 25px;

    color: var(--gold-light);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.18em;
}

.offer__old-price {

    margin-bottom: 3px;

    font-size: 0.9rem;

    text-decoration: line-through;
}

.offer__price {

    color: var(--white);

    font-size: 4rem;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.06em;

    margin-bottom: 10px;
}

.offer__price::before {

    content: "R$ ";

    color: var(--gold);

    font-size: 1.2rem;

    vertical-align: middle;

    letter-spacing: 0;
}

.offer__installments {

    margin-bottom: 30px;

    color: #c8c8c8;
}

.offer__security {

    margin-top: 18px;

    font-size: 0.75rem;
}


/* =========================================================
   26. GARANTIA
   ========================================================= */

.offer__guarantee {

    max-width: 700px;

    margin: 70px auto 0;

    padding: 30px;

    text-align: center;

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

    border-radius:
        var(--radius-md);

    background:
        rgba(255, 255, 255, 0.02);
}

.offer__guarantee h3 {

    margin-bottom: 10px;

    color: var(--gold-light);
}


/* =========================================================
   27. FOOTER
   ========================================================= */

.site-footer {

    position: relative;

    border-top:
        1px solid
        rgba(212, 175, 55, 0.12);

    background:
        linear-gradient(
            to bottom,
            #090909,
            #040404
        );
}

.site-footer::before {

    content: "";

    position: absolute;

    top: -1px;
    left: 50%;

    width: 180px;
    height: 1px;

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

    transform:
        translateX(-50%);
}


/* =========================================================
   28. FOOTER CONTAINER
   ========================================================= */

.site-footer__container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin-inline: auto;

    padding-block: 65px;

    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        1fr;

    gap: 80px;

    align-items: start;
}


/* =========================================================
   29. FOOTER MARCA
   ========================================================= */

.site-footer__brand {
    max-width: 330px;
}

.site-footer__brand .site-logo {
    margin-bottom: 20px;
}

.site-footer__brand p {

    max-width: 280px;

    font-size: 0.85rem;

    line-height: 1.7;
}


/* =========================================================
   30. FOOTER NAVEGAÇÃO
   ========================================================= */

.site-footer__nav {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.site-footer__title {

    display: block;

    margin-bottom: 8px;

    color: var(--white);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.site-footer__nav a {

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 0.82rem;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.site-footer__nav a:hover {

    color: var(--gold);

    transform:
        translateX(4px);
}


/* =========================================================
   31. FOOTER CTA
   ========================================================= */

.site-footer__action {
    max-width: 330px;
}

.site-footer__action p {

    margin-bottom: 22px;

    font-size: 0.82rem;

    line-height: 1.7;
}

.site-footer__action .button {

    width: auto;

    min-height: 46px;

    padding-inline: 22px;

    font-size: 0.75rem;
}


/* =========================================================
   32. FOOTER BOTTOM
   ========================================================= */

.site-footer__bottom {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    min-height: 70px;

    margin-inline: auto;

    padding-block: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.site-footer__bottom p {

    font-size: 0.7rem;

    color:
        rgba(255, 255, 255, 0.38);
}

.site-footer__credit {

    display: flex;

    align-items: center;

    gap: 7px;

    text-align: right;
}

.site-footer__credit strong {

    color:
        rgba(255, 255, 255, 0.65);

    font-weight: 600;

    transition:
        color 0.25s ease;
}

.site-footer__credit strong:hover {
    color: var(--gold);
}

.site-footer__credit span {

    color: var(--gold);

    opacity: 0.6;
}


/* =========================================================
   33. REVEAL ANIMATION
   ========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   34. ANIMAÇÕES
   ========================================================= */

@keyframes heroContent {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}

@keyframes heroImage {

    from {
        opacity: 0;

        transform:
            translateY(30px)
            scale(0.95);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes orbit {

    from {
        transform:
            rotate(0deg);
    }

    to {
        transform:
            rotate(360deg);
    }
}

@keyframes floatingGlow {

    0%,
    100% {
        transform:
            translate(0, 0);
    }

    50% {
        transform:
            translate(-25px, 25px);
    }
}


/* =========================================================
   35. CURSOR GLOW
   ========================================================= */

.cursor-glow {

    position: fixed;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.07),
            transparent 70%
        );

    transform:
        translate(-50%, -50%);

    pointer-events: none;

    z-index: 9999;

    filter: blur(10px);

    transition:
        left 0.15s ease-out,
        top 0.15s ease-out;

    mix-blend-mode: screen;

    will-change:
        left,
        top;
}


/* =========================================================
   36. TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero {

        grid-template-columns: 1fr;

        gap: 60px;

        text-align: center;

        padding-top: 130px;
    }

    .hero__content {

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .hero__description {
        max-width: 650px;
    }

    .hero__image img {
        max-width: 420px;
    }

    .modules__grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .offer__content {

        grid-template-columns:
            1fr;

        gap: 60px;
    }

    .offer__card {

        width:
            min(
                100%,
                500px
            );

        margin-inline: auto;
    }
}


/* =========================================================
   37. TABLET / MENU
   ========================================================= */

@media (max-width: 850px) {

    .site-header__container {
        min-height: 70px;
    }

    .site-nav,
    .site-header__cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav.mobile-open {

        display: block;

        position: absolute;

        top: 70px;

        left: 16px;
        right: 16px;

        padding: 15px;

        border:
            1px solid
            rgba(212, 175, 55, 0.15);

        border-radius: 16px;

        background:
            rgba(8, 8, 8, 0.97);

        backdrop-filter:
            blur(20px);

        -webkit-backdrop-filter:
            blur(20px);

        box-shadow:
            0 20px 50px
            rgba(0, 0, 0, 0.5);
    }

    .site-nav.mobile-open .site-nav__list {

        flex-direction: column;

        align-items: stretch;

        gap: 3px;
    }

    .site-nav.mobile-open .site-nav__link {

        display: block;

        padding: 13px 15px;

        border-radius: 9px;
    }

    .site-nav.mobile-open .site-nav__link:hover {

        background:
            rgba(212, 175, 55, 0.06);
    }

    .site-nav.mobile-open .site-nav__link::after {
        display: none;
    }

    .site-footer__container {

        grid-template-columns:
            1fr 1fr;

        gap: 45px;
    }

    .site-footer__action {

        grid-column:
            1 / -1;

        max-width: 450px;
    }
}


/* =========================================================
   38. CELULAR
   ========================================================= */

@media (max-width: 650px) {

    html {

        scroll-padding-top: 75px;

        overflow-x: hidden;
    }

    body {

        overflow-x: hidden;

        /*
         * Evita que animações e efeitos
         * criem áreas maiores que a tela.
         */
        width: 100%;
    }


    /* CONTAINERS */

    .hero,
    .modules,
    .benefits,
    .offer {

        width:
            calc(100% - 32px);
    }

    .site-header__container {

        width:
            calc(100% - 32px);
    }


    /* =====================================================
       HEADER
       ===================================================== */

    .site-header {

        /*
         * Remove blur pesado do celular.
         * Mantém aparência de vidro usando
         * transparência sólida.
         */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        background:
            rgba(5, 5, 5, 0.96);
    }

    .site-header.scrolled {

        background:
            #050505;

        box-shadow:
            0 8px 25px
            rgba(0, 0, 0, 0.3);
    }


    /* =====================================================
       MENU
       ===================================================== */

    .site-nav.mobile-open {

        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        background:
            #090909;

        box-shadow:
            0 15px 35px
            rgba(0, 0, 0, 0.45);
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero {

        min-height: auto;

        padding-top: 110px;

        padding-bottom: 90px;

        gap: 50px;
    }

    .hero__title {

        font-size:
            clamp(
                2.4rem,
                12vw,
                3.4rem
            );

        line-height: 1;
    }

    .hero__description {

        font-size: 0.95rem;

        line-height: 1.7;
    }

    .hero__benefits {

        justify-content: center;

        gap: 12px 18px;
    }

    .hero__image img {

        max-width: 330px;

        border-radius: 20px;

        /*
         * Mantém a imagem bonita,
         * mas reduz processamento.
         */
        filter:
            saturate(0.9)
            contrast(1.02);

        box-shadow:
            0 20px 50px
            rgba(0, 0, 0, 0.55);
    }

    /*
     * Desativa apenas os elementos
     * decorativos mais pesados.
     *
     * A imagem principal continua.
     */

    .hero::before {
        display: none;
        animation: none;
    }

    .hero__image::before {
        display: none;
        animation: none;
    }

    .hero__image::after {
        display: none;
        animation: none;
    }

    .hero::after {
        display: none;
    }


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

    .modules,
    .benefits,
    .offer {

        padding-block: 90px;
    }

    .section-header {

        margin-bottom: 45px;
    }

    .section-header__title {

        font-size: 2.25rem;
    }


    /* =====================================================
       MÓDULOS
       ===================================================== */

    .modules__grid {

        grid-template-columns:
            1fr;

        gap: 14px;
    }

    .module-card {

        min-height: auto;

        padding: 25px;

        /*
         * Evita processamento desnecessário
         * de 3D no touch.
         */
        transform-style: flat;
    }

    .module-card__number {
        margin-bottom: 45px;
    }

    /*
     * Mantém o detalhe dourado,
     * mas remove expansão animada.
     */

    .module-card::before {

        transition: none;
    }


    /* =====================================================
       BENEFÍCIOS
       ===================================================== */

    .benefits__content {

        grid-template-columns:
            1fr;

        gap: 50px;
    }

    .benefits__list {
        padding: 25px;
    }

    .benefits__quote {
        margin-top: 60px;
    }


    /* =====================================================
       OFERTA
       ===================================================== */

    .offer__content {
        gap: 45px;
    }

    .offer__card {

        padding:
            35px
            22px;

        transform-style: flat;

        box-shadow:
            0 20px 50px
            rgba(0, 0, 0, 0.5);
    }

    .offer__price {
        font-size: 3.4rem;
    }


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

    .button {

        width: 100%;

        padding-inline: 20px;
    }

    /*
     * O brilho de hover não faz sentido
     * em telas touch.
     */
    .button::before {
        display: none;
    }


    /* =====================================================
       REVEAL
       ===================================================== */

    .reveal {

        transform:
            translateY(20px);

        transition:
            opacity 0.45s ease,
            transform 0.45s ease;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .site-footer__container {

        width:
            calc(100% - 32px);

        grid-template-columns:
            1fr;

        gap: 40px;

        padding-block: 50px;
    }

    .site-footer__brand,
    .site-footer__action {

        max-width: 100%;
    }

    .site-footer__nav {
        gap: 10px;
    }

    .site-footer__bottom {

        width:
            calc(100% - 32px);

        padding-block: 22px;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .site-footer__credit {

        text-align: left;

        flex-wrap: wrap;
    }


    /* =====================================================
       CURSOR
       ===================================================== */

    .cursor-glow {
        display: none;
    }
}


/* =========================================================
   39. CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 380px) {

    .hero__title {

        font-size:
            2.25rem;
    }

    .hero__description {

        font-size:
            0.9rem;
    }

    .hero__image img {

        max-width:
            290px;
    }

    .module-card {

        padding:
            22px;
    }

    .benefits__list {

        padding:
            22px;
    }

    .offer__card {

        padding:
            30px
            18px;
    }

    .offer__price {

        font-size:
            3rem;
    }
}


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

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

    .cursor-glow {
        display: none;
    }
}