/* ============================================================
   O RESGATE SISTÊMICO — style.css
   Estética: Dark Warm Luxury — raízes, terra, profundidade
   Tipografia: Cormorant Garamond (display) + Jost (corpo)
   ============================================================ */

/* ---- VARIÁVEIS ---- */
:root {
    --bg-dark:       #0A0D0A;   /* Verde quase preto — evoca terra/raiz */
    --bg-deep:       #0F1510;
    --bg-mid:        #141C14;
    --bg-light:      #EEE9E2;   /* Areia / pergaminho */
    --bg-light-2:    #E5DFD6;
    --gold:          #C5A059;   /* Cobre dourado */
    --gold-hover:    #A38045;
    --gold-light:    #DEC07E;
    --danger:        #8B2323;
    --danger-soft:   #C0483C;
    --text-white:    #EEE9E2;
    --text-silver:   #B0BAA8;
    --text-muted:    #6A7565;
    --text-dark:     #1A1F18;
    --border-gold:   rgba(197, 160, 89, 0.25);
    --border-light:  rgba(255, 255, 255, 0.07);
    --shadow-gold:   0 0 60px rgba(197, 160, 89, 0.06);
    --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Jost', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-silver);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 300;
}
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-white);
    font-weight: 400;
    line-height: 1.2;
}
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.38s; }

/* ---- UTILITY ---- */
.eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1rem;
}
.eyebrow.light { color: var(--gold-light); }
.danger-eyebrow { color: #C0483C; }

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.section-title.dark { color: var(--text-dark); }
.section-title.light { color: var(--text-white); }
.section-title em { font-style: italic; color: var(--gold); }
.text-danger-soft { color: var(--danger-soft) !important; }

.section-desc {
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.9;
}
.section-desc.dark { color: #4A5048; opacity: 1; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-gold-hero {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 1.1rem 3rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}
.btn-gold-hero:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197,160,89,0.25);
}

.btn-ghost-hero {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(238,233,226,0.25);
    color: var(--text-white);
    padding: 1.1rem 2.5rem;
    font-size: 0.76rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.btn-ghost-hero:hover {
    border-color: var(--text-white);
    background: rgba(238,233,226,0.05);
    color: var(--text-white);
}

.btn-gold-outline {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.85rem 2.2rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--bg-dark); }

/* ============================================================
   URGENCY BAR
   ============================================================ */
#urgencyBar {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
    text-align: center;
}
.urgency-divider {
    opacity: 0.4;
    font-weight: 300;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    top: 5px;
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    z-index: 1000;
}
#mainNav.scrolled {
    top: 0;
    background: rgba(10, 13, 10, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-white) !important;
    text-transform: uppercase;
}
.navbar-brand span { color: var(--gold); }
.navbar-brand:hover { color: var(--text-white) !important; }

.navbar-nav .nav-link {
    color: rgba(238,233,226,0.7) !important;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 0.9rem !important;
    font-weight: 400;
}
.navbar-nav .nav-link:hover { color: var(--gold) !important; }

.btn-nav-apply {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-dark) !important;
    padding: 0.55rem 1.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.btn-nav-apply:hover { background: var(--gold-hover); color: #fff !important; }

.navbar-toggler {
    border: 1px solid var(--border-gold);
    padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(197, 160, 89, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 9rem 0 5rem;
    text-align: center;
    background:
        linear-gradient(to bottom,
            rgba(10,13,10,0.8) 0%,
            rgba(10,13,10,0.5) 40%,
            rgba(10,13,10,0.9) 100%),
        /*url('https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&w=1920&q=80')*/
		  url("https://www.dessoti.com/resgate/dessoti_grupo_hero.jpg")
        center / cover no-repeat;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10,13,10,0.65) 100%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-location {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 0.4rem 1.3rem;
    margin-bottom: 2rem;
    background: rgba(197,160,89,0.05);
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    color: var(--text-white);
    font-weight: 300;
    margin-bottom: 1.8rem;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}
.hero-sub {
    display: block;
    font-style: italic;
    color: var(--gold-light);
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 0.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-desc {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    opacity: 0.78;
    line-height: 1.9;
}
.hero-desc em { font-style: italic; color: var(--gold-light); }

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-proof {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}
.proof-pill {
    font-size: 0.72rem;
    color: var(--text-silver);
    border: 1px solid var(--border-light);
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.02);
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounceScroll 2.2s infinite;
}
.hero-scroll i { font-size: 0.9rem; }
@keyframes bounceScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   HOOK / GANCHO EMOCIONAL
   ============================================================ */
.hook-section {
    padding: 7rem 0;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-gold);
}
.hook-eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}
.hook-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--text-white);
    font-weight: 300;
    line-height: 1.35;
    margin-bottom: 2rem;
}
.hook-headline span {
    display: block;
    font-style: italic;
    color: var(--gold);
    margin-top: 0.5rem;
}
.hook-desc {
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.72;
    font-size: 1rem;
    line-height: 1.9;
}

/* ============================================================
   CUSTO DA INAÇÃO
   ============================================================ */
.custo-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(139,35,35,0.2);
}

.custo-card {
    background: rgba(139,35,35,0.05);
    border: 1px solid rgba(139,35,35,0.2);
    border-top: 3px solid rgba(139,35,35,0.5);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
}
.custo-card:hover {
    border-color: rgba(192,72,60,0.4);
    border-top-color: var(--danger-soft);
    background: rgba(139,35,35,0.08);
    transform: translateY(-4px);
}
.custo-card-center {
    border-top-color: var(--danger-soft);
    background: rgba(139,35,35,0.08);
    transform: translateY(-8px);
}
.custo-card-center:hover { transform: translateY(-12px); }

.custo-icon {
    font-size: 2.2rem;
    color: var(--danger-soft);
    margin-bottom: 1.2rem;
    opacity: 0.8;
}
.custo-card h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}
.custo-card p {
    font-size: 0.88rem;
    line-height: 1.9;
    opacity: 0.72;
    margin-bottom: 1.2rem;
}
.custo-pergunta {
    font-style: italic;
    font-size: 0.82rem;
    color: var(--danger-soft);
    opacity: 0.8;
    border-left: 2px solid var(--danger-soft);
    padding-left: 0.8rem;
}

.custo-bottom-cta {
    background: rgba(197,160,89,0.04);
    border: 1px solid var(--border-gold);
    padding: 3rem;
    text-align: center;
}
.custo-bottom-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}

/* ============================================================
   MÉTODO
   ============================================================ */
.metodo-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.metodo-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-top: 3px solid var(--gold);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s ease;
}
.metodo-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.metodo-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}
.metodo-card:hover .metodo-num { opacity: 0.5; }
.metodo-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
}
.metodo-card p {
    font-size: 0.87rem;
    color: #4A5048;
    line-height: 1.9;
}

/* Carrossel dos 10 temas */
.temas-carousel { padding: 0 3.5rem; }
.tema-slide {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-top: 3px solid var(--gold);
    padding: 3.5rem 3rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.tema-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.8rem;
}
.tema-num span { font-size: 1rem; opacity: 0.45; margin-left: 2px; }
.tema-slide h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.tema-slide p {
    font-size: 0.95rem;
    color: #4A5048;
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto;
}
.temas-carousel .carousel-control-prev,
.temas-carousel .carousel-control-next {
    width: 3rem;
    opacity: 1;
}
.temas-carousel .carousel-control-prev-icon,
.temas-carousel .carousel-control-next-icon {
    filter: invert(1) brightness(0.35);
    width: 1.75rem;
    height: 1.75rem;
}
.temas-indicators {
    position: static !important;
    margin: 1.75rem 0 0;
    justify-content: center;
}
.temas-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: 0.3;
    border: none;
    margin: 0 5px;
    text-indent: -9999px;
}
.temas-indicators .active { opacity: 1; }
@media (max-width: 700px) {
    .temas-carousel { padding: 0 2rem; }
    .tema-slide { padding: 2.5rem 1.5rem; min-height: 320px; }
}

.diferenciais-box {
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    background: #fff;
}
.diferenciais-header {
    background: var(--bg-dark);
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.diferenciais-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-white);
    margin: 0;
    font-weight: 400;
    font-style: italic;
}
.diferencial-item {
    display: flex;
    gap: 1rem;
    padding: 1.8rem 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s;
}
.diferencial-item:last-child { border-bottom: none; }
.diferencial-item:hover { background: rgba(197,160,89,0.04); }
.diferencial-item > i {
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.diferencial-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1rem;
}
.diferencial-item p {
    font-size: 0.85rem;
    color: #4A5048;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SOBRE / PROFISSIONAL
   ============================================================ */
.sobre-section {
    padding: 8rem 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-gold);
}

.sobre-img-wrapper { position: relative; display: inline-block; }
.sobre-img {
    width: 100%;
    max-width: 400px;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(60%) contrast(110%);
    border: 1px solid var(--border-light);
    border-right: 4px solid var(--gold);
    transition: all 0.6s ease;
}
.sobre-img:hover { filter: grayscale(0%) contrast(100%); }

.sobre-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 1.2rem 1.8rem;
    text-align: center;
}
.sobre-badge strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}
.sobre-badge span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.sobre-cargo {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    margin-top: 0.3rem;
}

.sobre-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--gold-light);
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 300;
    line-height: 1.6;
}
.sobre-bio { font-size: 0.93rem; opacity: 0.75; line-height: 1.9; }
.sobre-bio em { font-style: italic; color: var(--gold-light); }

.sobre-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.sobre-stat { text-align: center; }
.sobre-stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
}
.sobre-stat span {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}
.sobre-stat-div {
    width: 1px;
    height: 35px;
    background: var(--border-light);
}
.sobre-social { display: flex; gap: 1.2rem; }
.sobre-social a { color: var(--text-muted); font-size: 1.1rem; transition: all 0.3s; }
.sobre-social a:hover { color: var(--gold); transform: translateY(-3px); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos-section {
    padding: 8rem 0;
    background: var(--bg-light);
}
.depoimentos-section .section-title.dark { color: var(--text-dark); }
.depoimentos-section .section-title.dark em { color: var(--gold-hover); }

.dep-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
}
.dep-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: transparent;
    transition: background 0.4s ease;
}
.dep-card:hover::before { background: var(--gold); }
.dep-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }

.dep-featured {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.dep-featured::before { background: var(--gold); }

.dep-area {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-hover);
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.dep-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    border: none;
    padding: 0;
    font-weight: 400;
}
.dep-author { display: flex; align-items: center; gap: 0.8rem; }
.dep-initial {
    width: 38px;
    height: 38px;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--gold);
    flex-shrink: 0;
}
.dep-author span {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777;
}

/* ============================================================
   LOGÍSTICA
   ============================================================ */
.logistica-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-gold);
}

.logistica-box {
    border: 1px solid var(--border-gold);
    overflow: hidden;
    background: rgba(197,160,89,0.02);
}
.logistica-item {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border-gold);
    border-bottom: 1px solid transparent;
    transition: background 0.3s;
}
.logistica-item:last-child { border-right: none; }
.logistica-item:hover { background: rgba(197,160,89,0.04); }

.logistica-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}
.logistica-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.logistica-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.logistica-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ */
.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 400;
    margin-bottom: 2rem;
}
.faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
}
.faq-accordion .accordion-button {
    background: transparent;
    color: var(--text-white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    padding: 1.2rem 0;
    box-shadow: none;
    border: none;
}
.faq-accordion .accordion-button::after {
    filter: invert(70%) sepia(30%) saturate(500%) hue-rotate(10deg);
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background: transparent;
    box-shadow: none;
}
.faq-accordion .accordion-body {
    color: var(--text-silver);
    font-size: 0.9rem;
    line-height: 1.9;
    padding: 0 0 1.5rem;
    opacity: 0.8;
}

/* ============================================================
   PRÉ-FORM
   ============================================================ */
.pre-form-section {
    padding: 7rem 0;
    background: var(--bg-mid);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-gold);
}
.pre-form-section .section-title { font-size: clamp(2rem, 4vw, 3rem); }
.pre-form-desc {
    max-width: 580px;
    margin: 0 auto;
    opacity: 0.7;
    line-height: 1.9;
    font-size: 1rem;
}

/* ============================================================
   FORMULÁRIO
   ============================================================ */
.form-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}
.form-intro-desc {
    font-size: 0.88rem;
    opacity: 0.6;
    line-height: 1.8;
    margin-top: 0.5rem;
}

.form-resgate { width: 100%; }

.field-wrap {
    margin-bottom: 2.5rem;
    position: relative;
}
.field-wrap label {
    display: block;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}
.field-wrap input,
.field-wrap textarea,
.field-wrap select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: var(--text-white);
    padding: 0.9rem 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.93rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}
.field-wrap input::placeholder,
.field-wrap textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.83rem;
    opacity: 0.7;
}
.field-wrap input:focus,
.field-wrap textarea:focus,
.field-wrap select:focus {
    border-bottom-color: var(--gold);
}
.field-wrap input.field-invalid,
.field-wrap textarea.field-invalid,
.field-wrap select.field-invalid {
    border-bottom-color: #E74C3C;
}
.field-wrap textarea { resize: vertical; min-height: 120px; }
.field-wrap select { cursor: pointer; color: var(--text-white); }
.field-wrap select option { background: var(--bg-deep); color: var(--text-white); }

.select-wrap { position: relative; }
.select-chevron {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.7rem;
    pointer-events: none;
    opacity: 0.7;
}
.field-err {
    display: none;
    font-size: 0.72rem;
    color: #E74C3C;
    margin-top: 0.5rem;
}
.field-invalid ~ .field-err { display: block; }
.field-hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.btn-submit-resgate {
    width: 100%;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--bg-dark);
    padding: 1.2rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-submit-resgate:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197,160,89,0.2);
}
.btn-submit-resgate:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

@keyframes spinAnim { to { transform: rotate(360deg); } }
.spin { animation: spinAnim 0.8s linear infinite; display: inline-block; }

.form-disclaimer {
    font-size: 0.68rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.feedback-box {
    padding: 1.2rem 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 2px;
}
.feedback-success { border-color: rgba(39,174,96,0.3); background: rgba(39,174,96,0.05); color: #7DCEA0; }
.feedback-error   { border-color: rgba(192,57,43,0.3);  background: rgba(192,57,43,0.05);  color: #E98C84; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #050705;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-gold);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-nav a {
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 2rem 0;
}
.footer-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    opacity: 0.45;
    transition: all 0.3s ease;
}
.footer-social a:hover { color: var(--gold); opacity: 1; transform: translateY(-3px); }
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}
.footer-bottom p {
    font-size: 0.68rem;
    opacity: 0.3;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0.3rem 0;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.3s ease;
}
.wa-float:hover { background: #1eb857; transform: scale(1.1); color: #fff; }
.wa-tip {
    position: absolute;
    right: 68px;
    background: var(--bg-deep);
    color: var(--text-white);
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
    white-space: nowrap;
    border: 1px solid var(--border-gold);
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 991px) {
    #mainNav { top: 34px; }
    #mainNav.scrolled { top: 0; }
    .dep-featured { transform: none; }
    .custo-card-center { transform: none; }
    .logistica-item { border-right: none; border-bottom: 1px solid var(--border-gold); }
    .logistica-item:last-child { border-bottom: none; }
    .sobre-badge { right: 0; bottom: -1rem; }
}

@media (max-width: 768px) {
    #urgencyBar { font-size: 0.62rem; }
    .urgency-divider { display: none; }
    .hero-section { background-attachment: scroll; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-gold-hero, .btn-ghost-hero { width: 100%; max-width: 300px; text-align: center; }
    .hero-proof { flex-direction: column; align-items: center; }
    .sobre-stats { gap: 1rem; }
    .footer-top { flex-direction: column; }
    .diferenciais-header { padding: 1.2rem 1.5rem; }
    .diferencial-item { padding: 1.5rem; }
    .logistica-item { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hook-headline { font-size: 1.9rem; }
    .custo-section, .metodo-section, .sobre-section,
    .depoimentos-section, .logistica-section, .form-section,
    .hook-section, .pre-form-section { padding: 5rem 0; }
}
