/* ============================================================
   PANTEON CONTABILIDADE — IR LANDING PAGE
   Aesthetic: Dark Luxury · Gold Accents · Editorial Typography
   ============================================================ */

/* ─── RESET & BOX MODEL ─────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
    /* Core Palette */
    --black: #080808;
    --black-soft: #111111;
    --black-mid: #1a1a1a;
    --black-light: #242424;
    --gold: #C9A84C;
    --gold-light: #E2C47A;
    --gold-dim: #9A7830;
    --gold-pale: #f0dfa0;
    --white: #F8F5EF;
    --white-dim: #d4cfc5;
    --cream: #F2EDE3;
    --cream-mid: #E8E0D0;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    /* Layout */
    --container-max: 1200px;
    --container-pad: clamp(1.25rem, 5vw, 3rem);
    --border-radius: 2px;
    --border-radius-lg: 6px;

    /* Effects */
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
    --shadow-card: 0 8px 48px rgba(0, 0, 0, 0.45);
    --shadow-fab: 0 4px 24px rgba(0, 0, 0, 0.5);
    --gold-glow: 0 0 20px rgba(201, 168, 76, 0.3);

    /* Transitions */
    --transition-fast: 0.18s ease;
    --transition-base: 0.28s ease;
    --transition-slow: 0.45s ease;

    /* Header height */
    --header-h: 72px;
}

/* ─── BASE ───────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

em {
    font-style: italic;
}

strong {
    font-weight: 600;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

/* ─── TYPOGRAPHY UTILITIES ──────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.4rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.section-title em {
    color: var(--gold-light);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--white-dim);
    max-width: 560px;
    margin-bottom: var(--space-xl);
    line-height: 1.75;
}

.section-text {
    font-size: 0.975rem;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    max-width: 540px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    border-radius: var(--border-radius);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

/* Gold Button */
.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.btn-gold:active {
    transform: translateY(0);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(248, 245, 239, 0.35);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Large modifier */
.btn-large {
    padding: 1rem 2.25rem;
    font-size: 0.825rem;
}

/* ─── GOLD SHIMMER ANIMATION ─────────────────────────────── */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(224, 224, 224, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(224, 224, 224, 0.65);
    box-shadow: 0 4px 32px rgb(131 131 131 / 50%);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.logo-link {
    flex-shrink: 0;
    transition: opacity var(--transition-fast);
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-img {
    height: 65px;
    width: auto;
    filter: brightness(1.05);
}

/* ─── DESKTOP NAV ────────────────────────────────────────── */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black-mid);
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    padding: 0.6rem 1.4rem;
    font-size: 0.72rem;
}

/* ─── HAMBURGER ──────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active .hamburger-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.mobile-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgb(131 131 131 / 98%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    backdrop-filter: blur(20px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.mobile-nav.open {
    max-height: 420px;
    padding: var(--space-md) 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--container-pad);
}

.mobile-nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dim);
    padding: 0.5rem;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.btn-mobile-cta {
    margin-top: var(--space-xs);
    width: 100%;
    justify-content: center;
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.section-hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

/* Decorative background ornament */
.hero-bg-ornament {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60vw;
    max-width: 800px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(201, 168, 76, 0.06) 0%,
            rgba(201, 168, 76, 0.02) 40%,
            transparent 70%);
    pointer-events: none;
}

/* Diagonal line accent */
.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 25%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(201, 168, 76, 0.12) 30%,
            rgba(201, 168, 76, 0.08) 70%,
            transparent 100%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    width: 100%;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: var(--space-md);
    animation: fadeInDown 0.6s ease both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title em {
    color: var(--gold-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--white-dim);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-trust-badges li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--white-dim);
    font-weight: 400;
}

.trust-icon {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ─── HERO CARD MOCKUP ───────────────────────────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-card-mockup {
    background: var(--grey-mid);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg) var(--space-lg);
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-card), var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

/* Subtle gold gradient top bar */
.hero-card-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-light), var(--gold-dim));
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}


.mockup-status {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.mockup-status--ok {
    background: rgba(80, 200, 120, 0.15);
    border: 1px solid rgba(80, 200, 120, 0.35);
    color: #72e09a;
}

.mockup-divider {
    height: 1px;
    background: rgba(201, 168, 76, 0.15);
    margin-bottom: var(--space-md);
}

.mockup-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: var(--space-lg);
}

.mockup-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--white-dim);
}

.mockup-check::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-check--done {
    color: var(--white);
}

.mockup-check--done::before {
    content: '✓';
    font-size: 0.65rem;
    color: var(--gold);
    border-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 18px;
    text-align: center;
    padding-left: 1px;
}

.mockup-footer {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--border-radius);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-label {
    font-size: 0.72rem;
    color: var(--white-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mockup-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: -0.02em;
}

/* ─── URGÊNCIA ───────────────────────────────────────────── */
.section-urgencia {
    background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-dim) 100%);
    padding: var(--space-md) 0;
}

.urgencia-inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.urgencia-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.urgencia-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--black);
    line-height: 1.6;
    min-width: 220px;
}

.urgencia-text strong {
    font-weight: 700;
}

.urgencia-inner .btn {
    background: var(--black);
    color: var(--white);
    flex-shrink: 0;
    font-size: 0.72rem;
}

.urgencia-inner .btn:hover {
    background: var(--black-soft);
    transform: translateY(-2px);
}

/* ─── DORES SECTION ──────────────────────────────────────── */
.section-dores {
    padding: var(--space-3xl) 0;
    background: var(--black-soft);
    position: relative;
}

.section-dores::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.dores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.dor-item {
    background: var(--black-mid);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: border-color var(--transition-base), transform var(--transition-base);
    position: relative;
    overflow: hidden;
}

.dor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height var(--transition-slow);
}

.dor-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.dor-item:hover::before {
    height: 100%;
}

.dor-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.dor-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.dor-desc {
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.7;
}

/* ─── POR QUE A PANTEON ──────────────────────────────────── */
.section-por-que {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.por-que-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
}

.por-que-content .section-title {
    margin-top: 0;
}

/* Stats */
.por-que-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stat-item {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.stat-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--white-dim);
    letter-spacing: 0.04em;
    line-height: 1.5;
}

/* ─── SERVIÇOS ───────────────────────────────────────────── */
.section-servicos {
    padding: var(--space-3xl) 0;
    background: var(--black-soft);
    position: relative;
}

.section-servicos::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.servico-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-lg);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    border-right: 1px solid rgba(201, 168, 76, 0.1);
    background: var(--black-mid);
    transition: background var(--transition-base);
    position: relative;
    overflow: hidden;
}

.servico-item:nth-child(even) {
    border-right: none;
}

.servico-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.servico-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.03);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.servico-item:hover {
    background: var(--black-light);
}

.servico-item:hover::after {
    opacity: 1;
}

.servico-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.25);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.04em;
    transition: color var(--transition-base);
}

.servico-item:hover .servico-num {
    color: rgba(201, 168, 76, 0.5);
}

.servico-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.servico-desc {
    font-size: 0.82rem;
    color: var(--white-dim);
    line-height: 1.7;
}

/* Extra note */
.servicos-extra {
    margin-top: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md) var(--space-lg);
}

.servico-extra-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.servico-extra-text {
    font-size: 0.875rem;
    color: var(--white-dim);
    line-height: 1.7;
}

.servico-extra-text strong {
    color: var(--gold-light);
}

/* ─── PARA QUEM É ────────────────────────────────────────── */
.section-para-quem {
    padding: var(--space-3xl) 0;
    background: var(--black);
}

.para-quem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.para-quem-item {
    padding: var(--space-lg);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--border-radius-lg);
    background: var(--black-soft);
    transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
    text-align: center;
}

.para-quem-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: var(--black-mid);
    transform: translateY(-4px);
}

.para-quem-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.para-quem-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.para-quem-desc {
    font-size: 0.82rem;
    color: var(--white-dim);
    line-height: 1.7;
}

/* ─── COMO FUNCIONA ──────────────────────────────────────── */
.section-como-funciona {
    padding: var(--space-3xl) 0;
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

/* Big decorative background text */
.section-como-funciona::before {
    content: 'PROCESSO';
    position: absolute;
    bottom: -0.1em;
    right: -0.05em;
    font-family: var(--font-display);
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 700;
    color: rgba(201, 168, 76, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.section-como-funciona .section-title,
.section-como-funciona .section-subtitle,
.section-como-funciona .section-label {
    text-align: center;
}

.section-como-funciona .section-subtitle {
    margin-inline: auto;
}

.passos-lista {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin: var(--space-xl) auto 0;
}

.passo-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
    position: relative;
    transition: background var(--transition-base);
    border-radius: var(--border-radius-lg);
}

.passo-item:hover {
    background: rgba(201, 168, 76, 0.04);
}

.passo-connector {
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.1));
    margin-left: calc(var(--space-md) + 27px);
}

.passo-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    transition: background var(--transition-base), color var(--transition-base);
}

.passo-item:hover .passo-num {
    background: var(--gold);
    color: var(--black);
}

.passo-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.passo-desc {
    font-size: 0.875rem;
    color: var(--white-dim);
    line-height: 1.75;
}

.como-funciona-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ─── DEPOIMENTOS ────────────────────────────────────────── */
.section-depoimentos {
    padding: var(--space-3xl) 0;
    background: var(--black);
    position: relative;
}

/* Large decorative quote marks */
.section-depoimentos::before {
    content: '"';
    position: absolute;
    top: var(--space-xl);
    right: var(--container-pad);
    font-family: var(--font-display);
    font-size: clamp(12rem, 25vw, 22rem);
    font-weight: 700;
    color: rgba(201, 168, 76, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.depoimento-item {
    background: var(--black-soft);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: border-color var(--transition-base), transform var(--transition-base);
    position: relative;
    overflow: hidden;
}

.depoimento-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.depoimento-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.depoimento-item:hover::before {
    opacity: 1;
}

.depoimento-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.depoimento-texto {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    line-height: 1.7;
    flex: 1;
    position: relative;
}

.depoimento-texto::before {
    content: '"';
    font-size: 4rem;
    line-height: 0;
    color: rgba(201, 168, 76, 0.2);
    position: absolute;
    top: 0.5rem;
    left: -0.5rem;
    font-style: normal;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: var(--space-sm);
}

.autor-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold-light));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.autor-nome {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    font-style: normal;
}

.autor-cargo {
    display: block;
    font-size: 0.75rem;
    color: var(--white-dim);
    margin-top: 0.15rem;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.section-faq {
    padding: var(--space-3xl) 0;
    background: var(--black-soft);
    position: relative;
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-h) + var(--space-md));
}

.faq-intro .section-subtitle {
    margin-bottom: var(--space-lg);
}

.faq-lista {
    display: flex;
    flex-direction: column;
}

.faq-pergunta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    cursor: pointer;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition-fast);
    user-select: none;
    list-style: none;
}

.faq-pergunta:first-child {
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.faq-pergunta:hover {
    color: var(--gold-light);
}

.faq-pergunta[aria-expanded="true"] {
    color: var(--gold-light);
    border-bottom-color: transparent;
}

.faq-icone {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition-base);
    font-weight: 300;
}

.faq-pergunta[aria-expanded="true"] .faq-icone {
    transform: rotate(45deg);
}

.faq-resposta {
    font-size: 0.875rem;
    color: var(--white-dim);
    line-height: 1.8;
    padding: var(--space-sm) 0 var(--space-md);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    display: none;
}

.faq-resposta.open {
    display: block;
    animation: fadeInDown 0.3s ease;
}

/* ─── CTA FINAL ──────────────────────────────────────────── */
.section-cta-final {
    padding: var(--space-3xl) 0;
    background: var(--black-mid);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Radial glow */
.section-cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 900px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(201, 168, 76, 0.08) 0%,
            transparent 65%);
    pointer-events: none;
}

.cta-bg-ornament {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 80px,
            rgba(201, 168, 76, 0.018) 80px,
            rgba(201, 168, 76, 0.018) 81px);
    pointer-events: none;
}

.cta-final-inner {
    position: relative;
    z-index: 1;
}

.cta-label--light {
    color: var(--gold);
}

.cta-final-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: var(--space-md);
}

.cta-final-title em {
    color: var(--gold-light);
    font-style: italic;
}

.cta-final-subtitle {
    font-size: 1rem;
    color: var(--white-dim);
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
    line-height: 1.75;
}

.cta-final-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.cta-final-note {
    font-size: 0.75rem;
    color: rgba(212, 207, 197, 0.5);
    letter-spacing: 0.08em;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--white-dim);
    line-height: 1.6;
    max-width: 260px;
}

.footer-nav-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer-nav-list,
.footer-contato-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.825rem;
    color: var(--white-dim);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--gold-light);
}

.footer-link--icon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-bottom-inner {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(212, 207, 197, 0.4);
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: rgba(212, 207, 197, 0.3);
    max-width: 400px;
    text-align: right;
}

/* ─── WHATSAPP FAB ───────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-fab);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast);
    overflow: hidden;
}

.whatsapp-fab:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab-label {
    white-space: nowrap;
}

/* ─── KEYFRAME ANIMATIONS ────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ─── SCROLL REVEAL (JS adds .revealed class) ───────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ─── RESPONSIVE — TABLET (≤ 1024px) ────────────────────── */
@media (max-width: 1024px) {
    :root {
        --space-3xl: 6rem;
    }

    .main-nav,
    .btn-header {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .por-que-inner {
        grid-template-columns: 1fr;
    }

    .por-que-stats {
        flex-direction: row;
        flex-wrap: wrap;
        border: 1px solid rgba(201, 168, 76, 0.12);
        border-radius: var(--border-radius-lg);
        overflow: hidden;
    }

    .stat-item {
        flex: 1;
        min-width: 140px;
    }

    .stat-divider {
        width: 1px;
        height: auto;
        background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.2), transparent);
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .faq-intro {
        position: static;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ─── RESPONSIVE — MOBILE (≤ 768px) ─────────────────────── */
@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
        --space-2xl: 3rem;
        --space-xl: 2.5rem;
        --header-h: 64px;
    }

    .dores-grid {
        grid-template-columns: 1fr;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-item {
        border-right: none !important;
    }

    .servico-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(201, 168, 76, 0.1) !important;
    }

    .servico-item:last-child {
        border-bottom: none !important;
    }

    .para-quem-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-disclaimer {
        text-align: center;
    }

    .urgencia-inner {
        flex-direction: column;
        text-align: center;
    }

    .urgencia-inner .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-fab-label {
        display: none;
    }

    .whatsapp-fab {
        padding: 0.9rem;
        border-radius: 50%;
    }

    .passo-connector {
        margin-left: calc(var(--space-sm) + 27px);
    }
}

/* ─── RESPONSIVE — SMALL (≤ 480px) ──────────────────────── */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .cta-final-title {
        font-size: 1.75rem;
    }
}

/* ─── ACCESSIBILITY ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ─── PRINT ──────────────────────────────────────────────── */
@media print {

    .site-header,
    .whatsapp-fab,
    .section-urgencia {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}