/* ========================================
   KÊNIA BORGES SOUZA — ADVOGADA
   Paleta: Vinho #7F262A · Blush #F5E4E3
   Sem preto — tons quentes e elegantes
   ======================================== */

:root {
    /* Vinho — tons escuros quentes (sem preto) */
    --wine:        #7F262A;
    --wine-dark:   #5C1A1D;
    --wine-deeper: #3E1012;
    --wine-medium: #9B3B40;
    --wine-light:  #B85560;
    --wine-pale:   #D4888E;

    /* Blush — tons claros rosados */
    --blush:        #F5E4E3;
    --blush-medium: #EDD5D3;
    --blush-dark:   #D9B8B6;
    --blush-deep:   #C49A98;

    /* Dourado — acento elegante */
    --gold:       #C9A96E;
    --gold-light: #D9BC88;
    --gold-dark:  #A8883A;

    /* Texto sobre fundos claros */
    --text-heading: #3E1012;
    --text-body:    #6B2A2D;
    --text-medium:  #8B4448;
    --text-muted:   #B08082;

    /* Texto sobre fundos vinho */
    --text-on-wine:       #F5E4E3;
    --text-on-wine-soft:  #E0C4C6;
    --text-on-wine-muted: #C49A98;

    /* Bordas */
    --border:       rgba(127, 38, 42, 0.15);
    --border-strong: rgba(127, 38, 42, 0.32);

    /* Tipografia */
    --font-display: 'Playfair Display', serif;
    --font-body:    'Lora', serif;
    --font-sans:    'Poppins', sans-serif;

    /* Espaçamento */
    --spacing-xs:  0.5rem;
    --spacing-sm:  1rem;
    --spacing-md:  1.5rem;
    --spacing-lg:  2rem;
    --spacing-xl:  3rem;
    --spacing-2xl: 4rem;

    /* Sombras quentes */
    --shadow-sm: 0 2px 8px  rgba(127, 38, 42, 0.1);
    --shadow-md: 0 6px 20px rgba(127, 38, 42, 0.15);
    --shadow-lg: 0 12px 40px rgba(127, 38, 42, 0.2);
    --shadow-gold: 0 0 20px rgba(201, 169, 110, 0.25);
}

/* ========================================
   RESET E BASE
   ======================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    /* Degradê suave: blush claro → um toque rosado mais fundo → blush claro */
    background: linear-gradient(170deg,
        #F5E4E3 0%,
        #EDD5D3 35%,
        #F0DCDA 65%,
        #F5E4E3 100%
    );
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.7;
    font-size: 16px;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-heading);
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: var(--spacing-md); color: var(--text-medium); }

a { color: var(--wine); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--wine-medium); }

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section { padding: var(--spacing-2xl) 0; }

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--wine));
}
.section-divider::after {
    background: linear-gradient(to left, transparent, var(--wine));
}
.section-divider span { color: var(--wine); font-size: 0.9rem; }

/* ========================================
   HEADER — fundo com image07.jpg
   ======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-size: cover;
    background-position: center 30%;
    border-bottom: 2px solid var(--wine);
}

/* Overlay vinho sobre a imagem — sem preto */
.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(62, 16, 18, 0.92) 0%,
        rgba(127, 38, 42, 0.82) 50%,
        rgba(62, 16, 18, 0.90) 100%
    );
    pointer-events: none;
}

.navbar {
    padding: 0.85rem 0;
    position: relative;
    z-index: 2;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
}

/* Foto circular da Dra. Kênia */
.logo-foto {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3), var(--shadow-md);
}

.logo-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.brand-name {
    font-family: var(--font-display) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    color: var(--blush) !important;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.7rem !important;
    color: var(--gold) !important;
    margin-bottom: 0 !important;
    font-family: var(--font-sans) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-on-wine-soft);
    transition: color 0.3s ease;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 2;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--blush);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   BOTÕES
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 3px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.35s ease;
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--wine-deeper);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 169, 110, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--blush);
    border-color: rgba(245, 228, 227, 0.5);
}

.btn-outline:hover {
    background-color: rgba(245, 228, 227, 0.12);
    border-color: var(--blush);
    color: var(--blush);
}

/* Botão primário em fundo claro */
.btn-primary-dark {
    background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 100%);
    color: var(--blush);
    border-color: var(--wine);
    box-shadow: var(--shadow-md);
}

.btn-primary-dark:hover {
    background: linear-gradient(135deg, var(--wine) 0%, var(--wine-medium) 100%);
    color: var(--blush);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit { width: 100%; padding: 1rem; }

/* ========================================
   HERO SECTION — fundo vinho com imagem
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(14, 3, 4, 0.82)  0%,
        rgba(42, 10, 12, 0.65) 35%,
        rgba(62, 16, 18, 0.52) 55%,
        rgba(42, 10, 12, 0.65) 75%,
        rgba(14, 3, 4, 0.82)  100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: var(--spacing-lg);
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(201, 169, 110, 0.4);
    padding: 0.4rem 1.4rem;
    border-radius: 2px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    color: var(--blush);
    line-height: 1.1;
}

.hero .text-primary {
    color: var(--gold-light);
    display: block;
    margin-top: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-on-wine-soft);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.hero-quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-on-wine-muted);
    border-top: 1px solid rgba(245, 228, 227, 0.2);
    padding-top: var(--spacing-lg);
    margin-bottom: 0;
}

/* ── Elementos decorativos jurídicos no Hero ── */
.hero-deco-scale,
.hero-deco-columns {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

/* Balança — direita, grande */
.hero-deco-scale {
    right: 4%;
    bottom: 8%;
    font-size: 22rem;
    color: var(--gold);
    opacity: 0.055;
    transform: rotate(-8deg);
}

/* Colunas — esquerda, menor */
.hero-deco-columns {
    left: 3%;
    top: 15%;
    font-size: 11rem;
    color: var(--gold);
    opacity: 0.04;
    transform: rotate(6deg);
}

/* ── Faixa jurídica entre Hero e Serviços ── */
.law-strip {
    background: linear-gradient(90deg,
        var(--wine-deeper) 0%,
        var(--wine-dark)   50%,
        var(--wine-deeper) 100%
    );
    border-top:    1px solid rgba(201, 169, 110, 0.35);
    border-bottom: 1px solid rgba(201, 169, 110, 0.35);
    padding: 1rem 0;
    overflow: hidden;
}

.law-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.law-strip-inner > span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.law-strip-inner > span i {
    font-size: 0.82rem;
    color: var(--gold-light);
}

.law-strip-sep {
    width: 1px;
    height: 16px;
    background: rgba(201, 169, 110, 0.35);
}

.hero-quote cite {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    font-style: normal;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
}

/* ========================================
   SEÇÃO SOBRE — fundo blush claro
   ======================================== */

.section-about {
    background: var(--blush);
    position: relative;
    padding-top: var(--spacing-xl);
    overflow: hidden;
}

/* Colunas marca d'água na seção Sobre */
.about-watermark {
    position: absolute;
    right: -3%;
    bottom: -5%;
    font-size: 28rem;
    color: var(--wine);
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    transform: rotate(5deg);
}

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

.section-about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--wine), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.about-image-wrapper { position: relative; }

.about-image { position: relative; }

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-image-frame {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    pointer-events: none;
}

.oab-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: 0.8rem 1.3rem;
    border-radius: 3px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.oab-badge .badge-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wine-deeper);
    opacity: 0.75;
    margin-bottom: 0.2rem;
}

.oab-badge .badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wine-deeper);
}

/* Conteúdo */
.about-content { padding-top: 0; }

.about-content h2 {
    margin-bottom: var(--spacing-xs);
    margin-top: 0;
    color: var(--wine-dark);
}

.about-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: var(--spacing-md);
    margin-top: 0;
}

.about-intro {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: var(--spacing-md);
}

.about-intro strong { color: var(--wine-dark); font-weight: 600; }

.about-highlight {
    background: linear-gradient(135deg,
        rgba(127, 38, 42, 0.07),
        rgba(201, 169, 110, 0.06)
    );
    border-left: 3px solid var(--wine);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 0 4px 4px 0;
    margin: var(--spacing-md) 0;
}

.about-highlight p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--wine-dark);
    font-size: 0.98rem;
    line-height: 1.7;
}

.formacao-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.formacao-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.formacao-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: var(--spacing-md);
}

.formacao-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.formacao-list li::before {
    content: '◆';
    color: var(--wine);
    font-size: 0.5rem;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.formacao-list li strong { color: var(--text-body); }

.distinctions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.distinction-item {
    background: rgba(127, 38, 42, 0.05);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    transition: border-color 0.3s, background 0.3s;
}

.distinction-item:hover {
    border-color: var(--border-strong);
    background: rgba(127, 38, 42, 0.09);
}

.distinction-item i { color: var(--wine); font-size: 0.85rem; margin-top: 0.2rem; flex-shrink: 0; }
.distinction-item span { font-size: 0.8rem; color: var(--text-medium); line-height: 1.45; }
.distinction-item strong { color: var(--text-body); }

/* ========================================
   SEÇÃO SERVIÇOS — fundo vinho
   ======================================== */

.section-services {
    background: linear-gradient(160deg, var(--wine-dark) 0%, var(--wine) 50%, var(--wine-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Martelo marca d'água atrás dos cards */
.svc-watermark {
    position: absolute;
    left: -4%;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
    font-size: 36rem;
    color: rgba(245, 228, 227, 0.025);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* Garante que o conteúdo fique sobre a marca d'água */
.section-services .container { position: relative; z-index: 1; }

.section-services .section-header h2 { color: var(--blush); }
.section-services .section-header p  { color: var(--text-on-wine-muted); }
.section-services .section-divider::before,
.section-services .section-divider::after { background: linear-gradient(to right, transparent, var(--gold)); }
.section-services .section-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.section-services .section-divider span { color: var(--gold); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background: rgba(245, 228, 227, 0.08);
    padding: var(--spacing-lg);
    border-radius: 4px;
    border: 1px solid rgba(245, 228, 227, 0.18);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(245, 228, 227, 0.4);
    box-shadow: 0 8px 32px rgba(62, 16, 18, 0.3);
    transform: translateY(-5px);
    background: rgba(245, 228, 227, 0.13);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(245, 228, 227, 0.12);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(245, 228, 227, 0.22);
}

.service-icon i { color: var(--gold-light); font-size: 1.35rem; }

.service-card h3 { color: var(--blush); font-size: 1.1rem; margin-bottom: var(--spacing-sm); }
.service-card p  { font-size: 0.9rem; color: var(--text-on-wine-muted); margin-bottom: 0; line-height: 1.65; }

/* Tags dentro dos cards unificados (ex: Consensual / Litigioso) */
.service-tags {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.85rem;
}
.service-tags li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber-light);
    background: rgba(245, 150, 38, 0.12);
    border: 1px solid rgba(245, 150, 38, 0.30);
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
}
.service-tags li i {
    font-size: 0.6rem;
    color: var(--amber);
}

/* ========================================
   SEÇÃO DIFERENCIAIS — fundo blush médio
   ======================================== */

.section-benefits {
    background: var(--blush-medium);
    position: relative;
}

.section-benefits::before,
.section-benefits::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--wine), transparent);
}
.section-benefits::before { top: 0; }
.section-benefits::after  { bottom: 0; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.benefit-item {
    background: var(--blush);
    padding: var(--spacing-lg);
    border-radius: 4px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(127, 38, 42, 0.12), rgba(201, 169, 110, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    border: 1px solid var(--border);
}

.benefit-icon i { color: var(--wine); font-size: 1.6rem; }

.benefit-item h3 { font-size: 1.05rem; color: var(--wine-dark); margin-bottom: var(--spacing-sm); }
.benefit-item p  { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 0; }

.benefits-additional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.benefit-check {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--blush);
    border-radius: 3px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.benefit-check:hover { border-color: var(--border-strong); }
.benefit-check i  { color: var(--wine); font-size: 1.1rem; flex-shrink: 0; }
.benefit-check p  { margin-bottom: 0; font-size: 0.9rem; color: var(--text-medium); }

/* ========================================
   SEÇÃO FAQ — fundo blush
   ======================================== */

.section-faq {
    background: var(--blush);
    position: relative;
}

.section-faq::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--wine), transparent);
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.faq-item.open {
    border-color: var(--wine);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-heading);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--wine); }

.faq-question i {
    color: var(--wine);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.faq-item.open .faq-question { color: var(--wine-dark); }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.4rem;
}

.faq-item.open .faq-answer {
    max-height: 320px;
    padding: 0 1.4rem 1.2rem;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 0;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

/* ========================================
   SEÇÃO CONTATO — fundo blush médio
   ======================================== */

.section-contact {
    background: var(--blush-medium);
    position: relative;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--wine), transparent);
}

.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-2xl);
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-body);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--blush);
    transition: all 0.3s ease;
}

.form-group select option { background: white; color: var(--text-body); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine);
    box-shadow: 0 0 0 3px rgba(127, 38, 42, 0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-privacy {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0;
    font-family: var(--font-sans);
}

.form-success { text-align: center; padding: var(--spacing-2xl) var(--spacing-lg); }
.form-success i   { font-size: 3rem; color: var(--wine); margin-bottom: var(--spacing-md); }
.form-success h3  { color: var(--wine-dark); margin-bottom: var(--spacing-sm); }
.form-success p   { color: var(--text-medium); margin-bottom: 0; }

/* ========================================
   FOOTER — fundo vinho escuro
   ======================================== */

.footer {
    background: linear-gradient(to bottom, var(--wine), var(--wine-dark));
    border-top: 3px solid var(--gold);
    padding: var(--spacing-2xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h3,
.footer-section h4 { color: var(--blush); font-size: 1rem; margin-bottom: var(--spacing-md); }

.footer-section p { font-size: 0.9rem; color: var(--text-on-wine-muted); line-height: 1.7; }

.footer-credentials { color: var(--gold) !important; font-family: var(--font-sans); letter-spacing: 0.05em; font-size: 0.82rem !important; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section ul li a { color: var(--text-on-wine-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-section ul li a:hover { color: var(--gold-light); }

.contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-list li { display: flex; align-items: center; gap: var(--spacing-sm); }
.contact-list i { color: var(--gold); flex-shrink: 0; width: 16px; }
.contact-list a,
.contact-list span { color: var(--text-on-wine-muted); font-size: 0.88rem; }
.contact-list a:hover { color: var(--gold-light); }

.footer-divider { border-top: 1px solid rgba(245, 228, 227, 0.15); margin-bottom: var(--spacing-lg); }

.footer-legal {
    background: rgba(245, 228, 227, 0.06);
    border: 1px solid rgba(245, 228, 227, 0.14);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 3px;
    margin-bottom: var(--spacing-lg);
}

.legal-notice p { font-size: 0.8rem; color: var(--text-on-wine-muted); margin-bottom: 0; line-height: 1.6; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--spacing-md); }
.footer-bottom p { font-size: 0.8rem; color: var(--text-on-wine-muted); margin-bottom: 0; font-family: var(--font-sans); }

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 50;
    animation: pulse-wa 2.5s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
    color: white;
}

@keyframes pulse-wa {
    0%,100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    60%      { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 340px 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .distinctions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--wine-dark);
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid var(--gold);
    }
    .navbar-menu.active { max-height: 420px; }
    .mobile-menu-toggle { display: flex; }
    .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 320px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrapper { max-width: 360px; margin: 0 auto; }
    .oab-badge { bottom: -12px; right: 8px; }
    .services-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .benefits-additional { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form-wrapper { padding: var(--spacing-lg); }
}

@media (max-width: 480px) {
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }
    .hero h1 { font-size: 2rem; }
    .container { padding: 0 var(--spacing-sm); }
    .section { padding: var(--spacing-lg) 0; }
    .benefits-grid { grid-template-columns: 1fr; }
    .distinctions-grid { grid-template-columns: 1fr; }
    .brand-name { font-size: 1.05rem !important; }
}
