/*
Theme Name:  Ethos Apex Child
Description: Tema filho para Ethos Apex — Executive Mental Health
Author:      Ethos Apex
Template:    twentytwentyfour
Version:     1.0.0
*/

/* ═══════════════════════════════════════════════════
   FONTES
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════════
   VARIÁVEIS
═══════════════════════════════════════════════════ */
:root {
  --gold:        #B8922A;
  --gold-light:  #C9A040;
  --gold-pale:   #F5EDD4;
  --navy:        #0D1B2A;
  --navy-2:      #122537;
  --navy-3:      #0A1520;
  --light:       #F8F6F1;
  --light-2:     #EFECE4;
  --light-3:     #E8E3D8;
  --text:        #1A2332;
  --text-mid:    #3D4F63;
  --text-soft:   #6B7E94;
  --border:      rgba(13,27,42,0.10);
  --border-gold: rgba(184,146,42,0.20);
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--light);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ─── TIPOGRAFIA ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0;
}

.serif { font-family: 'Cormorant Garamond', serif; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════════ */
.ea-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 900px) {
  .ea-container { padding: 0 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════════════ */
.btn-primary,
a.btn-primary,
button.btn-primary {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: var(--gold);
  color: var(--light) !important;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,146,42,0.30); }

.btn-ghost-light,
a.btn-ghost-light {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  border: 1px solid rgba(248,246,241,0.30);
  color: var(--light) !important;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.70rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light) !important; }

.btn-ghost-dark,
a.btn-ghost-dark {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  border: 1px solid var(--border);
  color: var(--text-mid) !important;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.70rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold) !important; }

/* ═══════════════════════════════════════════════════
   NAVEGAÇÃO
═══════════════════════════════════════════════════ */
#ea-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  background: transparent;
}

#ea-nav.scrolled {
  background: rgba(248,246,241,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(13,27,42,0.06);
}

.ea-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--light);
  transition: color 0.3s;
}
#ea-nav.scrolled .ea-nav-logo { color: var(--text); }

.ea-nav-logo-dot { color: var(--gold); }

.ea-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}
.ea-nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(248,246,241,0.75);
  transition: color 0.3s;
}
#ea-nav.scrolled .ea-nav-links a { color: var(--text-mid); }
#ea-nav.scrolled .ea-nav-links a:hover { color: var(--gold); }

.ea-nav-cta {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(248,246,241,0.50);
  color: var(--light) !important;
  text-decoration: none;
  transition: all 0.3s;
}
.ea-nav-cta:hover { background: var(--light); color: var(--navy) !important; }
#ea-nav.scrolled .ea-nav-cta { border-color: var(--gold); color: var(--gold) !important; }
#ea-nav.scrolled .ea-nav-cta:hover { background: var(--gold); color: var(--light) !important; }

@media (max-width: 900px) {
  #ea-nav { padding: 1.2rem 1.5rem; }
  .ea-nav-links { display: none; }
}

/* ═══════════════════════════════════════════════════
   SEÇÃO — FUNDOS
═══════════════════════════════════════════════════ */
.ea-section {
  padding: 8rem 0;
}
.ea-section-sm { padding: 5rem 0; }

.bg-light  { background: var(--light);  color: var(--text); }
.bg-light-2 { background: var(--light-2); color: var(--text); }
.bg-navy   { background: var(--navy);   color: var(--light); }
.bg-navy-deep { background: var(--navy-3); color: var(--light); }

.bg-navy h1,.bg-navy h2,.bg-navy h3,.bg-navy h4,
.bg-navy-deep h1,.bg-navy-deep h2,.bg-navy-deep h3,.bg-navy-deep h4 { color: var(--light); }
.bg-navy p,.bg-navy-deep p { color: rgba(248,246,241,0.65); }
.bg-navy .eyebrow,.bg-navy-deep .eyebrow { color: var(--gold-light); }

/* ─── SECTION HEADER ──────────────────────────────── */
.ea-section-header { text-align: center; margin-bottom: 4rem; }
.ea-section-header h2 { font-size: clamp(2.2rem, 3.8vw, 3.6rem); margin: 0.75rem 0 1rem; }
.ea-section-header p  { font-size: 0.92rem; max-width: 520px; margin: 0 auto; color: var(--text-soft); }
.bg-navy .ea-section-header h2 { color: var(--light); }
.bg-navy .ea-section-header p  { color: rgba(248,246,241,0.55); }

/* ─── GOLD DIVIDER ────────────────────────────────── */
.ea-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
#ea-hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

#ea-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(184,146,42,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.ea-hero-line {
  position: absolute;
  top: 0; left: 6rem;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(184,146,42,0.15), transparent);
}

.ea-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 6rem;
  max-width: 900px;
}

.ea-hero-title {
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  color: var(--light);
  line-height: 1.0;
  margin: 0 0 1.8rem;
  font-weight: 300;
}
.ea-hero-title em { color: var(--gold-light); font-style: italic; }

.ea-hero-sub {
  font-size: 1rem;
  color: rgba(248,246,241,0.60);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.8rem;
}

.ea-hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.ea-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 6rem;
  border-top: 1px solid rgba(184,146,42,0.12);
}

.ea-hero-stat {
  padding: 2rem 3rem 2rem 0;
  flex: 1;
  border-right: 1px solid rgba(184,146,42,0.12);
}
.ea-hero-stat:last-child { border-right: none; }

.ea-hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ea-hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.35);
}

@media (max-width: 900px) {
  .ea-hero-content { padding: 0 1.5rem; }
  .ea-hero-stats { display: none; }
  .ea-hero-line { display: none; }
}

/* ═══════════════════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════════════════ */
#ea-manifesto {
  background: var(--light);
  padding: 7rem 0;
}

.ea-manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ea-manifesto-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 1.2rem auto;
}

.ea-manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 1.5rem;
}
.ea-manifesto-quote em { color: var(--navy); font-style: normal; }

.ea-manifesto-author {
  font-size: 0.70rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ═══════════════════════════════════════════════════
   DIFERENCIAL
═══════════════════════════════════════════════════ */
#ea-diferencial {
  background: var(--navy);
  padding: 8rem 0;
}

.ea-dif-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.ea-dif-left h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  color: var(--light);
  margin: 0.75rem 0 1.5rem;
}
.ea-dif-left h2 em { color: var(--gold-light); font-style: italic; }

.ea-dif-left p {
  color: rgba(248,246,241,0.55);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ea-dif-items { display: flex; flex-direction: column; gap: 0; }

.ea-dif-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(184,146,42,0.10);
  align-items: start;
}
.ea-dif-item:first-child { border-top: 1px solid rgba(184,146,42,0.10); }

.ea-dif-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  padding-top: 0.2rem;
}

.ea-dif-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--light);
  margin: 0 0 0.5rem;
}

.ea-dif-item p {
  font-size: 0.82rem;
  color: rgba(248,246,241,0.45);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .ea-dif-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ═══════════════════════════════════════════════════
   PROGRAMAS
═══════════════════════════════════════════════════ */
#ea-programas {
  background: var(--light);
  padding: 8rem 0 0;
}

.ea-prog-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.ea-prog-header h2 { font-size: clamp(2.2rem, 3.8vw, 3.6rem); color: var(--text); margin: 0.75rem 0 1rem; }
.ea-prog-header p  { color: var(--text-soft); font-size: 0.92rem; }

.ea-prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
}

.ea-prog-card {
  padding: 3rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ea-prog-card.light { background: var(--light); }
.ea-prog-card.navy  { background: var(--navy);  }
.ea-prog-card.cream { background: var(--light-2); }

.ea-prog-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.ea-prog-card.navy .ea-prog-card-label { color: var(--gold-light); }

.ea-prog-card h3 {
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0;
}
.ea-prog-card.light h3,
.ea-prog-card.cream h3 { color: var(--text); }
.ea-prog-card.navy  h3  { color: var(--light); }

.ea-prog-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}
.ea-prog-card.light p,
.ea-prog-card.cream p  { color: var(--text-soft); }
.ea-prog-card.navy  p  { color: rgba(248,246,241,0.50); }

.ea-prog-bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.ea-prog-bullets li {
  font-size: 0.82rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.ea-prog-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.ea-prog-card.light .ea-prog-bullets li,
.ea-prog-card.cream .ea-prog-bullets li { color: var(--text-soft); }
.ea-prog-card.navy  .ea-prog-bullets li { color: rgba(248,246,241,0.45); }

.ea-prog-cta {
  padding: 5rem 0;
  text-align: center;
  background: var(--light);
}
.ea-prog-cta p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 2rem; }

@media (max-width: 900px) {
  .ea-prog-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   CTA MID
═══════════════════════════════════════════════════ */
#ea-cta-mid {
  background: var(--light-2);
  padding: 8rem 0;
  text-align: center;
}

#ea-cta-mid h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--text);
  margin: 0.75rem 0 1.5rem;
}

#ea-cta-mid p {
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 2.8rem;
  font-size: 0.92rem;
}

.ea-cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════ */
#ea-blog {
  background: var(--light);
  padding: 8rem 0;
}

.ea-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.ea-blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  margin-bottom: 4rem;
}

.ea-blog-card {
  background: var(--light);
  display: flex;
  flex-direction: column;
}

.ea-blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.ea-blog-img-ph {
  aspect-ratio: 16/9;
  background: var(--light-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ea-blog-body {
  padding: 1.8rem 2rem 2rem;
  flex: 1;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.ea-blog-cat {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.ea-blog-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.ea-blog-card p {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.ea-blog-meta {
  font-size: 0.68rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

/* subscribe */
.ea-blog-subscribe {
  background: var(--navy);
  padding: 2.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ea-blog-subscribe h3 {
  font-size: 1.5rem;
  color: var(--light);
  margin: 0 0 0.5rem;
}
.ea-blog-subscribe h3 em { color: var(--gold-light); font-style: italic; }
.ea-blog-subscribe p { font-size: 0.82rem; color: rgba(248,246,241,0.45); margin: 0; }

.ea-sub-form { display: flex; gap: 0; }
.ea-sub-form input {
  padding: 0.82rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,146,42,0.25);
  border-right: none;
  color: var(--light);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  outline: none;
  min-width: 240px;
}
.ea-sub-form input::placeholder { color: rgba(248,246,241,0.30); }
.ea-sub-form input:focus { border-color: var(--gold); }
.ea-sub-form button {
  padding: 0.82rem 1.8rem;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.ea-sub-form button:hover { background: var(--gold-light); }

@media (max-width: 900px) {
  .ea-blog-grid { grid-template-columns: 1fr; }
  .ea-blog-subscribe { flex-direction: column; }
  .ea-sub-form { width: 100%; }
  .ea-sub-form input { min-width: 0; flex: 1; }
}

/* ═══════════════════════════════════════════════════
   PUBLICAÇÕES
═══════════════════════════════════════════════════ */
#ea-publicacoes {
  background: var(--navy);
  padding: 8rem 0;
}

.ea-pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.04);
}

.ea-pub-card {
  background: var(--navy-2);
  padding: 2.5rem 2.2rem 2.2rem;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.ea-pub-card:hover { background: #162d45; }

.ea-pub-type {
  font-size: 0.62rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.40);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}

.ea-pub-badge {
  background: rgba(184,146,42,0.15);
  color: var(--gold-light);
  padding: 2px 8px;
  font-size: 0.60rem;
  letter-spacing: 0.12em;
}

.ea-pub-card h3 {
  font-size: 1.05rem;
  color: var(--light);
  font-weight: 400;
  margin: 0 0 0.8rem;
  line-height: 1.35;
}

.ea-pub-card p {
  font-size: 0.80rem;
  color: rgba(248,246,241,0.45);
  line-height: 1.7;
  flex: 1;
  margin: 0 0 1.8rem;
}

.ea-pub-download {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(248,246,241,0.07);
  margin-top: auto;
  transition: color 0.3s, gap 0.3s;
}
.ea-pub-download:hover { color: var(--gold-light); gap: 1rem; }

@media (max-width: 900px) {
  .ea-pub-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   METODOLOGIA
═══════════════════════════════════════════════════ */
#ea-metodologia {
  background: var(--light-2);
  padding: 8rem 0;
}

.ea-metod-pills {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem; justify-content: center;
  margin: 3rem 0 5rem;
}

.ea-metod-pill {
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  cursor: default;
  transition: all 0.3s;
}
.ea-metod-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,146,42,0.05);
}

.ea-metod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.ea-metod-card {
  background: var(--light-2);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}
.ea-metod-card:hover { background: var(--light); }

.ea-metod-roman {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,146,42,0.18);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.ea-metod-card h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 0.7rem;
}

.ea-metod-card p {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .ea-metod-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════════════ */
#ea-sobre {
  background: var(--navy);
  padding: 8rem 0;
}

.ea-sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.ea-sobre-img-wrap {
  position: relative;
}
.ea-sobre-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  border: 1px solid rgba(184,146,42,0.20);
  z-index: 0;
}
.ea-sobre-img-wrap img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.ea-sobre-img-ph {
  width: 100%;
  min-height: 480px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(184,146,42,0.20);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: rgba(184,146,42,0.50);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}

.ea-sobre-content h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  color: var(--light);
  margin: 0.75rem 0 1.5rem;
}

.ea-sobre-content p {
  color: rgba(248,246,241,0.55);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.ea-sobre-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}

.ea-pillar {
  padding: 1.2rem 1rem 1.2rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(184,146,42,0.05);
}
.ea-pillar h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--light);
  margin: 0 0 0.3rem;
}
.ea-pillar p {
  font-size: 0.73rem;
  color: rgba(248,246,241,0.40);
  margin: 0;
}

@media (max-width: 900px) {
  .ea-sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ea-sobre-pillars { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   CONTATO
═══════════════════════════════════════════════════ */
#ea-contato {
  background: var(--light);
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#ea-contato::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(184,146,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.ea-contato-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.ea-contato-inner h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--text);
  margin: 1.2rem 0;
  line-height: 1.15;
}
.ea-contato-inner h2 em { color: var(--gold); font-style: italic; }

.ea-contato-inner > p {
  color: var(--text-soft);
  margin-bottom: 3rem;
  font-size: 0.92rem;
}

/* FORMULÁRIO — compatível com CF7 e WPForms */
.ea-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.ea-form .ea-field { display: flex; flex-direction: column; gap: 0.35rem; }
.ea-form .ea-field.full { grid-column: 1 / -1; }

.ea-form label,
.ea-form .ea-label {
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-family: 'Jost', sans-serif;
}

.ea-form input[type="text"],
.ea-form input[type="email"],
.ea-form input[type="tel"],
.ea-form select,
.ea-form textarea,
/* CF7 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea,
/* WPForms */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form select,
.wpforms-form textarea {
  background: var(--light-2);
  border: 1px solid var(--border);
  padding: 0.82rem 1rem;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.84rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
}

.ea-form input:focus,
.ea-form select:focus,
.ea-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpforms-form input:focus,
.wpforms-form textarea:focus {
  border-color: var(--gold);
  background: var(--light);
}

.ea-form textarea,
.wpcf7-form textarea,
.wpforms-form textarea {
  resize: vertical;
  min-height: 90px;
}

.ea-form-privacy {
  font-size: 0.66rem;
  color: var(--text-soft);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .ea-form { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#ea-footer {
  background: var(--navy);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(184,146,42,0.12);
}

.ea-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.ea-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--light);
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.ea-footer-brand p {
  font-size: 0.78rem;
  color: rgba(248,246,241,0.38);
  line-height: 1.7;
  max-width: 270px;
}

.ea-footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.4rem;
}

.ea-footer-col ul { list-style: none; margin: 0; padding: 0; }
.ea-footer-col ul li { margin-bottom: 0.7rem; }
.ea-footer-col ul li a {
  font-size: 0.78rem;
  color: rgba(248,246,241,0.38);
  text-decoration: none;
  transition: color 0.3s;
}
.ea-footer-col ul li a:hover { color: var(--gold-light); }

.ea-footer-bottom {
  border-top: 1px solid rgba(248,246,241,0.06);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.ea-footer-bottom p, .ea-footer-bottom a {
  font-size: 0.70rem;
  color: rgba(248,246,241,0.28);
  text-decoration: none;
  transition: color 0.3s;
}
.ea-footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .ea-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════
   ANIMAÇÕES
═══════════════════════════════════════════════════ */
.ea-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ea-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   WORDPRESS — RESET DE ESTILOS PADRÃO
═══════════════════════════════════════════════════ */
.wp-site-blocks { padding: 0 !important; }
.wp-block-group { padding: 0 !important; }
header.wp-block-template-part { display: none; }
footer.wp-block-template-part { display: none; }
.wp-block-post-content { margin: 0 !important; }
.entry-content { margin: 0 !important; padding: 0 !important; }
