/* ============================================
   CABRAL & VALENTIM — MAIN STYLESHEET
   ============================================ */

/* --- CSS Variables --- */
:root {
    --blue: #093759;
    --blue-dark: #062744;
    --blue-light: #0c4a78;
    --blue-muted: #1a5a8a;
    --orange: #FF7F00;
    --orange-hover: #e67200;
    --orange-light: #ff9933;
    --orange-subtle: rgba(255, 127, 0, 0.08);
    --black: #000000;
    --gray-dark: #555555;
    --gray-mid: #888888;
    --gray-light: #c4c4c4;
    --gray-border: #e2e2e2;
    --gray-bg: #f7f7f8;
    --white: #ffffff;
    --off-white: #fafafa;

    --font-display: 'Oscine', 'Segoe UI', 'Segoe UI Semibold', sans-serif;
    --font-body: 'Segoe UI', 'Segoe UI Regular', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-bold: 'Segoe UI Semibold', 'Segoe UI Bold', 'Segoe UI', sans-serif;

    --header-h: 80px;
    --section-py: clamp(80px, 10vw, 140px);
    --container-max: 1200px;
    --container-narrow: 860px;
    --container-px: clamp(20px, 5vw, 60px);

    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s var(--ease-out);
}

a:hover {
    color: var(--orange-hover);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--blue);
}

strong, b, .font-bold {
    font-family: var(--font-bold);
    font-weight: 600;
}

::selection {
    background: var(--blue);
    color: var(--white);
}

/* --- Utility --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
    height: 68px;
    border-bottom-color: var(--gray-border);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.site-header.header-dark {
    background: var(--blue);
}

.site-header.header-dark .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.site-header.header-dark .nav-link:hover,
.site-header.header-dark .nav-link.active {
    color: var(--white);
}

.site-header.header-dark .logo-dark { display: none; }
.site-header.header-dark .logo-light { display: block; }

.site-header.header-dark.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--gray-border);
}

.site-header.header-dark.scrolled .nav-link {
    color: var(--gray-dark);
}

.site-header.header-dark.scrolled .nav-link:hover,
.site-header.header-dark.scrolled .nav-link.active {
    color: var(--blue);
}

.site-header.header-dark.scrolled .logo-dark { display: block; }
.site-header.header-dark.scrolled .logo-light { display: none; }

.site-header.header-dark.scrolled .menu-bar {
    background: var(--blue);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 64px;
    width: auto;
    transition: height 0.4s var(--ease-out);
}

.scrolled .logo-img {
    height: 64px;
}

.logo-light {
    display: none;
}

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray-dark);
    position: relative;
    transition: color 0.3s var(--ease-out);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link--cta {
    background: var(--orange);
    color: var(--white) !important;
    border-radius: 4px;
    margin-left: 10px;
    transition: background 0.3s var(--ease-out), transform 0.2s;
}

.nav-link--cta:hover {
    background: var(--orange-hover);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-link--cta::after {
    display: none;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.menu-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
}

.menu-toggle.open .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .menu-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-list {
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s;
}

.mobile-nav-overlay.open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.open .mobile-nav-list li:nth-child(1) .mobile-nav-link { transition-delay: 0.05s; }
.mobile-nav-overlay.open .mobile-nav-list li:nth-child(2) .mobile-nav-link { transition-delay: 0.1s; }
.mobile-nav-overlay.open .mobile-nav-list li:nth-child(3) .mobile-nav-link { transition-delay: 0.15s; }
.mobile-nav-overlay.open .mobile-nav-list li:nth-child(4) .mobile-nav-link { transition-delay: 0.2s; }
.mobile-nav-overlay.open .mobile-nav-list li:nth-child(5) .mobile-nav-link { transition-delay: 0.25s; }
.mobile-nav-overlay.open .mobile-nav-list li:nth-child(6) .mobile-nav-link { transition-delay: 0.3s; }
.mobile-nav-overlay.open .mobile-nav-list li:nth-child(7) .mobile-nav-link { transition-delay: 0.35s; }

.mobile-nav-link:hover {
    color: var(--orange);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--blue);
    color: var(--white);
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 127, 0, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--orange);
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.7s forwards;
}

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

/* Geometric accent */
.hero-accent {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 127, 0, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-accent::before {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.hero-accent::after {
    content: '';
    position: absolute;
    inset: 140px;
    border: 1px solid rgba(255, 127, 0, 0.05);
    border-radius: 50%;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    text-decoration: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 127, 0, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--blue);
    border: 1px solid var(--blue);
}

.btn-outline-dark:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-arrow::after {
    content: '\2192';
    transition: transform 0.3s var(--ease-out);
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-py) 0;
}

.section--blue {
    background: var(--blue);
    color: var(--white);
}

.section--blue h2,
.section--blue h3,
.section--blue h4 {
    color: var(--white);
}

.section--gray {
    background: var(--gray-bg);
}

.section--off-white {
    background: var(--off-white);
}

/* Section Header */
.section-header {
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--orange);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--gray-dark);
    line-height: 1.8;
    max-width: 650px;
}

.section--blue .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

/* Divider line */
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--orange);
    margin: 28px 0;
}

/* ============================================
   HOME — TESE BLOCK
   ============================================ */
.tese-block {
    position: relative;
}

.tese-block .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.tese-lead {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--blue);
}

.tese-body p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 20px;
}

.tese-body p:last-child {
    margin-bottom: 0;
}

.tese-highlight {
    font-weight: 600;
    color: var(--black);
}

/* ============================================
   HOME — COMO ATUAMOS
   ============================================ */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    padding: 48px 36px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.pillar-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(9, 55, 89, 0.08);
}

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

.pillar-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--orange);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ============================================
   HOME — DIFERENCIAL
   ============================================ */
.diferencial-block {
    position: relative;
    overflow: hidden;
}

.diferencial-block::before {
    content: '';
    position: absolute;
    right: -200px;
    top: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255, 127, 0, 0.06);
    pointer-events: none;
}

.diferencial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diferencial-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.diferencial-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.diferencial-text p:last-of-type {
    margin-bottom: 0;
}

.diferencial-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dif-stat {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    border-left: 3px solid var(--orange);
}

.dif-stat h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.dif-stat p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ============================================
   HOME — ATUAÇÃO CARDS
   ============================================ */
.atuacao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.atuacao-card {
    padding: 48px 36px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.atuacao-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(9, 55, 89, 0.08);
    border-color: transparent;
}

.atuacao-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.atuacao-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ============================================
   HOME — PROVA
   ============================================ */
.prova-block .container {
    display: grid;
    grid-template-columns: 3px 1fr;
    gap: 40px;
}

.prova-line {
    background: var(--orange);
    border-radius: 2px;
}

.prova-content p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.prova-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   NÚMEROS — PROVA INSTITUCIONAL
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stats-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.stat-item {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-left: 3px solid var(--orange);
    border-radius: 4px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 2.9rem);
    font-weight: 600;
    color: var(--blue);
    line-height: 1.1;
    margin-bottom: 12px;
}

.stat-value .stat-unit {
    font-size: 0.45em;
    font-weight: 600;
    color: var(--blue-light);
    margin-left: 4px;
}

.stat-label {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.65;
}

.stat-note {
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--gray-mid);
}

.section--blue .stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: var(--orange);
}

.section--blue .stat-value {
    color: var(--white);
}

.section--blue .stat-value .stat-unit {
    color: rgba(255, 255, 255, 0.65);
}

.section--blue .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.section--blue .stat-note {
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   PERFIL — LINKS EXTERNOS
   ============================================ */
.perfil-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.perfil-links a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.perfil-links a:hover {
    border-color: var(--orange);
    color: var(--orange-hover);
}

/* ============================================
   HOME — SÓCIOS
   ============================================ */
.socios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.socio-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: start;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    transition: all 0.4s var(--ease-out);
}

.socio-card:hover {
    border-color: var(--orange);
    box-shadow: 0 16px 48px rgba(9, 55, 89, 0.06);
}

.socio-photo {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 3px;
    filter: grayscale(20%);
    transition: filter 0.4s;
}

.socio-card:hover .socio-photo {
    filter: grayscale(0);
}

.socio-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.socio-role {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.socio-desc {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.socio-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.socio-link::after {
    content: '\2192';
    transition: transform 0.3s var(--ease-out);
}

.socio-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    padding: var(--section-py) 0;
    background: var(--blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 127, 0, 0.04), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 16px;
}

.cta-section .cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* ============================================
   PAGE HERO (Internal pages)
   ============================================ */
.page-hero {
    padding: calc(var(--header-h) + 80px) 0 80px;
    background: var(--blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.2;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    line-height: 1.8;
}

/* ============================================
   ESCRITÓRIO PAGE
   ============================================ */
.manifesto-block {
    border-left: 3px solid var(--orange);
    padding-left: 40px;
    margin: 48px 0;
}

.manifesto-block p {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.manifesto-block p:last-child { margin-bottom: 0; }

.eixo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 48px;
}

.eixo-card {
    padding: 40px 32px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    background: var(--white);
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.eixo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--orange);
    transition: height 0.4s var(--ease-out);
    border-radius: 2px;
}

.eixo-card:hover::before {
    height: 100%;
}

.eixo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(9, 55, 89, 0.06);
}

.eixo-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.eixo-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

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

.estrutura-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.estrutura-item::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 2px;
    background: var(--orange);
    margin-top: 12px;
}

.diferencial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 48px;
}

.diferencial-card {
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s var(--ease-out);
}

.diferencial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--orange);
}

.diferencial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.diferencial-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

/* ============================================
   ATUAÇÃO PAGE
   ============================================ */
.atuacao-area {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--gray-border);
}

.atuacao-area:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.atuacao-area-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.atuacao-area h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.atuacao-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.atuacao-area .vision-text {
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.como-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.como-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.como-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 2px;
    background: var(--orange);
    margin-top: 12px;
}

.atuacao-diferencial {
    margin-top: 32px;
    padding: 32px;
    background: var(--orange-subtle);
    border-left: 3px solid var(--orange);
    border-radius: 0 4px 4px 0;
}

.atuacao-diferencial h4 {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.atuacao-diferencial p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

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

.transversal-card {
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
}

.transversal-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.transversal-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ============================================
   SETORES PAGE
   ============================================ */
.setor-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-border);
}

.setor-card:last-child {
    border-bottom: none;
}

.setor-card h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 20px;
}

.setor-card p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.setor-card p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PROFISSIONAIS PAGE
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s var(--ease-out);
}

.team-card:hover .team-photo {
    filter: grayscale(0);
    transform: scale(1.04);
}

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--orange);
}

.team-card a {
    color: inherit;
}

.team-card a:hover h3 {
    color: var(--orange);
}

/* Sócios have larger cards */
.team-grid--socios {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.team-grid--socios .team-photo-wrap {
    aspect-ratio: 4/5;
}

.team-grid--socios .team-card h3 {
    font-size: 1.5rem;
}

/* ============================================
   PERFIL PAGE (Individual)
   ============================================ */
.perfil-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.perfil-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
}

.perfil-name {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 8px;
}

.perfil-role {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 28px;
}

.perfil-headline {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-left: 24px;
    border-left: 2px solid var(--orange);
}

.perfil-section {
    margin-top: 48px;
}

.perfil-section h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.perfil-section p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.perfil-areas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.perfil-areas li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.perfil-areas li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 2px;
    background: var(--orange);
    margin-top: 12px;
}

.formacao-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.formacao-list li {
    font-size: 0.95rem;
    color: var(--gray-dark);
    padding-left: 20px;
    position: relative;
}

.formacao-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border: 1px solid var(--orange);
    border-radius: 50%;
}

/* ============================================
   CONTEÚDO PAGE
   ============================================ */

/* Search bar */
.conteudo-search {
    margin-bottom: 40px;
}

.conteudo-search__title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 24px;
}

.conteudo-cursor {
    animation: blink 1s step-end infinite;
    color: var(--orange);
}

@keyframes blink { 50% { opacity: 0; } }

.conteudo-search__form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.conteudo-search__form:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.08);
}

.conteudo-search__input {
    flex: 1;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    outline: none;
    background: transparent;
    color: var(--black);
}

.conteudo-search__input::placeholder {
    color: var(--gray-mid);
}

.conteudo-search__btn {
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--gray-mid);
    cursor: pointer;
    transition: color 0.2s;
}

.conteudo-search__btn:hover {
    color: var(--orange);
}

/* Tags filter */
.conteudo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.conteudo-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    color: var(--gray-dark);
    background: var(--white);
    transition: all 0.2s;
    text-decoration: none;
}

.conteudo-tag:hover,
.conteudo-tag--active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* Cards grid */
.conteudo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.conteudo-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.conteudo-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.conteudo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(9, 55, 89, 0.08);
    border-color: transparent;
}

.conteudo-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.conteudo-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-bg);
}

.conteudo-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

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

.conteudo-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: rgba(255,255,255,0.15);
    font-size: 2rem;
    font-weight: 700;
}

.conteudo-card__body {
    padding: 20px 20px 12px;
    flex: 1;
}

.conteudo-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.conteudo-card__sub {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.conteudo-card__footer {
    padding: 12px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.conteudo-card__tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.conteudo-card__tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.68rem;
    font-weight: 600;
    background: var(--orange-subtle);
    color: var(--orange);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.conteudo-card__date {
    font-size: 0.78rem;
    color: var(--gray-mid);
    white-space: nowrap;
}

/* Article detail */
.artigo-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-border);
    font-size: 0.88rem;
    color: var(--gray-dark);
}

.artigo-tags {
    display: flex;
    gap: 6px;
}

.artigo-img {
    margin-bottom: 40px;
    border-radius: 6px;
    overflow: hidden;
}

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

.artigo-corpo {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-dark);
}

.artigo-corpo h2, .artigo-corpo h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.artigo-corpo p {
    margin-bottom: 16px;
}

.artigo-corpo ul, .artigo-corpo ol {
    margin-bottom: 16px;
    padding-left: 24px;
    list-style: disc;
}

.artigo-corpo li {
    margin-bottom: 6px;
}

.artigo-corpo blockquote {
    border-left: 3px solid var(--orange);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--orange-subtle);
    font-style: italic;
}

.artigo-voltar {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-border);
}

/* Empty state */
.conteudo-empty {
    text-align: center;
    padding: 80px 0;
}

.conteudo-empty h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.conteudo-empty p {
    font-size: 1.05rem;
    color: var(--gray-dark);
}

/* ============================================
   HERO VIDEO BACKGROUND
   ============================================ */
.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}

.hero-video picture {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    transition: opacity 0.8s ease;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 28px var(--container-px);
    display: flex;
    align-items: center;
    gap: 32px;
}

.cookie-banner__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 127, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner__icon svg {
    width: 22px;
    height: 22px;
    color: var(--orange);
}

.cookie-banner__text {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.7;
}

.cookie-banner__text a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-btn--accept {
    background: var(--orange);
    color: var(--white);
}

.cookie-btn--accept:hover {
    background: var(--orange-hover);
}

.cookie-btn--policy {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn--policy:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

/* Painel de preferências por categoria */
.cookie-prefs {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-prefs__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px var(--container-px) 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-prefs__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-prefs__label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookie-prefs__label strong {
    color: var(--white);
    font-size: 0.9rem;
}

.cookie-prefs__label span {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.cookie-prefs__actions {
    display: flex;
    justify-content: flex-end;
}

/* Switch */
.cookie-switch {
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.cookie-switch__track {
    display: block;
    width: 46px;
    height: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.25s var(--ease-out);
}

.cookie-switch__track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    transition: transform 0.25s var(--ease-out);
}

.cookie-switch input:checked + .cookie-switch__track {
    background: var(--orange);
}

.cookie-switch input:checked + .cookie-switch__track::after {
    transform: translateX(22px);
}

.cookie-switch input:focus-visible + .cookie-switch__track {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.cookie-switch--locked {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-switch--locked input {
    cursor: not-allowed;
}

/* Botão-link do footer (Preferências de cookies) */
.footer-link-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.footer-link-btn:hover {
    color: var(--orange);
}

/* ============================================
   CONTATO PAGE
   ============================================ */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contato-form-group {
    margin-bottom: 24px;
}

.contato-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.contato-form-group input,
.contato-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 3px;
    outline: none;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.contato-form-group input:focus,
.contato-form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.08);
}

.contato-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contato-enderecos h3 {
    font-size: 1.3rem;
    margin-bottom: 32px;
}

.endereco-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
}

.endereco-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.endereco-city {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.endereco-item address {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.endereco-phone {
    margin-top: 8px;
}

.endereco-phone a {
    font-weight: 600;
    color: var(--blue);
}

.form-success {
    padding: 24px;
    background: rgba(0, 180, 80, 0.08);
    border: 1px solid rgba(0, 180, 80, 0.2);
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: #0a6e2a;
}

/* --- Newsletter (Brevo) --- */
.newsletter-section {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: clamp(64px, 8vw, 100px) 0;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 440px;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    align-items: end;
}

.newsletter-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.newsletter-group input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    background: var(--white);
    border: 1px solid transparent;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.newsletter-group input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.25);
}

.newsletter-fields .btn {
    justify-self: start;
}

.newsletter-consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 20px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.newsletter-consent input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--orange);
}

.newsletter-consent a {
    color: var(--orange-light);
    text-decoration: underline;
}

.newsletter-feedback {
    padding: 20px 24px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.newsletter-feedback--ok {
    background: rgba(0, 180, 80, 0.15);
    border: 1px solid rgba(0, 220, 110, 0.35);
    color: #b8f5cf;
}

.newsletter-feedback--erro {
    background: rgba(220, 60, 60, 0.15);
    border: 1px solid rgba(255, 110, 110, 0.35);
    color: #ffc9c9;
    margin-bottom: 20px;
}

.newsletter-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 560px) {
    .newsletter-fields {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-links li:not(:has(a)) {
    font-size: 0.88rem;
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-legal {
    font-size: 0.78rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease-out);
}
.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .pillar-grid,
    .atuacao-grid,
    .eixo-grid,
    .transversal-grid,
    .stats-grid,
    .stats-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .conteudo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .socios-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .diferencial-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 68px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .site-header.header-dark .menu-bar {
        background: var(--white);
    }

    .tese-block .container,
    .atuacao-area-header,
    .contato-grid,
    .setor-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pillar-grid,
    .atuacao-grid,
    .eixo-grid,
    .diferencial-grid,
    .transversal-grid {
        grid-template-columns: 1fr;
    }

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

    .team-grid--socios {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .socio-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socio-photo {
        width: 180px;
        height: 220px;
        margin: 0 auto;
    }

    .perfil-header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .perfil-photo {
        max-width: 280px;
    }

    .prova-block .container {
        grid-template-columns: 3px 1fr;
        gap: 24px;
    }

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

    .stat-item {
        padding: 32px 24px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-accent {
        width: 300px;
        height: 300px;
        right: -15%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .conteudo-grid,
    .conteudo-grid--3 {
        grid-template-columns: 1fr;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
    }

    .cookie-banner__icon { display: none; }

    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn { width: 100%; text-align: center; }

    .cookie-banner {
        max-height: 100vh;
        overflow-y: auto;
    }

    .cookie-prefs__inner {
        padding: 16px 20px 24px;
    }

    .cookie-prefs__item {
        gap: 16px;
        text-align: left;
    }

    .cookie-prefs__actions {
        justify-content: stretch;
    }

    .cookie-prefs__actions .cookie-btn { width: 100%; }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stats-grid,
    .stats-grid--3 {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .manifesto-block {
        padding-left: 24px;
    }
}

/* ============================================
   HERO WITH BACKGROUND IMAGE
   ============================================ */
.hero {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-content {
    z-index: 2;
}

/* ============================================
   IMAGE BLOCKS — SECTIONS WITH PHOTOS
   ============================================ */

/* --- Full-width image banner --- */
.img-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.img-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.img-banner--short img {
    height: 300px;
}

.img-banner--tall img {
    height: 540px;
}

/* Banner with background image + blue overlay (like CTA style) */
.img-banner--overlay {
    position: relative;
    height: 280px;
    background: var(--blue);
    overflow: hidden;
}
.img-banner--overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.img-banner--overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 55, 89, 0.6) 0%, rgba(6, 39, 68, 0.3) 100%);
    pointer-events: none;
}

/* --- Image + Text split layout --- */
.split-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 500px;
}

.split-img--reverse {
    direction: rtl;
}

.split-img--reverse > * {
    direction: ltr;
}

.split-img__media {
    overflow: hidden;
    position: relative;
}

.split-img__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-img__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px);
}

.split-img__content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 20px;
}

.split-img__content p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.split-img--blue .split-img__content {
    background: var(--blue);
    color: var(--white);
}

.split-img--blue .split-img__content h2 {
    color: var(--white);
}

.split-img--blue .split-img__content p {
    color: rgba(255, 255, 255, 0.7);
}

.split-img--gray .split-img__content {
    background: var(--gray-bg);
}

/* --- Inline image with text wrap --- */
.inline-img {
    border-radius: 4px;
    overflow: hidden;
    margin: 32px 0;
}

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

.inline-img--float-right {
    float: right;
    width: 45%;
    margin: 0 0 24px 40px;
    border-radius: 4px;
    overflow: hidden;
}

.inline-img--float-left {
    float: left;
    width: 45%;
    margin: 0 40px 24px 0;
    border-radius: 4px;
    overflow: hidden;
}

/* --- Image gallery grid --- */
.img-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 48px 0;
}

.img-gallery__item {
    overflow: hidden;
    border-radius: 3px;
    aspect-ratio: 4/3;
}

.img-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

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

/* --- Image with overlay text --- */
.img-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-overlay__text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(9, 55, 89, 0.9));
    color: var(--white);
}

.img-overlay__text h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.img-overlay__text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* --- CTA with background image --- */
.cta-section--img {
    position: relative;
    overflow: hidden;
}

.cta-section--img .cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-section--img .cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.cta-section--img .container {
    position: relative;
    z-index: 2;
}

/* --- Page hero with background image --- */
.page-hero--img {
    position: relative;
    padding: calc(var(--header-h) + 100px) 0 100px;
    min-height: 400px;
}

.page-hero--img .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero--img .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.page-hero--img .container {
    position: relative;
    z-index: 2;
}

/* --- Setor cards with images --- */
.setor-visual {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16/10;
}

.setor-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: all 0.5s var(--ease-out);
}

.setor-card:hover .setor-visual img {
    filter: grayscale(0);
    transform: scale(1.03);
}

/* --- Contato map area --- */
.contato-map {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 32px;
    border: 1px solid var(--gray-border);
}

.contato-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   IMAGE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .split-img {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-img--reverse {
        direction: ltr;
    }

    .split-img__media {
        height: 300px;
    }

    .img-banner img {
        height: 260px;
    }

    .img-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .inline-img--float-right,
    .inline-img--float-left {
        float: none;
        width: 100%;
        margin: 24px 0;
    }
}

@media (max-width: 480px) {
    .img-gallery {
        grid-template-columns: 1fr;
    }

    .split-img__media {
        height: 220px;
    }

    .img-banner img {
        height: 200px;
    }
}

/* ============================================
   NAV DROPDOWN (Atuação → Especialidades)
   ============================================ */
.nav-item--dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 320px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-top: 3px solid var(--orange);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 16px 48px rgba(9, 55, 89, 0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s var(--ease-out);
    z-index: 200;
    list-style: none;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue);
    transition: all 0.25s var(--ease-out);
}

.nav-dropdown li a:hover {
    background: var(--orange-subtle);
    color: var(--orange);
    padding-left: 30px;
}

.nav-dropdown li a span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-mid);
    margin-top: 2px;
}

.nav-dropdown__all {
    border-top: 1px solid var(--gray-border);
    margin-top: 8px;
    padding-top: 8px;
}

.nav-dropdown__all a {
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-mid) !important;
}

.mobile-nav-sublink {
    display: block;
    padding: 8px 0 8px 24px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    border-left: 2px solid rgba(255, 127, 0, 0.4);
    margin-left: 4px;
}

.mobile-nav-sublink:hover {
    color: var(--orange);
}

/* ============================================
   PÁGINAS-PILAR (Especialidades)
   ============================================ */
.publico-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.publico-card {
    padding: 36px 28px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    background: var(--white);
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.publico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--orange);
    transition: height 0.4s var(--ease-out);
    border-radius: 2px;
}

.publico-card:hover::before {
    height: 100%;
}

.publico-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(9, 55, 89, 0.06);
}

.publico-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.publico-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.75;
}

.servico-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 48px;
}

.servico-card {
    padding: 40px 36px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
}

.servico-card:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(9, 55, 89, 0.06);
}

.servico-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.servico-card > p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.norma-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.norma-item {
    padding: 28px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s var(--ease-out);
}

.norma-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--orange);
}

.norma-item h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 8px;
}

.norma-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

.faq-list {
    max-width: var(--container-narrow);
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    background: var(--white);
    transition: border-color 0.3s var(--ease-out);
}

.faq-item[open] {
    border-color: var(--orange);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue);
    list-style: none;
    transition: color 0.3s var(--ease-out);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--orange);
    line-height: 1;
    transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--orange);
}

.faq-item .faq-answer {
    padding: 0 28px 24px;
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.85;
}

.faq-item .faq-answer p + p {
    margin-top: 12px;
}

.pilar-rel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 48px;
}

.pilar-rel-card {
    display: block;
    padding: 40px 36px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
}

.pilar-rel-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(9, 55, 89, 0.08);
}

.pilar-rel-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.pilar-rel-card p {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.pilar-rel-card .pilar-rel-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
}

/* Responsivo — páginas-pilar */
@media (max-width: 1024px) {
    .publico-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .publico-grid,
    .servico-grid,
    .norma-grid,
    .pilar-rel-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PÁGINAS DE ERRO (404 / 410)
   ============================================ */
.error-page {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.error-page .error-code {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-medium, #888);
    margin-bottom: 16px;
}

.error-page p {
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 24px;
}

.error-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.error-links li {
    margin-bottom: 12px;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .site-header,
    .menu-toggle,
    .mobile-nav-overlay,
    .cta-section {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* ============================================
   LANDING PAGES (Etapa 8) — /lp/*
   ============================================ */
.lp-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(6, 39, 68, 0.85), rgba(6, 39, 68, 0));
}

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

.lp-header .logo-img {
    height: 42px;
    width: auto;
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lp-header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.lp-header-phone:hover {
    color: var(--orange-light);
}

.lp-header-phone svg {
    width: 18px;
    height: 18px;
}

.lp-header-cta {
    padding: 12px 24px;
    font-size: 0.78rem;
}

/* --- Hero --- */
.lp-hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    color: var(--white);
    padding: clamp(140px, 18vw, 200px) 0 clamp(72px, 9vw, 120px);
    overflow: hidden;
}

.lp-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-hero--img::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, rgba(6, 39, 68, 0.93) 0%, rgba(9, 55, 89, 0.85) 55%, rgba(9, 55, 89, 0.6) 100%);
}

.lp-hero .container {
    position: relative;
    z-index: 2;
}

.lp-hero-content {
    max-width: 760px;
}

.lp-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    margin: 16px 0 20px;
}

.lp-hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin-bottom: 28px;
}

.lp-hero-points {
    margin-bottom: 36px;
    display: grid;
    gap: 10px;
}

.lp-hero-points li {
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
}

.lp-hero-points li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 700;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* --- Quem conduz: grid de 2 colunas --- */
.publico-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

/* --- Como funciona (passos) --- */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-step {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    padding: 36px 30px;
}

.lp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-subtle);
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.lp-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.lp-step p {
    font-size: 0.95rem;
    color: var(--gray-dark);
}

/* --- Formulário --- */
.lp-form-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%);
    padding: var(--section-py) 0;
}

.lp-form-card {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 6px;
    padding: clamp(32px, 5vw, 56px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.lp-form-head h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin: 12px 0 10px;
}

.lp-form-head p {
    color: var(--gray-dark);
    margin-bottom: 28px;
}

.lp-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.lp-form-fields .contato-form-group:first-child {
    grid-column: 1 / -1;
}

.lp-form-consent {
    margin-top: 4px;
    color: var(--gray-dark);
}

.lp-form-consent a {
    color: var(--orange);
}

.lp-form-turnstile {
    margin-top: 20px;
}

.lp-form-submit {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

.lp-form-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray-mid);
    text-align: center;
}

.lp-form-card .newsletter-feedback--erro {
    background: #fdecec;
    border-color: #f0b9b9;
    color: #9c2f2f;
    margin-bottom: 24px;
}

.lp-form-card .newsletter-feedback--erro a {
    color: #9c2f2f;
    text-decoration: underline;
}

/* --- CTA final --- */
.lp-final-cta {
    background: var(--blue-dark);
    padding: clamp(64px, 8vw, 100px) 0;
    text-align: center;
}

.lp-final-cta h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    max-width: 760px;
    margin: 0 auto 32px;
}

/* --- Thank-you --- */
.lp-hero--obrigado {
    min-height: 62vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.lp-obrigado {
    max-width: 680px;
    margin: 0 auto;
}

.lp-obrigado-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: var(--orange);
}

.lp-obrigado-icon svg {
    width: 100%;
    height: 100%;
}

.lp-obrigado h1 {
    color: var(--white);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    margin: 14px 0 18px;
}

.lp-obrigado-sub {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.lp-obrigado-sub a {
    color: var(--orange-light);
    font-weight: 600;
}

.lp-obrigado-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

/* --- Footer mínimo --- */
.lp-footer {
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: clamp(48px, 6vw, 72px) 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.lp-footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.lp-footer-logo {
    height: 48px;
    width: auto;
}

.lp-footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.lp-footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.lp-footer-contact a:hover {
    color: var(--orange-light);
}

.lp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.lp-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.lp-footer-links a:hover {
    color: var(--orange-light);
}

.lp-footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Responsivo LPs --- */
@media (max-width: 900px) {
    .lp-steps {
        grid-template-columns: 1fr;
    }

    .publico-grid--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lp-header-phone span {
        display: none;
    }

    .lp-form-fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .lp-header-cta {
        display: none;
    }

    .lp-hero-actions .btn,
    .lp-obrigado-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
