/* ==========================================================================
   C MONTEIRO ADVOGADOS - BRANDKIT OFICIAL & DESIGN SYSTEM EXECUTIVO
   
   BRANDKIT:
   - TIPOGRAFIA: 'Tenor Sans' (Títulos & Destaques) | 'Glacial Indifference' (Corpo)
   - CORES: Azul Escuro #14293e | Dourado Nobre #c0a164 | Fundo Escuro #091522
   ========================================================================== */

/* 1. VARIÁVEIS & TOKENS */
:root {
    /* Cores Oficiais */
    --navy-dark: #091522;
    --navy-main: #14293e;
    --navy-card: #0f2032;
    --navy-light: #f8fafc;
    
    /* Dourado Nobre */
    --gold-main: #c0a164;
    --gold-light: #f1e4c7;
    --gold-dark: #8c6e2e;
    --gold-btn: linear-gradient(135deg, #d4ba80 0%, #faecd0 50%, #b89856 100%);

    /* Tipografia */
    --font-heading: 'Tenor Sans', Georgia, serif;
    --font-body: 'Glacial Indifference', 'Plus Jakarta Sans', -apple-system, sans-serif;

    /* Textos */
    --text-title: #0a1726;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --text-white-sub: #e2e8f0;

    /* Bordas & Sombras */
    --border-light: #e8edf2;
    --border-gold-subtle: rgba(192, 161, 100, 0.35);
    
    --shadow-soft: 0 4px 20px rgba(10, 23, 38, 0.04);
    --shadow-card: 0 10px 30px rgba(10, 23, 38, 0.06);
    --shadow-hover: 0 16px 40px rgba(20, 41, 62, 0.12);
    --shadow-gold: 0 6px 20px rgba(192, 161, 100, 0.35);

    /* Raios de Borda */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* 2. RESET & BASE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: #ffffff;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Centralização universal e enquadramento perfeito para fotos do Dr. Carlos (Formato Cover Completo) */
.img-dr-cover {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center top !important;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* 3. ANIMAÇÕES DE FUNDO SUTIS (ORBS LUMINOSOS) */
.bg-glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    animation: floatGlow 14s infinite alternate ease-in-out;
}

.orb-1 {
    top: 10%;
    right: 5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(192, 161, 100, 0.6) 0%, transparent 70%);
}

.orb-2 {
    top: 50%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(20, 41, 62, 0.8) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    bottom: 10%;
    right: 15%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(192, 161, 100, 0.4) 0%, transparent 70%);
    animation-delay: -9s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -30px) scale(1.08); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* 4. ESTRUTURA, SEÇÕES & ESPAÇAMENTOS */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-light {
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-alt {
    background-color: var(--navy-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-dark {
    background-color: var(--navy-dark);
    color: #ffffff;
    border-top: 1px solid var(--border-gold-subtle);
    border-bottom: 1px solid var(--border-gold-subtle);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold-main) !important;
}

.text-white {
    color: #ffffff !important;
}

.text-white-sub {
    color: var(--text-white-sub) !important;
}

.w-full {
    width: 100%;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* 5. CABEÇALHOS DE SEÇÃO */
.section-header {
    margin-bottom: 55px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: #fdf8ee;
    border: 1px solid var(--gold-main);
    border-radius: var(--radius-full);
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.tag-dark {
    background: rgba(192, 161, 100, 0.15);
    border-color: var(--gold-main);
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    color: var(--text-title);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 6. BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-btn);
    color: #07131e;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(192, 161, 100, 0.5);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--navy-main);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.88rem;
}

/* 7. HEADER & NAVBAR */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 21, 34, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(192, 161, 100, 0.25);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.25s ease;
}

.brand-logo:hover .logo-img {
    transform: scale(1.06);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--gold-main);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-header {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--gold-main);
    border-radius: 2px;
}

/* 8. HERO SECTION COM DEGRADÊ SOFISTICADO & XADREZ SUAVE */
.hero {
    position: relative;
    background: radial-gradient(1100px circle at 70% 30%, #15344f 0%, #0c1c2c 45%, #050d15 100%);
    color: #ffffff;
    padding: 95px 0 105px 0;
    border-bottom: 1px solid var(--border-gold-subtle);
    overflow: hidden;
}

/* EFEITO DE FUNDO XADREZ (GRID SUAVE, MINIMALISTA E NÃO CHAMATIVO) */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-size: 56px 56px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at 60% 45%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.15) 55%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 60% 45%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.15) 55%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    position: absolute;
    top: 5%;
    right: 8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 161, 100, 0.12) 0%, transparent 70%);
    filter: blur(85px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: heroPulseGold 9s infinite alternate ease-in-out;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(20, 60, 100, 0.25) 0%, transparent 70%);
    filter: blur(95px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: heroPulseBlue 11s infinite alternate ease-in-out;
}

.hero-light-beam {
    position: absolute;
    top: -50px;
    left: 42%;
    width: 200px;
    height: 600px;
    background: linear-gradient(135deg, rgba(212, 186, 128, 0.04) 0%, transparent 70%);
    transform: rotate(35deg);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

@keyframes heroPulseGold {
    0% { transform: scale(1) translate(0, 0); opacity: 0.12; }
    100% { transform: scale(1.1) translate(-20px, 15px); opacity: 0.2; }
}

@keyframes heroPulseBlue {
    0% { transform: scale(1) translate(0, 0); opacity: 0.2; }
    100% { transform: scale(1.08) translate(15px, -15px); opacity: 0.35; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tag-hero {
    background: rgba(192, 161, 100, 0.12);
    border: 1px solid rgba(192, 161, 100, 0.5);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(192, 161, 100, 0.15);
}

.tag-hero .glow-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-main);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--gold-main);
    animation: dotPulse 2s infinite ease-in-out;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 3.8vw, 3.2rem);
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 26px;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 34px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: #f1f5f9;
}

.feature-item i {
    color: #091522;
    background: var(--gold-btn);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(192, 161, 100, 0.4);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #081420;
    border-radius: 20px;
    border: 1.5px solid rgba(192, 161, 100, 0.35);
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), 0 0 30px rgba(192, 161, 100, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-photo-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.6), 0 0 40px rgba(192, 161, 100, 0.18);
}

.hero-photo {
    width: 100%;
    height: 500px;
    max-height: 520px;
    object-fit: cover !important;
    object-position: center 0% !important;
    display: block;
}

.photo-badge {
    padding: 15px 18px;
    text-align: center;
    background: rgba(9, 21, 34, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(192, 161, 100, 0.25);
}

.photo-badge strong {
    font-family: var(--font-heading);
    display: block;
    color: var(--gold-light);
    font-size: 1.18rem;
    letter-spacing: 0.04em;
}

.photo-badge span {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 9. FAIXA DE ALERTA */
.banner-strip {
    background: #0f2236;
    border-bottom: 1px solid var(--border-gold-subtle);
    color: #ffffff;
    padding: 18px 0;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.banner-info i {
    font-size: 1.2rem;
}

.banner-link {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.banner-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* 10. ESPECIALIDADES (COM IMAGENS IA EM CADA CARD) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.clean-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.clean-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-main);
    box-shadow: var(--shadow-hover);
}

.featured-card {
    border: 1.5px solid var(--gold-main);
}

.card-media {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #091522;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

.clean-card:hover .card-img {
    transform: scale(1.05);
}

.card-tag {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(9, 21, 34, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.gold-tag {
    background: var(--gold-btn) !important;
    color: #07131e !important;
    border: none !important;
    font-weight: 700 !important;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-title);
    margin-bottom: 10px;
    line-height: 1.35;
}

.card-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-main);
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.card-link:hover {
    color: var(--gold-dark);
}

/* 11. SIMULADOR SLIM */
.simulator-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 45px;
    align-items: center;
}

.sim-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.sim-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.sim-card {
    background: #ffffff;
    color: var(--text-title);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-gold-subtle);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.sim-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
}

.sim-progress-fill {
    width: 33.33%;
    height: 100%;
    background: var(--gold-btn);
    transition: width 0.3s ease;
}

.sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.sim-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy-main);
}

.sim-header span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    background: #fdf8ee;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: simpleFade 0.25s ease;
}

@keyframes simpleFade {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-label {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-title);
    margin-bottom: 14px;
}

.options-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-pill input {
    display: none;
}

.option-pill span {
    display: block;
    padding: 11px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #f8fafc;
    font-size: 0.92rem;
    color: var(--text-title);
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-pill:hover span {
    border-color: var(--gold-main);
    background: #ffffff;
}

.option-pill input:checked + span {
    border-color: var(--gold-main);
    background: #fdfaf2;
    font-weight: 600;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clean-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text-title);
    font-size: 0.95rem;
}

.clean-input:focus {
    outline: none;
    border-color: var(--gold-main);
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn-group .btn {
    flex: 1;
}

/* 12. SOBRE O ADVOGADO (HARMONIOSO, MODERNO E EXECUTIVO) */
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.about-gallery {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-card-modern {
    position: relative;
    width: 100%;
    max-width: 410px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(9, 21, 34, 0.1);
    border: 1.5px solid rgba(192, 161, 100, 0.45);
    background: #091522;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(9, 21, 34, 0.16);
}

.about-img-modern {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain !important;
    display: block;
    background: #091522;
}

.about-card-footer {
    padding: 13px 18px;
    background: #091522;
    border-top: 1px solid rgba(192, 161, 100, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-card-footer i {
    font-size: 1.35rem;
    color: var(--gold-main);
    flex-shrink: 0;
}

.about-card-footer strong {
    display: block;
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.02rem;
    letter-spacing: 0.03em;
}

.about-card-footer span {
    display: block;
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--navy-main);
    border-left: 3px solid var(--gold-main);
    padding-left: 18px;
    margin: 18px 0;
    line-height: 1.65;
}

.about-desc {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-features-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 22px 0 28px 0;
}

.about-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 1px solid rgba(192, 161, 100, 0.25);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-feature-box:hover {
    transform: translateY(-2px);
    border-color: var(--gold-main);
    box-shadow: 0 6px 20px rgba(192, 161, 100, 0.12);
}

.feature-icon-gold {
    width: 36px;
    height: 36px;
    background: var(--gold-btn);
    color: #091522;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(192, 161, 100, 0.35);
    margin-top: 2px;
}

.feature-info h4 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    color: var(--navy-dark);
    margin-bottom: 3px;
}

.feature-info p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
}

/* 13. COMO FUNCIONA O ATENDIMENTO */
.process-flex {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: stretch;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.process-step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step-item:hover {
    transform: translateY(-2px);
    border-color: var(--gold-main);
    box-shadow: var(--shadow-hover);
}

.step-number-circle {
    width: 44px;
    height: 44px;
    background: var(--gold-btn);
    color: #091522;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(192, 161, 100, 0.35);
    margin-top: 2px;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0;
}

.process-card-box {
    background: #091522;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(192, 161, 100, 0.35);
    box-shadow: 0 20px 45px rgba(9, 21, 34, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.process-img {
    width: 100%;
    height: 310px;
    object-fit: cover !important;
    object-position: center 10% !important;
    display: block;
}

.process-quote {
    padding: 20px 22px;
    background: #091522;
    border-top: 1px solid rgba(192, 161, 100, 0.25);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-quote i {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.process-quote p {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    color: #f1f5f9;
    line-height: 1.5;
    margin-bottom: 8px;
}

.process-quote strong {
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* 14. DEPOIMENTOS & GOOGLE AVALIAÇÕES */
.google-badge-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-title);
    box-shadow: var(--shadow-soft);
    margin-top: 6px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-gold {
    color: #fbbf24;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-title);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-main);
    color: var(--gold-main);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.testimonial-author strong {
    font-size: 0.95rem;
    color: var(--text-title);
    display: block;
}

.testimonial-author small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 15. SEÇÃO INSTAGRAM - GUIA OFICIAL (BADGE STORIES + IFRAME EMBED GLASSMORPHISM) */
.insta-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 35px;
}

/* 1. O "Badge" do Instagram (Perfil com Gradiente Stories e Micro-animação) */
.insta-stories-badge {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 3.5px;
    margin-bottom: 20px;
    box-shadow: 0 12px 28px rgba(220, 39, 67, 0.35);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    cursor: pointer;
    display: inline-block;
}

.insta-stories-badge:hover {
    transform: scale(1.12);
    box-shadow: 0 16px 36px rgba(220, 39, 67, 0.55);
}

.insta-stories-inner {
    width: 100%;
    height: 100%;
    background: #091522;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.insta-stories-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.insta-handle-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(220, 39, 67, 0.08) 0%, rgba(188, 24, 136, 0.08) 100%);
    border: 1px solid rgba(220, 39, 67, 0.25);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    color: #c13584;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}

.insta-handle-pill:hover {
    background: linear-gradient(135deg, rgba(220, 39, 67, 0.15) 0%, rgba(188, 24, 136, 0.15) 100%);
    border-color: #c13584;
    transform: translateY(-2px);
}

.insta-verified-badge {
    color: #0ea5e9;
    font-size: 0.9rem;
}

/* 2. O Feed (Iframe com Glassmorphism) */
.insta-embed-card {
    max-width: 860px;
    margin: 0 auto 40px auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(20, 41, 62, 0.12);
    box-shadow: 0 20px 50px rgba(10, 23, 38, 0.08);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease;
}

.insta-embed-card:hover {
    box-shadow: 0 25px 60px rgba(10, 23, 38, 0.14);
}

.insta-iframe-embed {
    width: 100%;
    min-height: 580px;
    height: 75vh;
    max-height: 820px;
    border: none;
    display: block;
    background: transparent;
}

/* Grid complementar de posts rápidos */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.insta-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insta-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-main);
    box-shadow: var(--shadow-hover);
}

.insta-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #091522;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center top !important;
    transition: transform 0.4s ease;
}

.insta-card:hover .insta-img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 21, 34, 0.75);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-overlay i {
    font-size: 2rem;
    color: var(--gold-light);
}

.insta-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

.insta-footer {
    padding: 14px 16px;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
    background: #ffffff;
    flex: 1;
}

.insta-footer strong {
    color: var(--navy-main);
}

/* 16. FAQ ACCORDION */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #ffffff;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 18px 22px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-title);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--gold-main);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.faq-content p {
    padding: 0 22px 18px 22px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* 17. FOOTER EXECUTIVO PREMIUM */
.footer {
    background-color: var(--navy-dark);
    color: #94a3b8;
    padding-top: 70px;
    border-top: 1px solid var(--border-gold-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.1fr 1.1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-brand .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.footer-brand-titles {
    display: flex;
    flex-direction: column;
}

.f-brand {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #ffffff;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.f-sub {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold-main);
    font-weight: 700;
}

.footer-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-oab-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 161, 100, 0.1);
    border: 1px solid rgba(192, 161, 100, 0.35);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #f1f5f9;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-main);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links li a {
    color: #cbd5e1;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links li a i {
    font-size: 0.75rem;
    color: var(--gold-main);
    flex-shrink: 0;
}

.footer-links li a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-status-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.4);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.78rem;
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 16px;
}

.status-pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: statusPulse 1.8s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    font-size: 1.1rem;
    color: var(--gold-main);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: var(--gold-light);
}

.footer-bottom {
    background: #050d15;
    padding: 22px 0;
    font-size: 0.82rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-disclaimer {
    font-size: 0.76rem;
    color: #64748b;
    max-width: 620px;
    line-height: 1.5;
}

/* 18. BOTÃO FLUTUANTE */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.25s ease;
}

.floating-wa:hover {
    transform: scale(1.08);
}

/* 19. ANIMAÇÕES DE SCROLL */
[data-animate] {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate="fade-up"] {
    transform: translateY(20px);
}

[data-animate="fade-left"] {
    transform: translateX(20px);
}

[data-animate="fade-right"] {
    transform: translateX(-20px);
}

[data-animate="fade-in"] {
    transform: scale(0.98);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* 20. RESPONSIVIDADE & OTIMIZAÇÃO MOBILE DE ALTA PERFORMANCE */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-grid, .simulator-container, .about-grid, .process-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 65px 0;
    }

    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 10px 16px;
    }

    .brand-logo {
        gap: 10px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 1.02rem;
        letter-spacing: 0.08em;
    }

    .brand-sub {
        font-size: 0.56rem;
        letter-spacing: 0.18em;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .btn-header {
        width: 38px;
        height: 38px;
        min-width: 38px;
        padding: 0;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
        box-shadow: 0 3px 10px rgba(192, 161, 100, 0.4);
        margin: 0;
    }

    .btn-header span {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 17px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin: 0;
        flex-shrink: 0;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(9, 21, 34, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 2px solid var(--gold-main);
        padding: 24px 20px;
        flex-direction: column;
        gap: 18px;
        display: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        animation: slideDownNav 0.3s ease forwards;
    }

    @keyframes slideDownNav {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 8px 0;
    }

    /* Hero no Mobile */
    .hero {
        padding: 60px 0 75px 0;
    }

    .hero-title {
        font-size: clamp(1.9rem, 7vw, 2.4rem);
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-features {
        align-items: flex-start;
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-photo-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-photo {
        height: 420px;
        max-height: 440px;
        object-fit: cover !important;
        object-position: center 0% !important;
    }

    /* Faixa de Alerta */
    .banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .banner-link {
        width: 100%;
        text-align: center;
    }

    /* Cards e Processo */
    .cards-grid, .insta-grid, .process-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Seção Sobre no Mobile */
    .about-gallery {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .about-card-modern {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-img-modern {
        height: 400px;
        max-height: 420px;
        object-position: center 0% !important;
    }

    /* Simulador no Mobile */
    .sim-card {
        padding: 24px 18px;
    }

    .option-pill span {
        font-size: 0.88rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }

    /* Instagram no Mobile */
    .insta-embed-card {
        border-radius: 16px;
        margin-bottom: 25px;
    }

    .insta-iframe-embed {
        min-height: 480px;
        height: 60vh;
    }

    /* Rodapé no Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-disclaimer {
        text-align: center;
    }

    /* Botão Flutuante */
    .floating-wa {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

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

    .hero-photo-wrapper {
        max-width: 290px;
    }

    .hero-photo {
        height: 380px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.92rem;
    }
}
