/* ================================================
   APICE — Design System Premium
   Verde Esmeralda #043927 | Ouro Champagne #C5A059 | Pérola #F5F5F0
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────── */
:root {
  --emerald:        #043927;
  --emerald-mid:    #062e1e;
  --emerald-dark:   #021a11;
  --emerald-light:  #0a5c3a;
  --gold:           #C5A059;
  --gold-light:     #d4b575;
  --gold-pale:      #e8d4a8;
  --gold-dim:       #9a7a3f;
  --pearl:          #F5F5F0;
  --pearl-warm:     #eeede8;
  --white:          #ffffff;
  --text-dark:      #0f1e16;
  --text-muted:     #6b7c72;
  --text-on-dark:   rgba(245,245,240,0.85);

  --font-title:  'Outfit', sans-serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-gold: 0 8px 40px rgba(197,160,89,0.18);
  --shadow-deep: 0 24px 80px rgba(2,26,17,0.55);
  --shadow-card: 0 4px 32px rgba(4,57,39,0.12);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;

  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--emerald-dark);
  color: var(--pearl);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scroll-bar ────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--emerald-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 99px; }

/* ── Container ─────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ── Typography Helpers ────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--pearl);
}
.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-on-dark);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Gold Divider ──────────────────────────────── */
.gold-line {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 99px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--emerald-dark);
  box-shadow: 0 4px 28px rgba(197,160,89,0.40);
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(197,160,89,0.55);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid rgba(197,160,89,0.55);
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(197,160,89,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn svg { flex-shrink: 0; }

/* ── Scroll Reveal ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
#header.scrolled {
  padding: 12px 0;
  background: rgba(4,57,39,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(197,160,89,0.15);
  box-shadow: 0 8px 32px rgba(2,26,17,0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
#header.scrolled .nav-logo img { height: 40px; }

.footer-logo img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245,245,240,0.75);
  position: relative;
  transition: var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}
.nav-links a:hover { color: var(--pearl); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--pearl);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,26,17,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pearl);
  transition: var(--transition-fast);
}
.mobile-nav a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 60% 40%, #062e1e 0%, var(--emerald-dark) 65%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* geometric accent lines */
#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.08);
  pointer-events: none;
  z-index: 1;
}
#hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.12);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197,160,89,0.1);
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: 99px;
  padding: 8px 18px;
  margin-bottom: 28px;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--pearl);
  margin-bottom: 24px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-break { display: block; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-on-dark);
  line-height: 1.85;
  margin-bottom: 42px;
  max-width: 540px;
}

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

.hero-metrics {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(197,160,89,0.15);
}
.metric-item {}
.metric-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.metric-label {
  font-size: 0.8rem;
  color: var(--text-on-dark);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,160,89,0.18);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(197,160,89,0.08);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,0.5), transparent);
}
.hero-card-tag {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-card-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: 28px;
  line-height: 1.3;
}
.hero-card-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-pillar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-pillar-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(197,160,89,0.12);
  border: 1px solid rgba(197,160,89,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.hero-pillar-text {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  font-weight: 500;
}
.hero-pillar-text strong {
  display: block;
  color: var(--pearl);
  font-size: 0.95rem;
}
.hero-card-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(197,160,89,0.08);
  border: 1px solid rgba(197,160,89,0.18);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-on-dark);
}
.hero-card-badge svg { color: var(--gold); flex-shrink: 0; }

/* Floating decorative rings behind card */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.06);
  pointer-events: none;
}
.ring-1 { width: 480px; height: 480px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ring-2 { width: 340px; height: 340px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* ══════════════════════════════════════════════════
   VISION / POSITIONING — Dark
══════════════════════════════════════════════════ */
#vision {
  padding: var(--section-pad) 0;
  background: var(--emerald-dark);
  position: relative;
}
#vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(10,92,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}

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

.vision-statement {
  position: relative;
  padding: 48px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(197,160,89,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vision-statement::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--font-title);
  font-size: 16rem;
  font-weight: 900;
  color: rgba(197,160,89,0.05);
  line-height: 1;
  pointer-events: none;
}
.vision-quote {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--pearl);
  position: relative;
  z-index: 1;
}
.vision-quote span { color: var(--gold); }

.vision-text-block { display: flex; flex-direction: column; gap: 28px; }

.vision-claim {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--pearl);
}
.vision-claim span { color: var(--gold); }

.vision-body {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  line-height: 1.85;
}

.not-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.not-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-on-dark);
}
.not-icon-x {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.not-icon-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(197,160,89,0.15);
  border: 1px solid rgba(197,160,89,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════
   PILLARS — Pearl Background
══════════════════════════════════════════════════ */
#pillars {
  padding: var(--section-pad) 0;
  background: var(--pearl);
}

.pillars-header { text-align: center; margin-bottom: 64px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pillars-header .section-title { color: var(--text-dark); }
.pillars-header .section-title span { color: var(--emerald); }
.pillars-header .section-subtitle { color: var(--text-muted); }
.pillars-header .label { color: var(--emerald); }
.pillars-header .label::before { background: var(--emerald); }
.pillars-header .gold-line { background: linear-gradient(90deg, var(--emerald), transparent); }

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

.pillar-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid rgba(4,57,39,0.08);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(4,57,39,0.14); }
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-number {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(4,57,39,0.06);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(4,57,39,0.25);
  transition: var(--transition);
}
.pillar-card:hover .pillar-icon { transform: scale(1.08) rotate(-4deg); }

.pillar-name {
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.pillar-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════
   ESPECIALIDADES
══════════════════════════════════════════════════ */
#especialidades {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--emerald-dark) 0%, var(--emerald-mid) 100%);
}

.especialidades-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}


.espec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,160,89,0.12);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
  text-align: center;
}
.espec-card:hover {
  background: rgba(197,160,89,0.07);
  border-color: rgba(197,160,89,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.espec-icon {
  font-size: 2rem;
  filter: grayscale(0.3);
  transition: var(--transition);
}
.espec-card:hover .espec-icon { filter: grayscale(0); transform: scale(1.15); }
.espec-name {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-dark);
  transition: var(--transition-fast);
}
.espec-card:hover .espec-name { color: var(--gold); }

.especialidades-note {
  text-align: center;
  padding: 24px;
  background: rgba(197,160,89,0.06);
  border: 1px solid rgba(197,160,89,0.16);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-on-dark);
  max-width: 700px;
  margin: 0 auto;
}
.especialidades-note strong { color: var(--gold); }

/* ══════════════════════════════════════════════════
   SERVIÇOS — Bento Grid
══════════════════════════════════════════════════ */
#servicos {
  padding: var(--section-pad) 0;
  background: var(--pearl);
}

.servicos-header { text-align: center; margin-bottom: 64px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.servicos-header .section-title { color: var(--text-dark); }
.servicos-header .section-title span { color: var(--emerald); }
.servicos-header .section-subtitle { color: var(--text-muted); }
.servicos-header .label { color: var(--emerald); }
.servicos-header .label::before { background: var(--emerald); }
.servicos-header .gold-line { background: linear-gradient(90deg, var(--emerald), transparent); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(4,57,39,0.08);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(4,57,39,0.14); }

.bento-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
  border: none;
  color: var(--pearl);
}

.bento-card.bento-presence {
  grid-column: span 2;
}
.bento-card.featured:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(4,57,39,0.4); }

.bento-card.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.bento-card:not(.featured) .bento-icon {
  background: rgba(4,57,39,0.07);
}
.bento-card.featured .bento-icon {
  background: rgba(197,160,89,0.15);
  border: 1px solid rgba(197,160,89,0.3);
}

.bento-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.bento-card.featured .bento-title { color: var(--pearl); }

.bento-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.bento-card.featured .bento-desc { color: rgba(245,245,240,0.78); }

.bento-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  border-radius: 99px;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(197,160,89,0.1);
  color: var(--gold-dim);
  border: 1px solid rgba(197,160,89,0.25);
}
.bento-card.featured .bento-tag {
  background: rgba(197,160,89,0.2);
  color: var(--gold);
  border-color: rgba(197,160,89,0.4);
}

/* ══════════════════════════════════════════════════
   FILOSOFIA & EXCLUSIVIDADE
══════════════════════════════════════════════════ */
#filosofia {
  padding: var(--section-pad) 0;
  background: var(--emerald-dark);
  position: relative;
  overflow: hidden;
}
#filosofia::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,92,58,0.2) 0%, transparent 70%);
  pointer-events: none;
}

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

.filosofia-beliefs { display: flex; flex-direction: column; gap: 20px; }
.belief-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,160,89,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.belief-item:hover {
  background: rgba(197,160,89,0.05);
  border-color: rgba(197,160,89,0.22);
}
.belief-mark {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.belief-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: 4px;
}
.belief-text p {
  font-size: 0.88rem;
  color: var(--text-on-dark);
  line-height: 1.7;
}

.exclusividade-box {
  position: sticky;
  top: 100px;
}
.excl-card {
  background: linear-gradient(145deg, rgba(197,160,89,0.08), rgba(197,160,89,0.03));
  border: 1px solid rgba(197,160,89,0.22);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.excl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.excl-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: rgba(197,160,89,0.12);
  border: 1px solid rgba(197,160,89,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 28px;
}
.excl-title {
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--pearl);
  margin-bottom: 16px;
  line-height: 1.3;
}
.excl-title span { color: var(--gold); }
.excl-desc {
  font-size: 0.97rem;
  color: var(--text-on-dark);
  line-height: 1.8;
  margin-bottom: 32px;
}
.excl-points { display: flex; flex-direction: column; gap: 14px; }
.excl-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-on-dark);
}
.excl-point::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════ */
#cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 60%, var(--emerald-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--pearl);
}
.cta-title span { color: var(--gold); }
.cta-subtitle {
  font-size: 1.08rem;
  color: rgba(245,245,240,0.78);
  line-height: 1.8;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cta-note {
  font-size: 0.82rem;
  color: rgba(245,245,240,0.45);
  display: flex; align-items: center; gap: 6px;
}
.cta-note::before { content: '🔒'; font-size: 0.8rem; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
#footer {
  background: var(--emerald-dark);
  border-top: 1px solid rgba(197,160,89,0.12);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(197,160,89,0.1);
  margin-bottom: 32px;
}

.footer-brand {}
.footer-logo img { height: 44px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(197,160,89,0.08);
  border: 1px solid rgba(197,160,89,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim);
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-btn:hover { background: rgba(197,160,89,0.18); color: var(--gold); transform: translateY(-2px); }

.footer-col-title {
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  transition: var(--transition-fast);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-on-dark);
}
.contact-icon { color: var(--gold); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(245,245,240,0.3);
}
.footer-copy span { color: var(--gold-dim); }
.footer-essence {
  font-size: 0.8rem;
  color: rgba(245,245,240,0.25);
  font-style: italic;
}

/* ══════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  transition: var(--transition);
}

.whatsapp-float:hover .wpp-label {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.wpp-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
  text-decoration: none;
}
.wpp-btn:hover { transform: scale(1.08); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }

.wpp-btn svg { width: 30px; height: 30px; fill: #ffffff; }

/* Pulsing ring */
.wpp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wpp-pulse 2.4s ease-out infinite;
}
.wpp-btn::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.25);
  animation: wpp-pulse 2.4s ease-out 0.6s infinite;
}
@keyframes wpp-pulse {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}

.wpp-label {
  background: rgba(2,26,17,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 99px;
  padding: 10px 18px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pearl);
  white-space: nowrap;
  margin-right: 12px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  order: -1;
}

/* Notification dot */
.wpp-notif {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--emerald-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--emerald-dark);
  font-family: var(--font-title);
}

/* ══════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .vision-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .filosofia-inner { grid-template-columns: 1fr; gap: 48px; }
  .exclusividade-box { position: static; }
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.featured { grid-column: span 2; }
  .bento-card.bento-presence { grid-column: span 1; }
  .bento-card.tall { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.featured { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-metrics { gap: 24px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .wpp-btn { width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics { flex-wrap: wrap; gap: 20px; }
}

/* ══════════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════════ */
#depoimentos {
  padding: var(--section-pad) 0;
  background: var(--pearl);
}

.depoimentos-header { text-align: center; margin-bottom: 64px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.depoimentos-header .section-title { color: var(--text-dark); }
.depoimentos-header .section-title span { color: var(--emerald); }
.depoimentos-header .section-subtitle { color: var(--text-muted); }
.depoimentos-header .label { color: var(--emerald); }
.depoimentos-header .label::before { background: var(--emerald); }
.depoimentos-header .gold-line { background: linear-gradient(90deg, var(--emerald), transparent); }

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

.depoimento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(4,57,39,0.08);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(4,57,39,0.12);
}

.depoimento-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.depoimento-quote {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197,160,89,0.12);
  border: 1.5px solid rgba(197,160,89,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dim);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
}
