/* ============================================
   DIÓGENES ADVOCACIA — style.css
   Paleta: charcoal + bronze envelhecido + creme
   Tipografia: Cormorant Garamond + DM Sans + Cinzel
   ============================================ */

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

:root {
    /* Bronze envelhecido — mantido (funciona em fundo claro e escuro) */
    --gold:        #a07832;
    --gold-light:  #c79a4a;
    --gold-dark:   #7a5a23;

    /* Tema claro: bege quente + branco-creme para superfícies */
    --bg:          #f6f1e7;        /* bege quente principal */
    --bg-2:        #efe8d7;        /* variação levemente mais marcada para alternar seções */
    --surface:     #ffffff;        /* cards e áreas sólidas */
    --surface2:    #fbf7ed;        /* off-white quente */

    /* Linhas de separação suaves */
    --border:      rgba(160, 120, 50, 0.22);
    --border-soft: rgba(26, 22, 16, 0.08);

    /* Texto: marrom escuro quente em vez de preto puro */
    --text:        #1c1812;
    --text-soft:   #4a4338;
    --text-muted:  #7a7060;
    --white:       #ffffff;

    --radius:      8px;
    --radius-lg:   16px;
    --shadow:      0 24px 64px rgba(28, 24, 18, 0.12);
    --shadow-soft: 0 12px 32px rgba(28, 24, 18, 0.08);
    --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --container:   1240px;
    --header-h:    88px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* Ícone genérico (SVGs inline) */
.icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 1.8;
}

/* === TYPOGRAPHY === */
.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-label {
    justify-content: center;
}
.section-header .section-label::after { display: none; }

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text);
    color: var(--surface);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 30px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
    line-height: 1;
}
.btn-primary .icon { width: 17px; height: 17px; transition: transform 0.3s ease; }
.btn-primary:hover {
    background: var(--gold);
    color: var(--surface);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(160, 120, 50, 0.30);
}
.btn-primary:hover .icon { transform: translateX(3px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 4px;
    border: 1px solid rgba(28, 24, 18, 0.25);
    transition: var(--transition);
    letter-spacing: 0.01em;
    line-height: 1;
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(160, 120, 50, 0.05);
}

.btn-primary.full-width { width: 100%; justify-content: center; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(246, 241, 231, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(28, 24, 18, 0.06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.nav-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg) brightness(1.3);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-soft);
    padding: 10px 16px;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.01em;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text);
    color: var(--surface) !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 11px 20px;
    border-radius: 4px;
    transition: var(--transition);
    margin-left: 12px;
    letter-spacing: 0.01em;
}
.nav-cta .icon { width: 16px; height: 16px; }
.nav-cta:hover {
    background: var(--gold);
    color: var(--surface) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(160, 120, 50, 0.28);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* === HERO (split layout) === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 48px) 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 85% 0%, rgba(160, 120, 50, 0.10), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(160, 120, 50, 0.06), transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* Padrão decorativo sutil ao fundo (linhas finas em diagonal) */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(115deg, transparent 49.7%, rgba(160, 120, 50, 0.07) 50%, transparent 50.3%),
        linear-gradient(115deg, transparent 49.85%, rgba(160, 120, 50, 0.04) 50%, transparent 50.15%);
    background-size: 120px 120px, 60px 60px;
    opacity: 0.6;
    mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* — Lado do texto — */
.hero-text {
    animation: fadeUp 0.9s ease 0.1s both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
}

.hero-headline {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.6vw, 3.8rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--text);
    margin: 0 0 24px;
    letter-spacing: -0.015em;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero-subhead {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-soft);
    max-width: 560px;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeUp 0.9s ease 0.4s both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-soft);
}
.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text-soft);
    letter-spacing: 0.01em;
    font-weight: 500;
}
.hero-trust .icon {
    color: var(--gold);
    width: 18px;
    height: 18px;
}

/* — Lado do retrato — */
.hero-portrait {
    position: relative;
    animation: fadeUp 0.9s ease 0.25s both;
    justify-self: end;
    width: 100%;
    max-width: 420px;
}
.hero-portrait-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--surface);
    box-shadow:
        0 32px 80px rgba(28, 24, 18, 0.18),
        0 0 0 1px rgba(160, 120, 50, 0.20);
}
.hero-portrait-frame::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(160, 120, 50, 0.30);
    border-radius: 4px;
    pointer-events: none;
    z-index: 3;
}
.hero-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    filter: contrast(1.05) saturate(0.95);
}

/* Selo flutuante no canto inferior direito */
.hero-portrait-badge {
    position: absolute;
    right: -16px;
    bottom: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 14px 22px;
    box-shadow: 0 12px 32px rgba(28, 24, 18, 0.18);
    z-index: 4;
}
.hero-badge-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 4px;
}
.hero-badge-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.3;
    white-space: nowrap;
}

/* Detalhe dourado decorativo atrás do retrato */
.hero-portrait::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 100px;
    height: 100px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.45;
    z-index: 1;
}
.hero-portrait::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 80px;
    height: 80px;
    border-bottom: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.45;
    z-index: 1;
}

/* — Scroll indicator (canto inferior esquerdo, vertical) — */
.hero-scroll {
    position: absolute;
    left: 32px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
    color: var(--text-muted);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    transition: var(--transition);
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    animation: scrollPulse 2.4s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleX(0.7); transform-origin: left; }
    50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === SOBRE (banner) === */
.sobre {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
}
.sobre::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.sobre-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 32px 80px rgba(28, 24, 18, 0.10);
}

.sobre-info {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.oab-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(160, 120, 50, 0.45);
    background: rgba(160, 120, 50, 0.06);
    border-radius: 20px;
    padding: 7px 18px;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    width: fit-content;
    font-weight: 500;
}

.sobre-name {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(2.4rem, 3.4vw, 3.2rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.05;
    letter-spacing: -0.015em;
}
.sobre-name em {
    color: var(--gold-dark);
    font-style: italic;
    font-weight: 500;
}

.sobre-info p strong {
    color: var(--text);
    font-weight: 600;
}

.sobre-info p {
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.85;
    max-width: 460px;
}

.sobre-destaques {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.destaque-item strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
    font-weight: 500;
}
.destaque-item span {
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.5;
    display: block;
}

.sobre-photo {
    position: relative;
    overflow: hidden;
}
.sobre-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}
.sobre-photo:hover img { transform: scale(1.03); }

/* === CREDENCIAIS === */
.credenciais {
    padding: 120px 0 100px;
    background: var(--bg);
    position: relative;
}
.credenciais::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}
.credenciais-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.credencial-col {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.credencial-col:hover {
    border-color: rgba(160, 120, 50, 0.30);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(28, 24, 18, 0.08);
}
.credencial-col.featured {
    background: linear-gradient(180deg, rgba(160, 120, 50, 0.06) 0%, var(--surface) 100%);
    border-color: rgba(160, 120, 50, 0.30);
    position: relative;
}
.credencial-col.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.credencial-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(160, 120, 50, 0.10);
    color: var(--gold);
    margin-bottom: 18px;
}
.credencial-icon svg { width: 24px; height: 24px; stroke-width: 1.6; }
.credencial-col h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}
.credencial-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 22px;
    font-weight: 500;
}
.credencial-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
}
.credencial-col li {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-soft);
    padding-left: 18px;
    position: relative;
}
.credencial-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}
.credencial-col li strong {
    color: var(--text);
    font-weight: 600;
}
.cred-tag {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.7rem;
    padding: 2px 8px;
    background: rgba(160, 120, 50, 0.12);
    color: var(--gold-dark);
    border-radius: 12px;
    letter-spacing: 0.04em;
    font-weight: 500;
    vertical-align: middle;
}
.credencial-quote {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--gold-dark);
    margin-top: 22px;
}

/* === ÁREAS === */
.areas {
    padding: 120px 0;
    background: var(--bg-2);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.area-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.area-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.area-card:hover .area-photo img {
    transform: scale(1.05);
}
.area-content {
    padding: 24px 32px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.area-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.area-card:hover {
    border-color: rgba(160, 120, 50, 0.30);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(28, 24, 18, 0.10);
}
.area-card:hover::before { opacity: 1; }

.area-card.wide {
    grid-column: span 3;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}
.area-card.wide .area-photo {
    width: 45%;
    height: auto;
    border-bottom: none;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
}
.area-card.wide .area-content {
    padding-top: 36px;
    width: 55%;
}
@media (max-width: 992px) {
    .area-card.wide {
        flex-direction: column;
    }
    .area-card.wide .area-photo {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }
    .area-card.wide .area-content {
        padding-top: 24px;
        width: 100%;
    }
}
.area-card.wide .area-content { flex: 1; }
.area-card.wide .area-icon { flex-shrink: 0; margin-top: 4px; }

.area-card.featured {
    border-color: rgba(160, 120, 50, 0.32);
    background: linear-gradient(135deg, rgba(160, 120, 50, 0.05) 0%, var(--surface) 100%);
}
.area-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold);
    color: var(--surface);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: 'Cinzel', serif;
}

/* Ícone das áreas — círculo sutil bege com SVG bronze */
.area-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(160, 120, 50, 0.10);
    color: var(--gold);
    flex-shrink: 0;
}
.area-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.6;
}
.area-card.wide .area-icon { width: 64px; height: 64px; }
.area-card.wide .area-icon svg { width: 32px; height: 32px; }

.area-content h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.area-content p {
    font-size: 0.93rem;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 16px;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.area-tags span {
    font-size: 0.72rem;
    padding: 4px 10px;
    background: rgba(160, 120, 50, 0.07);
    border: 1px solid rgba(160, 120, 50, 0.20);
    border-radius: 20px;
    color: var(--gold-dark);
    letter-spacing: 0.02em;
    font-weight: 500;
}

.area-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.area-cta:hover { color: var(--gold); gap: 10px; }
.area-cta svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.area-cta:hover svg { transform: translateX(3px); }

/* Linha de credencial institucional (card Patrimonial) */
.area-credencial {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(160, 120, 50, 0.07);
    border-left: 2px solid var(--gold);
    border-radius: 0 6px 6px 0;
    margin-top: -4px;
}
.area-credencial svg {
    width: 18px;
    height: 18px;
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 1px;
}
.area-credencial span {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
    font-weight: 400;
}
.area-credencial strong {
    color: var(--gold-dark);
    font-weight: 600;
}

/* Bloco "Diferencial" (cards Ambiental e Agro) */
.area-diferencial {
    padding: 14px 16px;
    background: var(--surface2);
    border: 1px dashed rgba(160, 120, 50, 0.32);
    border-radius: 6px;
    margin-top: -2px;
}
.diferencial-label {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
    font-weight: 500;
}
.area-diferencial p {
    font-size: 0.85rem !important;
    color: var(--text-soft) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* === DIFERENCIAIS === */
.diferenciais {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}
.diferenciais::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.diferencial-card {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
}
.diferencial-card:hover {
    border-color: rgba(160, 120, 50, 0.30);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(28, 24, 18, 0.08);
}

.dif-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(160, 120, 50, 0.10);
    color: var(--gold);
}
.dif-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.6;
}

.diferencial-card h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.005em;
}
.diferencial-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.75;
}

/* === CONTATO === */
.contato {
    padding: 120px 0;
    background: var(--bg-2);
    position: relative;
}
.contato::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contato-desc {
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 40px;
}

.contato-canais {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.canal-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    background: var(--surface);
    transition: var(--transition);
}
.canal-card:hover {
    border-color: rgba(160, 120, 50, 0.40);
    transform: translateX(4px);
    box-shadow: 0 12px 28px rgba(28, 24, 18, 0.08);
}
.canal-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(160, 120, 50, 0.10);
    color: var(--gold);
    flex-shrink: 0;
}
.canal-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.canal-card strong { display: block; font-weight: 600; color: var(--text); font-size: 0.95rem; }
.canal-card span { font-size: 0.85rem; color: var(--text-muted); }

/* === FORM === */
.contato-form-wrap {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 18px 40px rgba(28, 24, 18, 0.06);
}
.contato-form h3 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.form-row .form-group { margin-bottom: 0; }

label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

input, select, textarea {
    width: 100%;
    background: var(--surface2);
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.94rem;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition);
    outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(74, 67, 56, 0.45); }
input:focus, select:focus, textarea:focus {
    border-color: rgba(160, 120, 50, 0.55);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(160, 120, 50, 0.10);
}
select option { background: var(--surface); color: var(--text); }
textarea { resize: vertical; min-height: 100px; }

/* === FOOTER === */
.footer {
    background: #1c1812;
    color: rgba(236, 228, 211, 0.78);
    border-top: 1px solid rgba(160, 120, 50, 0.25);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 90px;
    width: auto;
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    margin-bottom: 18px;
}
.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: rgba(236, 228, 211, 0.72);
    font-size: 1rem;
    margin-bottom: 14px;
    line-height: 1.5;
}
.footer-oab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gold-light);
    font-weight: 500;
}
.footer-oab svg { width: 16px; height: 16px; }

.footer-links h4, .footer-contato h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 500;
}
.footer-links ul, .footer-contato ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links li a,
.footer-contato li a,
.footer-contato li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(236, 228, 211, 0.65);
    transition: color 0.2s;
}
.footer-contato li svg,
.footer-contato li a svg {
    width: 15px;
    height: 15px;
    color: var(--gold-light);
    flex-shrink: 0;
    stroke-width: 1.7;
}
.footer-links li a:hover, .footer-contato li a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(160, 120, 50, 0.18);
    padding-top: 28px;
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(236, 228, 211, 0.55); margin-bottom: 8px; }
.footer-disclaimer {
    font-size: 0.72rem !important;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2.5s ease infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; color: white; }
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* === FADE-IN ANIMATION === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === GALERIA === */
.galeria {
    overflow: hidden;
    background: var(--bg);
}
.galeria-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 340px;
}
.galeria-item {
    position: relative;
    overflow: hidden;
}
.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
    filter: grayscale(15%);
}
.galeria-item:hover img {
    transform: scale(1.07);
    filter: grayscale(0%);
}
.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(5,5,5,0.6) 100%
    );
    transition: opacity 0.3s;
}
.galeria-item:hover .galeria-overlay {
    background: linear-gradient(
        to bottom,
        rgba(201,168,76,0.08) 0%,
        rgba(5,5,5,0.4) 100%
    );
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero { padding: calc(var(--header-h) + 32px) 0 100px; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: left;
    }
    .hero-portrait {
        max-width: 360px;
        margin: 0 auto;
        justify-self: center;
    }
    .hero-portrait-badge { right: -8px; }
    .hero-scroll { display: none; }

    .sobre-card { grid-template-columns: 1fr; min-height: auto; }
    .sobre-photo { height: 420px; }
    .sobre-info { padding: 48px 40px; }
    .credenciais-grid { grid-template-columns: 1fr; gap: 16px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .area-card.wide { grid-column: span 2; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .galeria-strip { grid-template-columns: repeat(2, 1fr); height: 480px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: rgba(246, 241, 231, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 40px;
        border-left: 1px solid var(--border);
        transition: right 0.3s ease;
        gap: 4px;
    }
    .nav-menu.open { right: 0; }
    .nav-link { font-size: 1.1rem; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
    .nav-cta { margin: 16px 0 0; width: 100%; text-align: center; justify-content: center; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .sobre-card { border-radius: 0; }
    .sobre-info { padding: 48px 24px; gap: 16px; }
    .sobre-photo { height: 380px; order: -1; }
    .sobre-destaques { gap: 20px; flex-wrap: wrap; }

    .sobre, .areas, .diferenciais, .contato { padding: 80px 0; }
    .sobre-grid { gap: 40px; }

    .areas-grid { grid-template-columns: 1fr; }
    .area-card.wide { grid-column: span 1; flex-direction: column; }

    .diferenciais-grid { grid-template-columns: 1fr; gap: 16px; }
    .contato-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand { grid-column: span 1; }

    .container { padding: 0 20px; }
    .section-title { font-size: 2rem; }

    /* Navbar mobile */
    .nav-logo { height: 52px; }
    .navbar.scrolled .nav-logo { height: 44px; }

    /* Hero mobile */
    .hero { min-height: auto; padding: calc(var(--header-h) + 24px) 0 64px; }
    .hero-container { gap: 40px; }
    .hero-headline { font-size: clamp(2rem, 7vw, 2.6rem); }
    .hero-subhead { font-size: 0.98rem; margin-bottom: 28px; }
    .hero-ctas { flex-direction: column; width: 100%; gap: 10px; margin-bottom: 32px; }
    .hero-ctas a { width: 100%; justify-content: center; }
    .hero-trust { gap: 16px 20px; padding-top: 20px; }
    .hero-trust li { font-size: 0.8rem; }
    .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.24em; gap: 10px; margin-bottom: 22px; }
    .hero-eyebrow-line { width: 24px; }
    .hero-portrait { max-width: 300px; }
    .hero-portrait::before, .hero-portrait::after { display: none; }
    .hero-portrait-badge { right: 50%; transform: translateX(50%); bottom: -18px; padding: 10px 18px; }
    .hero-badge-name { font-size: 0.92rem; }
}

/* Mystery Reveal Button (PRODES) */
.area-cta.hover-reveal .hover-text { display: none; }
.area-cta.hover-reveal:hover .default-text { display: none; }
.area-cta.hover-reveal:hover .hover-text { display: inline; }
.area-cta.secondary.hover-reveal {
    background: var(--gold-dark) !important;
    border-color: var(--gold-dark) !important;
    color: var(--white) !important;
}
