:root {
    --black: #030507;
    --black2: #0a0b0c;
    --gold: #d89a2b;
    --gold2: #f0c164;
    --cream: #f5eee4;
    --ink: #19140d;
    --line: rgba(255, 255, 255, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--black);
    color: #fff;
    font-family: Montserrat, sans-serif
}

.navbar {
    background: rgba(3, 5, 7, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: .7rem 0
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    font-weight: 900;
    line-height: 1;
    color: #fff
}

.navbar-brand span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem
}

.navbar-brand small {
    font-size: .48rem;
    letter-spacing: .28em;
    color: var(--gold2);
    margin-top: .2rem
}

.nav-link {
    color: #ddd !important;
    font-size: .84rem;
    font-weight: 600
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    border: 0;
    color: #14100a;
    font-weight: 900;
    border-radius: 10px;
    box-shadow: 0 14px 35px rgba(216, 154, 43, .22);
    transition: .25s
}

.btn-gold:hover {
    transform: translateY(-2px);
    color: #000;
    filter: brightness(1.05)
}


/* =========================================================
   HERO
========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 68px);
    background: #050607;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 30%, rgba(235, 165, 45, .30), transparent 29%),
        radial-gradient(circle at 72% 75%, rgba(216, 154, 43, .12), transparent 36%),
        linear-gradient(90deg, #030507 0%, #050607 50%, #0b0906 100%);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 203, 104, .20) 0 1px, transparent 1.5px);
    background-size: 38px 38px;
    -webkit-mask-image: linear-gradient(90deg, transparent 38%, #000 72%);
    mask-image: linear-gradient(90deg, transparent 38%, #000 72%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-row {
    min-height: calc(100vh - 68px);
}

.hero-copy {
    padding-top: 5.7rem;
    padding-bottom: 2.2rem;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.9rem, 5.55vw, 6.25rem);
    line-height: .76;
    letter-spacing: -.052em;
    font-weight: 700;
    margin: 0 0 1.2rem;
    text-shadow: 0 10px 40px #000;
}

.hero h1 em {
    display: block;
    font-style: normal;
    color: var(--gold2);
    margin-top: .08em;
}

.hero-sub {
    max-width: 720px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.45rem, 2vw, 2.05rem);
    line-height: 1.08;
    margin: 0 0 .75rem;
}

.hero-text {
    max-width: 680px;
    color: #d4d4d4;
    font-size: .92rem;
    line-height: 1.62;
    margin-bottom: 1.1rem;
}

.hero-visual {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
  
    padding-bottom: 1.6rem;
}

.hero-person {
    display: block;
    width: min(100%, 500px);
    height: min(95vh, 980px);
    object-fit: cover;
    object-position: center top;
    
    box-shadow: -30px 0 80px rgba(0, 0, 0, .55);
    margin-left: auto;
}

@media (min-width: 1200px) {
    .hero .container {
        max-width: 1320px;
    }

    .hero-copy {
        padding-right: 2rem;
    }
}

/* Tablet e celular */
@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
    }

    .hero-bg {
        background:
            linear-gradient(180deg, rgba(3, 5, 7, .12), rgba(3, 5, 7, .97) 55%),
            radial-gradient(circle at 78% 12%, rgba(235, 165, 45, .34), transparent 34%),
            linear-gradient(90deg, #030507, #0b0906);
    }

    .hero-row {
        min-height: auto;
    }

    .hero-visual {
        min-height: auto;
        justify-content: center;
       
        padding-bottom: 0;
    }

    .hero-person {
        width: min(100%, 560px);
        height: auto;
        max-height: none;
        margin: 0 auto;
       
    }

    .hero-copy {
        padding-top: 1.5rem;
        padding-bottom: 4rem;
    }

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

@media (max-width: 575.98px) {


    .hero h1 {
        font-size: 4.2rem;
    }

    .hero-copy {
        padding-top: 1.5rem;
    }

    .hero-sub {
        font-size: 1.65rem;
    }
}

.kicker {
    display: inline-block;
    color: var(--gold2);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .28em;
    margin-bottom: 1rem
}

.kicker.dark {
    color: #8f5c12
}

.event-row {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap
}

.event-row>div {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: .8rem;
    border-right: 1px solid rgba(240, 193, 100, .35);
    padding-right: 2rem
}

.event-row>div:last-child {
    border: 0
}

.event-row i {
    grid-row: 1/3;
    color: var(--gold2);
    font-size: 1.8rem
}

.event-row strong,
.event-row small {
    display: block
}

.event-row small {
    color: #b9b9b9;
    font-size: .75rem
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.mini-price {
    display: flex;
    flex-direction: column
}

.mini-price del {
    color: #aaa
}

.mini-price strong {
    color: var(--gold2);
    font-size: 2rem
}

.mini-price small {
    text-transform: uppercase;
    font-size: .65rem;
    letter-spacing: .12em
}

.proof-strip {
    background: linear-gradient(90deg, #08090a, #18120a, #08090a);
    border-top: 1px solid rgba(240, 193, 100, .25);
    border-bottom: 1px solid rgba(240, 193, 100, .25)
}

.proof-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0
}

.proof-strip .container>div {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.4rem;
    border-right: 1px solid var(--line)
}

.proof-strip i {
    font-size: 2rem;
    color: var(--gold2)
}

.proof-strip span {
    font-size: .8rem;
    color: #bbb
}

.proof-strip strong {
    display: block;
    color: #fff
}

.section {
    padding: 7rem 0
}

.cream {
    background: var(--cream);
    color: var(--ink)
}

.dark {
    background: radial-gradient(circle at 80% 10%, #221607, transparent 35%), #050607
}

.gold-section {
    background: linear-gradient(135deg, #ead09c, #c68a2b);
    color: #171009
}

.section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: .95;
    font-weight: 700
}

.section h2 em {
    font-style: normal;
    color: #a46c14
}

.lead {
    font-size: 1.18rem;
    line-height: 1.75
}

.feature-img {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .28)
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem
}

.mini-grid i {
    color: #a46c14
}

.cards {
    display: grid;
    gap: 1.3rem;
    margin-top: 3rem
}

.cards.four {
    grid-template-columns: repeat(4, 1fr)
}

.cards article {
    padding: 2rem;
    text-align: left;
    border: 1px solid rgba(240, 193, 100, .2);
    border-radius: 20px;
    background: rgba(255, 255, 255, .035)
}

.cards i {
    font-size: 2.2rem;
    color: var(--gold2)
}

.cards h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 1rem 0
}

.cards p {
    color: #aaa;
    line-height: 1.6;
    font-size: .9rem
}

.steps article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .18)
}

.steps b {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.7rem;
    color: #7b4b09
}

.steps h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0
}

.steps p {
    margin: .3rem 0 0
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold2);
    font-size: 2.2rem;
    font-style: italic;
    margin-top: 2rem
}

.offer {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 4rem;
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15)
}

.event-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-weight: 700
}

.price-card {
    background: #08090a;
    color: #fff;
    padding: 2rem;
    border-radius: 22px;
    text-align: center
}

.price-card>* {
    display: block
}

.price-card strong {
    font-size: 4rem;
    color: var(--gold2);
    line-height: 1
}

.price-card em {
    font-style: normal;
    color: #bbb;
    margin: .7rem 0 1.3rem
}

.price-card>small:last-child {
    margin-top: 1rem;
    color: #bbb
}

.narrow {
    max-width: 900px
}

.accordion-item,
.accordion-button {
    background: #0d0e10;
    color: #fff
}

.accordion-item {
    border-color: #292929
}

.accordion-button:not(.collapsed) {
    background: #17120b;
    color: var(--gold2)
}

.accordion-button:focus {
    box-shadow: none
}

.accordion-body {
    color: #bbb
}

footer {
    padding: 2rem 0;
    background: #020304;
    color: #777;
    text-align: center
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.8rem;
    z-index: 1040
}

.mobile-cta {
    display: none
}

/* ==========================
   MODAL PREMIUM
========================== */

.modal-content.modal-premium{
    background: #0b0b0d;
    color:#fff;
    border:1px solid rgba(240,193,100,.20);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.60);
}

.modal-premium .modal-header{
    background:linear-gradient(180deg,#121212,#0b0b0d);
    border-bottom:1px solid rgba(240,193,100,.15);
    padding:1.5rem 1.8rem;
}

.modal-premium .modal-body{
    padding:1.8rem;
}

.modal-premium .modal-footer{
    background:#0b0b0d;
    border-top:1px solid rgba(240,193,100,.15);
    padding:1.5rem;
}

.modal-premium h2,
.modal-premium h3,
.modal-premium h4,
.modal-premium h5,
.modal-premium label,
.modal-premium small,
.modal-premium span{
    color:#fff;
}

.modal-premium small{
    color:#d6a33b;
    letter-spacing:.18em;
    font-weight:700;
}

.modal-premium .modal-title{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:2.2rem;
}

.modal-premium .form-label{
    font-weight:600;
    margin-bottom:.45rem;
}

.modal-premium .form-control{
    background:#17181b;
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    border-radius:12px;
    padding:.9rem 1rem;
}

.modal-premium .form-control:focus{
    background:#1c1d20;
    color:#fff;
    border-color:#d89a2b;
    box-shadow:0 0 0 .25rem rgba(216,154,43,.18);
}

.modal-premium .form-control::placeholder{
    color:#8d8d8d;
}

.modal-premium .btn-close{
    filter:invert(1);
    opacity:.9;
}

.summary-checkout{
    margin-top:1.6rem;
    padding:1rem 1.3rem;
    border-radius:12px;
    background:linear-gradient(135deg,#201608,#2c1d08);
    border:1px solid rgba(240,193,100,.20);
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.summary-checkout span{
    color: #8e5a10;
    font-size:2rem;
    font-weight:800;
}

.summary-checkout strong{
    color:#f0c164;
    font-size:2rem;
    font-weight:800;
}

.summary-checkout {
    display: flex;
    justify-content: space-between;
    background: #f1e5d1;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.4rem
}

.summary-checkout strong {
    color: #8e5a10
}

@media(max-width:991px) {
    .proof-strip .container {
        grid-template-columns: repeat(2, 1fr)
    }

    .cards.four {
        grid-template-columns: repeat(2, 1fr)
    }

    .offer {
        grid-template-columns: 1fr
    }

    .mobile-cta {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: .7rem;
        background: rgba(3, 5, 7, .95);
        z-index: 1039
    }

    .whatsapp {
        bottom: 78px
    }

    footer {
        padding-bottom: 6rem
    }
}


@media(max-width:991px) {
 @media (max-width: 991.98px) {
    }

    }

@media(max-width:575px) {
    .event-row {
        display: grid;
        gap: 1rem
    }

    .event-row>div {
        border-right: 0;
        padding-right: 0
    }

    .proof-strip .container,
    .cards.four,
    .mini-grid {
        grid-template-columns: 1fr
    }

    .proof-strip .container>div {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .section {
        padding: 5rem 0
    }

    .btn-lg {
        font-size: 1rem
    }
}

/* Formas de pagamento */
.payment-methods{display:grid;gap:.8rem}.payment-option{display:grid;grid-template-columns:auto auto 1fr auto;align-items:center;gap:.8rem;padding:1rem;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:#151619;cursor:pointer;transition:.2s}.payment-option:hover,.payment-option.active{border-color:var(--gold);background:#1d1810}.payment-option input{accent-color:var(--gold)}.payment-option .payment-icon{width:42px;height:42px;border-radius:11px;display:grid;place-items:center;background:rgba(240,193,100,.12);color:var(--gold2);font-size:1.25rem}.payment-option span:nth-child(3){display:flex;flex-direction:column}.payment-option small{color:#aaa!important;letter-spacing:0!important;text-transform:none!important;font-weight:500!important}.payment-option b{color:var(--gold2);font-size:1.05rem;white-space:nowrap}@media(max-width:575px){.payment-option{grid-template-columns:auto auto 1fr}.payment-option b{grid-column:3}}
