:root {
    --bg: #181818;
    --bg-light: #202020;
    --bg-card: #202020;
    --gold: #e9c76d;
    --gold-soft: #c9aa5c;
    --text: #f2f0eb;
    --text-soft: #aaa8a2;
    --line: rgba(233, 199, 109, 0.2);
    --line-soft: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

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

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


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

.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(233, 199, 109, 0.11),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(255, 255, 255, 0.025),
            transparent 30%
        ),
        var(--bg);
}

.hero-background::after {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    right: -210px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(233, 199, 109, 0.13);
    border-radius: 50%;

    animation: orbitFloat 8s ease-in-out infinite;
}

.hero-content {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-eyebrow {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;

    text-shadow:
        0 0 8px rgba(233, 199, 109, 0.18);

    transition:
        text-shadow 0.35s ease,
        letter-spacing 0.35s ease;
}

.eyebrow:hover,
.section-eyebrow:hover {
    letter-spacing: 0.3em;

    text-shadow:
        0 0 10px rgba(233, 199, 109, 0.35);
}

.hero-title {
    max-width: 900px;
    margin-top: 24px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.055em;

    animation: heroTitleIn 1s ease both;
}

.hero-title span {
    display: block;
    color: var(--gold);

    text-shadow:
        0 0 8px rgba(233, 199, 109, 0.28),
        0 0 25px rgba(233, 199, 109, 0.08);

    transition:
        text-shadow 0.45s ease,
        transform 0.45s ease,
        letter-spacing 0.45s ease;
}

.hero-title:hover span {
    transform: translateX(7px);
    letter-spacing: -0.03em;

    text-shadow:
        0 0 12px rgba(233, 199, 109, 0.42),
        0 0 32px rgba(233, 199, 109, 0.12);
}

.hero-description {
    max-width: 500px;
    margin-top: 30px;

    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;

    animation: fadeUp 1s 0.2s ease both;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;

    margin-top: 38px;
    padding: 17px 20px 17px 24px;

    border: 1px solid rgba(233, 199, 109, 0.45);
    border-radius: 100px;

    color: #171717;
    background: var(--gold);

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;

    box-shadow:
        0 0 0 rgba(233, 199, 109, 0),
        0 12px 40px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease;

    animation: fadeUp 1s 0.35s ease both;
}

.whatsapp-button:hover {
    transform: translateY(-4px);

    padding-right: 24px;

    box-shadow:
        0 0 25px rgba(233, 199, 109, 0.18),
        0 18px 45px rgba(0, 0, 0, 0.3);
}

.button-arrow {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.12);

    transition: transform 0.35s ease;
}

.whatsapp-button:hover .button-arrow {
    transform: translate(3px, -3px);
}

.hero-orbit {
    position: absolute;

    width: 720px;
    height: 720px;

    right: -390px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(233, 199, 109, 0.07);
    border-radius: 50%;

    z-index: -1;
}


/* =========================
   LINHAS
========================= */

.gold-line {
    position: absolute;

    width: 1px;
    height: 150px;

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

    opacity: 0.35;

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

.gold-line-hero {
    right: 12%;
    bottom: 0;
}


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

section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.intro {
    min-height: 80vh;

    display: flex;
    align-items: center;

    position: relative;
}

.section-line {
    position: absolute;

    left: 0;
    top: 0;

    width: 1px;
    height: 100%;

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

.intro-content {
    max-width: 850px;
    padding-left: 70px;
}

.section-title {
    margin-top: 22px;

    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 5vw, 5.3rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 500;

    transition: transform 0.4s ease;
}

.section-title span {
    color: var(--gold);

    text-shadow:
        0 0 8px rgba(233, 199, 109, 0.26),
        0 0 24px rgba(233, 199, 109, 0.07);

    transition:
        text-shadow 0.4s ease,
        transform 0.4s ease;
}

.section-title:hover span {
    text-shadow:
        0 0 13px rgba(233, 199, 109, 0.4),
        0 0 30px rgba(233, 199, 109, 0.1);
}

.section-text {
    max-width: 570px;
    margin-top: 28px;

    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.9;
}


/* =========================
   PRODUTOS
========================= */

.products {
    padding: 120px 0 150px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;

    margin-bottom: 65px;
}

.section-side-text {
    max-width: 310px;

    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-card {
    min-height: 390px;

    position: relative;
    overflow: hidden;

    padding: 35px 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        ),
        var(--bg-card);

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

    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.45s ease,
        background 0.45s ease;

    animation: cardFloat 6s ease-in-out infinite;
}

.product-card:nth-child(2) {
    animation-delay: -2s;
}

.product-card:nth-child(3) {
    animation-delay: -4s;
}

.product-card:hover {
    transform: translateY(-12px);

    border-color: rgba(233, 199, 109, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(233, 199, 109, 0.055),
            rgba(255, 255, 255, 0.015)
        ),
        var(--bg-card);
}

.card-decoration {
    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    top: -70px;

    border: 1px solid rgba(233, 199, 109, 0.12);
    border-radius: 50%;

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

.product-card:hover .card-decoration {
    transform: scale(1.35);
    border-color: rgba(233, 199, 109, 0.25);
}

.product-category {
    color: var(--gold);

    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.2em;

    text-shadow:
        0 0 9px rgba(233, 199, 109, 0.18);
}

.product-card h3 {
    margin-top: 65px;

    font-family: "Playfair Display", serif;
    font-size: 2.25rem;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.product-card h3 span {
    color: var(--gold);

    text-shadow:
        0 0 8px rgba(233, 199, 109, 0.25);
}

.product-card > p:not(.product-category) {
    margin-top: 22px;

    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.75;
}

.card-footer {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.card-footer span {
    color: rgba(233, 199, 109, 0.45);
    font-size: 0.65rem;
}

.card-footer div {
    height: 1px;
    flex: 1;

    background: var(--line);
}

.products-bottom-line {
    height: 1px;

    margin-top: 70px;

    background: linear-gradient(
        to right,
        transparent,
        var(--line),
        transparent
    );
}

.products-more {
    margin-top: 25px;

    color: var(--text-soft);
    text-align: center;

    font-size: 0.8rem;
    letter-spacing: 0.04em;
}


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

.benefits {
    min-height: 90vh;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;

    gap: 100px;

    padding: 100px 0;
}

.benefits-heading .section-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
}

.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 22px;

    padding: 32px 0;

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

    transition:
        transform 0.4s ease,
        padding-left 0.4s ease;
}

.benefit:first-child {
    border-top: 1px solid var(--line-soft);
}

.benefit:hover {
    transform: translateX(10px);
    padding-left: 5px;
}

.benefit-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

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

    color: var(--gold);

    font-size: 0.8rem;

    text-shadow:
        0 0 10px rgba(233, 199, 109, 0.3);

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

.benefit:hover .benefit-icon {
    transform: rotate(45deg);
    background: rgba(233, 199, 109, 0.06);
}

.benefit h3 {
    font-size: 1rem;
    font-weight: 600;
}

.benefit p {
    max-width: 430px;
    margin-top: 9px;

    color: var(--text-soft);

    font-size: 0.85rem;
    line-height: 1.7;
}


/* =========================
   INFO
========================= */

.info-section {
    padding: 100px 0 160px;
}

.info-box {
    position: relative;
    overflow: hidden;

    padding: 70px;

    background:
        linear-gradient(
            135deg,
            rgba(233, 199, 109, 0.07),
            transparent 55%
        ),
        #1d1d1d;

    border: 1px solid rgba(233, 199, 109, 0.16);
}

.info-glow {
    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    bottom: -120px;

    border-radius: 50%;

    border: 1px solid rgba(233, 199, 109, 0.15);

    box-shadow:
        0 0 70px rgba(233, 199, 109, 0.04);
}

.info-box h2 {
    max-width: 800px;

    margin-top: 22px;

    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.03;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.info-box h2 span {
    color: var(--gold);

    text-shadow:
        0 0 9px rgba(233, 199, 109, 0.28),
        0 0 25px rgba(233, 199, 109, 0.07);
}

.info-box > p:not(.section-eyebrow) {
    max-width: 560px;
    margin-top: 25px;

    color: var(--text-soft);
    line-height: 1.8;
}

.info-location {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 35px;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.location-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 12px rgba(233, 199, 109, 0.45);

    animation: dotPulse 2.5s ease-in-out infinite;
}


/* =========================
   PROFISSIONAIS
========================= */

.professionals {
    min-height: 80vh;

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

    gap: 80px;

    position: relative;
}

.professional-content {
    max-width: 750px;
}

.professional-decoration {
    width: 220px;
    height: 220px;

    position: relative;

    flex-shrink: 0;
}

.professional-decoration span {
    position: absolute;

    inset: 0;

    border: 1px solid rgba(233, 199, 109, 0.12);

    transform: rotate(45deg);

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

.professional-decoration span:nth-child(2) {
    inset: 25px;

    animation-delay: -2s;
}

.professional-decoration span:nth-child(3) {
    inset: 50px;

    animation-delay: -4s;
}


/* =========================
   CLOSING
========================= */

.closing {
    min-height: 80vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;

    padding: 120px 0;
}

.closing-line {
    width: 100%;
    height: 1px;

    margin-bottom: 80px;

    background: linear-gradient(
        to right,
        transparent,
        var(--line),
        transparent
    );
}

.closing-title {
    max-width: 850px;

    margin-top: 20px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.055em;
}

.closing-title span {
    display: block;

    color: var(--gold);

    text-shadow:
        0 0 8px rgba(233, 199, 109, 0.28),
        0 0 24px rgba(233, 199, 109, 0.07);

    transition:
        text-shadow 0.4s ease,
        transform 0.4s ease;
}

.closing-title:hover span {
    transform: translateX(7px);

    text-shadow:
        0 0 13px rgba(233, 199, 109, 0.4),
        0 0 32px rgba(233, 199, 109, 0.1);
}

.closing > p:last-child {
    max-width: 450px;

    margin-top: 30px;

    color: var(--text-soft);

    line-height: 1.8;
}


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

.footer {
    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;

    padding: 35px 0;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    border-top: 1px solid var(--line-soft);
}

.footer-brand {
    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;

    text-shadow:
        0 0 9px rgba(233, 199, 109, 0.2);
}

.footer-location {
    color: var(--text-soft);

    font-size: 0.75rem;
}

.footer-copy {
    color: #666;

    font-size: 0.7rem;
    text-align: right;
}


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

.section-reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


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

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orbitFloat {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.04);
    }
}

@keyframes linePulse {
    0%,
    100% {
        opacity: 0.18;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.8);
    }

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

@keyframes squareFloat {
    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(48deg) translate(4px, -5px);
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .hero-content {
        width: min(100% - 60px, 800px);
    }

    .hero-orbit {
        width: 500px;
        height: 500px;

        right: -320px;
    }

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

    .product-card:last-child {
        grid-column: 1 / -1;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .professional-decoration {
        width: 170px;
        height: 170px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        width: calc(100% - 38px);
    }

    .hero-background::after {
        width: 320px;
        height: 320px;

        right: -180px;
        top: 25%;
    }

    .hero-orbit {
        width: 420px;
        height: 420px;

        right: -310px;
        top: 70%;
    }

    .hero-title {
        font-size: clamp(3rem, 14vw, 5rem);
        line-height: 0.97;
    }

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

        margin-top: 25px;

        font-size: 0.9rem;
        line-height: 1.75;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: space-between;

        margin-top: 32px;
    }

    .gold-line-hero {
        right: 8%;
        height: 110px;
    }


    section {
        width: calc(100% - 38px);
    }

    .intro {
        min-height: 75vh;
    }

    .intro-content {
        padding-left: 30px;
    }

    .section-line {
        left: 0;
    }

    .section-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .section-text {
        font-size: 0.9rem;
    }


    .products {
        padding: 90px 0 110px;
    }

    .section-header {
        display: block;

        margin-bottom: 40px;
    }

    .section-side-text {
        margin-top: 25px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-card:last-child {
        grid-column: auto;
    }

    .product-card {
        min-height: 350px;

        padding: 30px 25px;

        animation: none;
    }

    .product-card h3 {
        margin-top: 58px;

        font-size: 2.05rem;
    }

    .product-card > p:not(.product-category) {
        max-width: 310px;

        font-size: 0.84rem;
    }

    .card-footer {
        left: 25px;
        right: 25px;
    }


    .benefits {
        min-height: auto;

        padding: 90px 0 120px;

        gap: 55px;
    }

    .benefits-heading .section-title {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .benefit {
        grid-template-columns: 42px 1fr;

        gap: 15px;

        padding: 25px 0;
    }

    .benefit:hover {
        transform: none;
    }


    .info-section {
        padding: 60px 0 110px;
    }

    .info-box {
        padding: 38px 28px;
    }

    .info-box h2 {
        font-size: clamp(2.3rem, 11vw, 4rem);
    }

    .info-box > p:not(.section-eyebrow) {
        font-size: 0.88rem;
    }


    .professionals {
        min-height: 75vh;

        display: block;

        padding: 70px 0;
    }

    .professional-decoration {
        width: 150px;
        height: 150px;

        margin: 65px auto 0;
    }


    .closing {
        min-height: 75vh;

        padding: 90px 0;
    }

    .closing-line {
        margin-bottom: 60px;
    }

    .closing-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }


    .footer {
        width: calc(100% - 38px);

        grid-template-columns: 1fr;

        gap: 14px;

        padding: 30px 0;
    }

    .footer-location,
    .footer-copy {
        text-align: left;
    }
}


/* =========================
   MOBILE PEQUENO
========================= */

@media (max-width: 450px) {

    .hero-content {
        width: calc(100% - 30px);
    }

    section {
        width: calc(100% - 30px);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 0.86rem;
    }

    .section-title {
        font-size: 2.55rem;
    }

    .product-card {
        min-height: 340px;
    }

    .info-box {
        padding: 32px 23px;
    }

    .professional-decoration {
        width: 130px;
        height: 130px;
    }

    .footer {
        width: calc(100% - 30px);
    }
}


/* =========================
   REDUZIR MOVIMENTO
========================= */

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}