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

:root {
  --yellow: #FFB600;
  --yellow-d: #E6A200;
  --yellow-l: #FFF9E6;
  --dark: #1a1208;
  --mid: #4a3f2e;
  --muted: #8a7a68;
  --bg: #ffffff;
  --bg2: #FDFAF4;
  --radius: 20px;
  --font: 'Sora', sans-serif;
  --font2: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font2); color: var(--dark); background: var(--bg); line-height: 1.6; overflow-x: hidden; }

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

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── ANIMATIONS ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.reveal-delay { transition-delay: 150ms; }
.reveal.in-view { opacity: 1; transform: none; }

/* ── NAV ─────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-wrap { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-family: var(--font); font-weight: 600; font-size: 14px; color: var(--dark); transition: color .2s; }
.nav-links a:hover { color: var(--yellow-d); }
.nav-acesso { color: var(--muted) !important; font-size: 13px !important; border: 1px solid #ddd; padding: 8px 16px !important; border-radius: 100px; transition: border-color .2s, color .2s !important; }
.nav-acesso:hover { border-color: var(--dark) !important; color: var(--dark) !important; }
.nav-btn { background: var(--yellow); color: var(--dark) !important; padding: 10px 22px; border-radius: 100px; font-weight: 700 !important; transition: transform .2s, background .2s !important; }
.nav-btn:hover { background: var(--yellow-d) !important; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* ── HERO ────────────────────────────────────────── */
.hero { min-height: 100vh; padding: 100px 0 80px; position: relative; overflow: hidden; background: var(--bg); display: flex; align-items: center; }
.hero-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.circle { position: absolute; border-radius: 50%; opacity: .12; }
.c1 { width: 500px; height: 500px; background: #FFB600; top: -120px; right: -100px; animation: float1 8s ease-in-out infinite; }
.c2 { width: 300px; height: 300px; background: #4dabf7; bottom: 0; left: -80px; animation: float2 10s ease-in-out infinite; }
.c3 { width: 200px; height: 200px; background: #f783ac; top: 40%; left: 30%; animation: float1 12s ease-in-out infinite 2s; }
.c4 { width: 150px; height: 150px; background: #51cf66; top: 20%; left: 45%; animation: float2 9s ease-in-out infinite 1s; }
.c5 { width: 120px; height: 120px; background: #cc5de8; bottom: 20%; right: 30%; animation: float1 11s ease-in-out infinite 3s; }

@keyframes float1 { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.03); } }
@keyframes float2 { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(16px) scale(.97); } }

.hero-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-left { position: relative; z-index: 1; }

.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow-l); border: 1.5px solid #FFE080; color: var(--yellow-d); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 100px; margin-bottom: 28px; font-family: var(--font); }
.pill-dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

h1 { font-family: var(--font); font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 900; line-height: 1.1; letter-spacing: -2px; color: var(--dark); margin-bottom: 24px; }
h1 em { font-style: normal; color: var(--yellow-d); }
.h1-highlight { position: relative; display: inline-block; }
.h1-highlight::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 10px; background: var(--yellow); opacity: .3; border-radius: 4px; z-index: -1; }

.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }

.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-main { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--dark); font-family: var(--font); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 100px; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px #FFB60040; }
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 28px #FFB60060; }
.btn-ghost { font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--dark); border-bottom: 2px solid var(--yellow); padding-bottom: 2px; transition: color .2s; }
.btn-ghost:hover { color: var(--yellow-d); }
.btn-full { width: 100%; justify-content: center; }

.hero-nums { display: flex; align-items: center; gap: 24px; }
.num-item { display: flex; flex-direction: column; }
.num-item strong { font-family: var(--font); font-size: 22px; font-weight: 900; color: var(--dark); }
.num-item span { font-size: 12px; color: var(--muted); font-weight: 500; }
.num-divider { width: 1px; height: 36px; background: #e0d8cc; }

.hero-right { position: relative; z-index: 1; display: flex; justify-content: center; align-items: center; }
.hero-card-main { width: 340px; height: 380px; background: var(--bg2); border-radius: 28px; border: 2px dashed #e8d8a0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: 13px; }
.hero-tag { position: absolute; background: white; border-radius: 16px; padding: 10px 16px; font-size: 13px; font-weight: 600; font-family: var(--font); box-shadow: 0 4px 20px rgba(0,0,0,.12); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.tag-yellow { bottom: 40px; left: -20px; }
.tag-purple { top: 60px; right: -20px; }

/* ── SECTIONS SHARED ─────────────────────────────── */
section { padding: 96px 0; }
.sec-header { text-align: center; margin-bottom: 60px; }
.sec-sub { color: var(--muted); font-size: 17px; max-width: 560px; margin: 16px auto 0; }
.sobre-tag { display: inline-block; font-family: var(--font); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--yellow-d); background: var(--yellow-l); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
h2 { font-family: var(--font); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.15; letter-spacing: -1px; color: var(--dark); }
h2 span { color: var(--yellow-d); }

/* ── SOBRE ───────────────────────────────────────── */
.sobre { background: var(--bg2); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sobre-esq h2 { margin-bottom: 20px; }
.sobre-esq p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }

.sobre-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.sobre-num { background: white; border-radius: 16px; padding: 20px; border-left: 4px solid var(--nc, var(--yellow)); }
.sobre-num strong { display: block; font-family: var(--font); font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.sobre-num span { font-size: 13px; color: var(--muted); margin-top: 4px; display: block; }

.sobre-pilares { display: flex; flex-direction: column; gap: 20px; }
.pilar-item { display: flex; gap: 16px; align-items: flex-start; }
.pilar-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.pilar-item h4 { font-family: var(--font); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.pilar-item p { font-size: 14px; color: var(--muted); }

/* ── ESPECIALIDADES ──────────────────────────────── */
.espec { background: var(--bg); }
.espec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.espec-card { background: var(--bg2); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.espec-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.espec-top { height: 6px; }
.espec-body { padding: 24px; }
.espec-icon { font-size: 28px; margin-bottom: 12px; }
.espec-body h3 { font-family: var(--font); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.espec-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── EQUIPE ──────────────────────────────────────── */
.equipe { background: var(--bg2); }
.equipe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.equipe-card { background: white; border-radius: var(--radius); overflow: hidden; text-align: center; padding: 32px 20px; transition: transform .3s, box-shadow .3s; }
.equipe-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.equipe-foto { width: 80px; height: 80px; border-radius: 50%; background: var(--yellow-l); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 16px; border: 3px solid var(--yellow); }
.equipe-info h3 { font-family: var(--font); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.equipe-cargo { font-size: 13px; color: var(--yellow-d); font-weight: 600; margin-bottom: 4px; }
.equipe-reg { font-size: 12px; color: var(--muted); }

/* ── GALERIA ─────────────────────────────────────── */
.galeria { background: var(--bg); }
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.galeria-item { aspect-ratio: 4/3; background: var(--bg2); border-radius: 16px; border: 2px dashed #e0d8c8; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 500; transition: border-color .2s; }
.galeria-item:hover { border-color: var(--yellow); }
.galeria-item svg { opacity: .4; }

/* ── DEPOIMENTOS ─────────────────────────────────── */
.deps { background: var(--bg2); }
.deps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dep-card { background: white; border-radius: var(--radius); padding: 28px; border-top: 4px solid var(--dc, var(--yellow)); }
.dep-stars { color: var(--yellow); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.dep-txt { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.dep-footer { display: flex; align-items: center; gap: 12px; }
.dep-av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 900; font-size: 18px; flex-shrink: 0; }
.dep-nome { font-family: var(--font); font-weight: 700; font-size: 14px; }
.dep-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── CTA BAND ────────────────────────────────────── */
.cta-band { background: var(--yellow); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; color: var(--dark); }
.cta-inner p { color: rgba(26,18,8,.7); font-size: 16px; margin-top: 8px; }
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: var(--dark); color: white; font-family: var(--font); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 100px; white-space: nowrap; transition: transform .2s, opacity .2s; }
.btn-white:hover { transform: translateY(-2px); opacity: .9; }

/* ── CONTATO ─────────────────────────────────────── */
.contato { background: var(--bg); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contato-esq h2 { margin: 12px 0 16px; }
.contato-esq > p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }
.contato-infos { display: flex; flex-direction: column; gap: 20px; }
.ci { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ci strong { display: block; font-family: var(--font); font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.ci p, .ci a { font-size: 14px; color: var(--muted); }
.ci a:hover { color: var(--yellow-d); }

.contato-cta-box { background: var(--bg2); border-radius: 24px; padding: 40px; border: 2px solid #f0e8d0; }
.cta-emoji { font-size: 40px; margin-bottom: 16px; }
.contato-cta-box h3 { font-family: var(--font); font-weight: 900; font-size: 1.6rem; margin-bottom: 12px; }
.contato-cta-box p { color: var(--muted); font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
.cta-mapa { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: var(--dark); color: #d8cfc4; padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand img { margin-bottom: 16px; background: rgba(255,255,255,.06); border-radius: 12px; padding: 6px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #8a7a68; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: #2a1e10; display: flex; align-items: center; justify-content: center; color: #d8cfc4; transition: background .2s; }
.footer-social a:hover { background: var(--yellow); color: var(--dark); }
.footer-col h4 { font-family: var(--font); font-weight: 700; font-size: 14px; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: #8a7a68; transition: color .2s; }
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid #2a1e10; margin-top: 48px; padding: 20px 0; }
.footer-btm-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom span { font-size: 13px; color: #5a4a38; }
.footer-cosig { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #5a4a38; }
.footer-cosig img { filter: brightness(0) invert(.5); opacity: .6; }

/* ── INSTAGRAM ───────────────────────────────────── */
.insta { padding: 96px 0; background: var(--bg2); }
.ig-real-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin: 40px 0 32px; min-height: 180px; }
.ig-loading { grid-column: 1/-1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); padding: 40px; }
.ig-loading p { font-size: 14px; }
.ig-post { aspect-ratio: 1; overflow: hidden; border-radius: 12px; display: block; }
.ig-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.ig-post:hover img { transform: scale(1.06); }
.insta-cta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.insta-handle-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--mid); border: 2px solid #e0d8ce; padding: 10px 22px; border-radius: 100px; transition: border-color .2s, color .2s; }
.insta-handle-link:hover { border-color: var(--yellow); color: var(--dark); }

/* ── PLANOS ACEITOS ──────────────────────────────── */
.planos { padding: 80px 0; background: var(--bg); }
.planos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin: 36px 0 20px; }
.plano-item { display: flex; flex-direction: column; align-items: center; gap: 12px; background: var(--bg2); border: 1px solid #e8e0d4; border-radius: 16px; padding: 20px 16px; text-align: center; transition: border-color .2s, box-shadow .2s, transform .2s; cursor: default; }
.plano-item:hover { border-color: var(--yellow); box-shadow: 0 4px 20px rgba(255,182,0,.12); transform: translateY(-2px); }
.plano-item img { height: 44px; width: auto; max-width: 120px; object-fit: contain; filter: grayscale(20%); transition: filter .2s; }
.plano-item:hover img { filter: grayscale(0%); }
.plano-item span { font-family: var(--font); font-weight: 600; font-size: 12px; color: var(--mid); line-height: 1.3; }
.planos-obs { text-align: center; font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ── WPP FAB ─────────────────────────────────────── */
.wpp-fab { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 999; transition: transform .2s, box-shadow .2s; }
.wpp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .espec-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ig-real-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; padding: 80px 32px 32px; gap: 24px; align-items: flex-start; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; z-index: 100; }
  .espec-grid { grid-template-columns: 1fr; }
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .deps-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .ig-real-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-cta { flex-direction: column; gap: 12px; }
  .sobre-nums { grid-template-columns: 1fr 1fr; }
  .hero-nums { flex-direction: column; gap: 12px; align-items: flex-start; }
  .num-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-btm-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero { padding: 80px 0 60px; }
  .equipe-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
