/* =========================================================
   Douglas Gonçalves — Premium Global Style
   Arquivo:
   /assets/css/style.css

   Base visual:
   - Método A.R.Q.
   - Dark premium cinematográfico
   - Editorial minimalista
   - Responsivo moderno
========================================================= */

/* RESET */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-font-smoothing:antialiased;
}

body{
    background:#02050a;
    color:#f3ede5;
    font-family:'DM Sans',sans-serif;
    overflow-x:hidden;
}

/* VARIÁVEIS */
:root{

    --bg:#02050a;
    --bg-soft:#07111b;

    --card:#0d1722;

    --gold:#c6a45b;
    --gold-light:#e0c47d;

    --text:#f3ede5;

    --muted:#8a9099;

    --border:rgba(198,164,91,.13);

    --shadow:
        0 20px 60px rgba(0,0,0,.55);

    --radius:24px;

    --container:1240px;
}

/* CONTAINER */
.container{
    width:min(var(--container), calc(100% - 42px));
    margin:auto;
}

/* LINKS */
a{
    text-decoration:none;
}

/* BOTÕES */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:54px;

    padding:0 34px;

    border-radius:8px;

    transition:.35s ease;

    cursor:pointer;

    font-size:13px;
    font-weight:600;

    letter-spacing:.5px;
}

.btn-gold{
    background:transparent;
    border:1px solid rgba(198,164,91,.35);

    color:var(--gold);

    backdrop-filter:blur(10px);
}

.btn-gold:hover{
    background:rgba(198,164,91,.08);

    transform:translateY(-2px);

    border-color:rgba(198,164,91,.7);
}

.btn-solid{
    background:var(--gold);
    color:#05070b;
}

.btn-solid:hover{
    background:var(--gold-light);
}

/* HEADER */
.header{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    transition:.3s ease;

    backdrop-filter:blur(18px);

    background:rgba(2,5,10,.58);

    border-bottom:1px solid rgba(255,255,255,.03);
}

.header.scrolled{
    background:rgba(2,5,10,.92);
}

.header-wrap{
    height:86px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */
.logo{
    display:flex;
    flex-direction:column;
}

.logo strong{
    font-family:'Cormorant Garamond',serif;

    font-size:34px;
    font-weight:300;

    color:var(--gold);

    line-height:1;
}

.logo span{
    margin-top:5px;

    color:var(--muted);

    font-size:9px;

    letter-spacing:4px;

    text-transform:uppercase;
}

/* MENU */
.menu{
    display:flex;
    align-items:center;
    gap:34px;
}

.menu a{
    color:rgba(243,237,229,.72);

    font-size:13px;

    position:relative;

    transition:.3s;
}

.menu a::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:1px;

    background:var(--gold);

    transition:.3s;
}

.menu a:hover{
    color:#fff;
}

.menu a:hover::after{
    width:100%;
}

/* HERO */
.hero{
    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    padding-top:120px;
}

.hero::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(198,164,91,.08),
    transparent 32%),

    radial-gradient(circle at bottom right,
    rgba(198,164,91,.05),
    transparent 26%);
}

/* GRID */
.hero-grid{
    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:40px;
}

/* TEXTO HERO */
.hero-content{
    position:relative;
    z-index:2;
}

.hero-kicker{
    margin-bottom:24px;

    color:var(--gold);

    font-size:11px;

    letter-spacing:5px;

    text-transform:uppercase;
}

.hero-title{
    font-family:'Cormorant Garamond',serif;

    font-size:clamp(58px, 7vw, 112px);

    font-weight:300;

    line-height:.98;

    letter-spacing:-2px;

    max-width:760px;
}

.hero-title .gold{
    color:var(--gold);
    font-style:italic;
}

.hero-desc{
    margin-top:36px;

    max-width:720px;

    color:rgba(243,237,229,.66);

    font-size:20px;

    line-height:2;
}

.hero-actions{
    margin-top:54px;

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

/* HERO IMAGE */
.hero-image{
    position:relative;

    display:flex;
    align-items:flex-end;
    justify-content:center;

    min-height:760px;
}

.hero-image img{
    width:100%;
    max-width:640px;

    object-fit:contain;

    filter:
        drop-shadow(0 40px 80px rgba(0,0,0,.75));
}

/* ORB */
.hero-orb{
    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(198,164,91,.12),
    transparent 70%);

    bottom:-140px;
    right:-80px;

    z-index:0;
}

/* SECTIONS */
.section{
    position:relative;

    padding:130px 0;
}

.section-title{
    margin-bottom:74px;

    text-align:center;
}

.section-title span{
    color:var(--gold);

    font-size:11px;

    letter-spacing:5px;

    text-transform:uppercase;
}

.section-title h2{
    margin-top:22px;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(42px, 5vw, 72px);

    font-weight:300;

    line-height:1.05;
}

.section-title p{
    margin:28px auto 0;

    max-width:820px;

    color:rgba(243,237,229,.64);

    line-height:2;

    font-size:17px;
}

/* CARDS */
.cards{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.card{
    position:relative;

    padding:44px 38px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.02),
    rgba(255,255,255,.01)
    );

    border:1px solid var(--border);

    border-radius:var(--radius);

    overflow:hidden;

    transition:.4s ease;
}

.card:hover{
    transform:translateY(-8px);

    border-color:rgba(198,164,91,.35);
}

.card.destaque{
    border-color:rgba(198,164,91,.42);

    background:
    linear-gradient(
    180deg,
    rgba(198,164,91,.08),
    rgba(255,255,255,.02)
    );
}

.card-badge{
    display:inline-flex;

    margin-bottom:26px;

    color:var(--gold);

    font-size:10px;

    letter-spacing:3px;

    text-transform:uppercase;
}

.card h3{
    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    font-weight:300;

    margin-bottom:16px;
}

.card-sub{
    color:var(--gold);

    margin-bottom:26px;

    font-size:14px;
}

.card p{
    color:rgba(243,237,229,.7);

    line-height:1.95;

    margin-bottom:30px;
}

.card ul{
    list-style:none;

    display:flex;
    flex-direction:column;

    gap:14px;
}

.card li{
    display:flex;
    align-items:flex-start;

    gap:10px;

    color:rgba(243,237,229,.76);

    line-height:1.7;

    font-size:14px;
}

.card li::before{
    content:'•';

    color:var(--gold);
}

/* ABOUT */
.about-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-box{
    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.02),
    rgba(255,255,255,.01)
    );

    border:1px solid var(--border);

    border-radius:28px;

    padding:64px;
}

.about-box h3{
    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    font-weight:300;

    margin-bottom:24px;
}

.about-box p{
    color:rgba(243,237,229,.72);

    line-height:2;

    margin-bottom:18px;
}

/* CTA */
.cta-box{
    position:relative;

    overflow:hidden;

    padding:100px 80px;

    border-radius:34px;

    border:1px solid rgba(198,164,91,.18);

    background:
    linear-gradient(
    135deg,
    rgba(198,164,91,.08),
    rgba(255,255,255,.015)
    );

    text-align:center;
}

.cta-box::before{
    content:'';

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(198,164,91,.08),
    transparent 70%);

    top:-260px;
    right:-260px;
}

.cta-box h2{
    position:relative;
    z-index:2;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(42px,5vw,72px);

    font-weight:300;

    line-height:1.05;

    margin-bottom:28px;
}

.cta-box p{
    position:relative;
    z-index:2;

    max-width:860px;

    margin:auto;

    color:rgba(243,237,229,.72);

    line-height:2;

    font-size:17px;
}

.cta-actions{
    position:relative;
    z-index:2;

    margin-top:44px;
}

/* FOOTER */
.footer{
    padding:42px 0;

    border-top:1px solid rgba(255,255,255,.05);
}

.footer-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

.footer p{
    color:var(--muted);

    font-size:13px;

    line-height:1.8;
}

.footer-links{
    display:flex;
    align-items:center;

    gap:24px;
}

.footer-links a{
    color:var(--muted);

    font-size:13px;

    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
}

/* MOBILE MENU */
.mobile-toggle{
    display:none;

    width:46px;
    height:46px;

    border-radius:10px;

    border:1px solid rgba(255,255,255,.05);

    background:transparent;

    color:#fff;

    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;

    cursor:pointer;
    padding:0;
}

.mobile-toggle span{
    display:block;
    width:22px;
    height:2px;
    background:#fff;
    border-radius:2px;
    transition:transform .3s ease, opacity .3s ease;
    transform-origin:center;
}

.mobile-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2){
    opacity:0;
    transform:scaleX(0);
}

.mobile-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* RESPONSIVO */
@media(max-width:1180px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
    }

    .hero-desc{
        margin-inline:auto;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-image{
        min-height:auto;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .about-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:860px){

    .menu{
        position:fixed;

        top:86px;
        left:0;

        width:100%;

        padding:24px;

        background:#040910;

        border-top:1px solid rgba(255,255,255,.04);

        flex-direction:column;

        align-items:flex-start;

        transform:translateY(-120%);

        opacity:0;

        pointer-events:none;

        transition:.35s ease;
    }

    .menu.active{
        transform:translateY(0);

        opacity:1;

        pointer-events:auto;
    }

    .mobile-toggle{
        display:flex;
    }

    .hero{
        padding-top:150px;
    }

    .hero-title{
        line-height:1.05;
    }

    .hero-desc{
        font-size:17px;
    }

    .section{
        padding:100px 0;
    }

    .about-box{
        padding:42px;
    }

    .cta-box{
        padding:70px 30px;
    }

    .footer-wrap{
        flex-direction:column;

        text-align:center;
    }
}

@media(max-width:560px){

    .logo img{
        max-height:40px;
        width:auto;
    }

    .section-title h2{
        font-size:clamp(30px,8vw,42px);
    }

    .about-box{
        padding:28px 20px;
        border-radius:16px;
    }

    .about-box h3{
        font-size:36px;
    }

    .card{
        padding:30px 22px;
    }

    .card h3{
        font-size:34px;
    }

    .cta-box{
        padding:44px 20px;
        border-radius:16px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn{
        width:100%;
        justify-content:center;
    }
}

/* =========================================
   ANIMAÇÕES
========================================= */

.card,
.about-box,
.section-title,
.cta-box,
.hero-content,
.hero-image{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.card.show,
.about-box.show,
.section-title.show,
.cta-box.show,
.hero-content.show,
.hero-image.show{
    opacity:1;
    transform:translateY(0);
}

/* =========================================
   BOTÃO TOPO
========================================= */

.to-top{
    position:fixed;

    right:22px;
    bottom:22px;

    width:54px;
    height:54px;

    border:none;

    border-radius:50%;

    background:rgba(198,164,91,.12);

    border:1px solid rgba(198,164,91,.2);

    color:var(--gold);

    font-size:20px;

    cursor:pointer;

    backdrop-filter:blur(10px);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:999;
}

.to-top.active{
    opacity:1;
    visibility:visible;
}

.to-top:hover{
    background:rgba(198,164,91,.2);

    transform:translateY(-4px);
}