/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --verde: #0e6b52;
  --verde-md: #168a69;
  --verde-claro: #1d9e75;
  --verde-bg: #e4f5ee;
  --verde-dark: #094a39;
  --creme: #f8f5f0;
  --creme2: #f2ede6;
  --escuro: #141414;
  --texto: #3d3d3d;
  --muted: #737373;
  --borda: #e0ddd8;
  --branco: #ffffff;
  --fonte-titulo: "Cormorant Garamond", Georgia, serif;
  --fonte-corpo: "Outfit", sans-serif;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-xl: 50px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fonte-corpo);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--fonte-titulo); font-weight: 600; line-height: 1.15; color: var(--escuro); }
h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.35rem; }

/* ── UTILITIES ──────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.tag {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--verde);
  padding: 6px 16px; border-radius: var(--r-xl); background: var(--verde-bg); margin-bottom: 1.25rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0.75rem auto 0; }

/* ── BOTÕES ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--r-xl);
  font-family: var(--fonte-corpo); font-size: 15px; font-weight: 500;
  cursor: pointer; border: none; transition: all 0.25s;
}
.btn-verde { background: var(--verde); color: #fff; }
.btn-verde:hover { background: var(--verde-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--verde); border: 1.5px solid var(--verde); }
.btn-outline:hover { background: var(--verde-bg); }
.btn-branco { background: #fff; color: var(--verde); font-weight: 600; }
.btn-branco:hover { background: var(--verde-bg); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ── ANIMAÇÕES ──────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.25s; }
.anim-d3 { animation-delay: 0.4s; }
.anim-d4 { animation-delay: 0.55s; }

/* ── NAV ────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--borda);
  backdrop-filter: blur(6px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 90px; }
.nav-logo { font-family: var(--fonte-titulo); font-size: 18px; font-weight: 600; color: var(--verde); display: flex; align-items: center; gap: 10px; }
.nav-logo svg { flex-shrink: 0; }
.nav-logo img { height: 72px; width: auto; object-fit: contain; }
@media (max-width: 768px) { .nav-logo img { height: 100px; } }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color 0.2s; font-weight: 400; }
.nav-links a:hover { color: var(--verde); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-wpp-mobile {
  display: none; width: 40px; height: 40px; background: #25d366;
  border-radius: 50%; align-items: center; justify-content: center; flex-shrink: 0;
}
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--escuro); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: #fff; z-index: 300;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--fonte-titulo); font-size: 2rem; font-weight: 600; color: var(--escuro); }
.mobile-menu a:hover { color: var(--verde); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; cursor: pointer; font-size: 1.8rem; color: var(--muted); }

/* ── HERO ───────────────────────────────────────────── */
.hero { background: var(--creme); display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 66px); overflow: hidden; text-align: center; }
.hero-content { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5rem 2rem; max-width: 860px; width: 100%; }
.hero-content h1 { font-size: clamp(3rem, 5vw, 5rem); margin-bottom: 1.25rem; }
.hero-content h1 em { color: var(--verde); font-style: normal; }
.hero-content p { font-size: 1.1rem; color: var(--muted); max-width: 440px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; }
.stat h3 { font-family: var(--fonte-titulo); font-size: 2.4rem; font-weight: 700; color: var(--verde); line-height: 1; }
.stat p { font-size: 13px; color: var(--muted); margin-top: 4px; }
.hero-visual { position: relative; background: var(--verde-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; min-height: calc(100vh - 66px); }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; position: relative; z-index: 1; }
.hero-badge-float { position: absolute; top: 2.5rem; right: 2.5rem; z-index: 2; background: #fff; border-radius: var(--r-md); padding: 1rem 1.25rem; min-width: 150px; border: 1px solid var(--borda); }
.hero-badge-float .badge-num { font-family: var(--fonte-titulo); font-size: 1.9rem; font-weight: 700; color: var(--verde); line-height: 1; }
.hero-badge-float .badge-txt { font-size: 12px; color: var(--muted); margin-top: 4px; }
.hero-badge-float2 { position: absolute; bottom: 3rem; left: 2rem; z-index: 2; background: var(--verde); color: #fff; border-radius: var(--r-md); padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 10px; }
.hero-badge-float2 svg { flex-shrink: 0; }
.hero-badge-float2 span { font-size: 13px; font-weight: 400; opacity: 0.85; display: block; }
.hero-badge-float2 strong { font-size: 14px; font-weight: 500; }

/* ── SOBRE ──────────────────────────────────────────── */
.sobre { padding: 7rem 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sobre-img-wrap { position: relative; }
.sobre-img-wrap img { width: 100%; border-radius: var(--r-lg); object-fit: cover; aspect-ratio: 3/4; }
.sobre-card-float { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--verde); color: #fff; border-radius: var(--r-md); padding: 1.5rem 1.75rem; min-width: 200px; }
.sobre-card-float strong { font-family: var(--fonte-titulo); font-size: 2rem; display: block; line-height: 1; margin-bottom: 0.4rem; }
.sobre-card-float span { font-size: 13px; opacity: 0.85; }
.sobre-text h2 { margin-bottom: 1.25rem; }
.sobre-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }
.creds { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.cred { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--texto); }
.cred-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--verde-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── ESPECIALIDADES ─────────────────────────────────── */
.esp { background: var(--creme); padding: 7rem 0; }
.esp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.esp-card { background: #fff; border-radius: var(--r-md); padding: 2rem 1.75rem; border: 1px solid var(--borda); transition: all 0.3s; cursor: default; }
.esp-card:hover { border-color: var(--verde-claro); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(14,107,82,0.1); }
.esp-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--verde-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.esp-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.esp-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── MODALIDADES ────────────────────────────────────── */
.modal-section { padding: 7rem 0; }
.modal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.modal-card { border-radius: var(--r-md); padding: 2.25rem 2rem; display: flex; flex-direction: column; gap: 1rem; min-height: 220px; }
.modal-card.presencial { background: var(--verde); color: #fff; }
.modal-card.online { background: var(--escuro); color: #fff; }
.modal-card.domiciliar { background: var(--creme2); color: var(--escuro); }
.modal-card .modal-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.modal-card.domiciliar .modal-icon { background: rgba(14,107,82,0.1); }
.modal-card h3 { font-size: 1.3rem; color: #fff; }
.modal-card.domiciliar h3 { color: var(--escuro); }
.modal-card p { font-size: 14px; opacity: 0.8; line-height: 1.65; }
.modal-card .modal-cta { margin-top: auto; padding-top: 0.75rem; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; opacity: 0.9; color: #fff; }
.modal-card.domiciliar .modal-cta { color: var(--verde); }

/* ── DEPOIMENTOS ────────────────────────────────────── */
.dep { background: var(--creme); padding: 7rem 0; }
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dep-card { background: #fff; border-radius: var(--r-md); padding: 1.75rem; border: 1px solid var(--borda); }
.dep-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.dep-stars svg { fill: #f59e0b; }
.dep-card p { font-size: 15px; color: var(--texto); line-height: 1.7; margin-bottom: 1.25rem; }
.dep-autor { font-size: 13px; font-weight: 500; color: var(--verde); }

/* ── LOCALIZAÇÃO ────────────────────────────────────── */
.local { padding: 7rem 0; }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.local-info { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.local-card { background: var(--creme); border-radius: var(--r-md); padding: 1.25rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.local-card-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--verde-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.local-card h4 { font-family: var(--fonte-titulo); font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.local-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.map-wrap { border-radius: var(--r-md); overflow: hidden; height: 420px; border: 1px solid var(--borda); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── AGENDAMENTO (CTA) ──────────────────────────────── */
.cta-section { background: var(--verde-dark); color: #fff; padding: 7rem 0; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.cta-text h2 { color: #fff; margin-bottom: 1.25rem; }
.cta-text p { opacity: 0.8; font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.75; }
.cta-items { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; }
.cta-item { display: flex; align-items: center; gap: 12px; font-size: 15px; opacity: 0.9; }
.cta-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.form-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-md); padding: 2.5rem; }
.form-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { font-size: 13px; opacity: 0.7; display: block; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 12px 16px; font-size: 14px; color: #fff; font-family: var(--fonte-corpo); outline: none; transition: border 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.5); }
.form-group select option { color: #111; background: #fff; }
.form-submit { width: 100%; background: #fff; color: var(--verde); border: none; padding: 14px; border-radius: var(--r-xl); font-size: 15px; font-weight: 600; font-family: var(--fonte-corpo); cursor: pointer; margin-top: 0.5rem; transition: all 0.2s; }
.form-submit:hover { background: var(--verde-bg); transform: translateY(-1px); }

/* ── WPP FLOAT ──────────────────────────────────────── */
.wpp-float { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500; background: #25d366; color: #fff; border-radius: var(--r-xl); padding: 12px 20px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 9px; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: all 0.2s; }
.wpp-float:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

/* ── FOOTER ─────────────────────────────────────────── */
footer { background: #0d0d0d; color: #888; padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: var(--fonte-titulo); font-size: 18px; color: #fff; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 13px; color: #666; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
footer p { font-size: 12px; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item { border: 1px solid var(--borda); border-radius: var(--r-md); overflow: hidden; }
.faq-btn { width: 100%; background: #fff; border: none; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; font-family: var(--fonte-corpo); font-size: 15px; font-weight: 500; color: var(--escuro); cursor: pointer; text-align: left; gap: 1rem; transition: background 0.2s; }
.faq-btn:hover { background: var(--creme); }
.faq-btn svg { flex-shrink: 0; transition: transform 0.3s; }
.faq-btn.open svg { transform: rotate(180deg); }
.faq-resp { display: none; padding: 0 1.5rem 1.25rem; font-size: 15px; color: var(--muted); line-height: 1.7; background: #fff; }
.faq-resp.open { display: block; }

/* ── RESPONSIVO ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-content { padding: 3rem 3rem 2.5rem; max-width: 100%; }
  .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-card-float { display: none; }
  .esp-grid { grid-template-columns: 1fr 1fr; }
  .dep-grid { grid-template-columns: 1fr 1fr !important; }
  .modal-grid { grid-template-columns: 1fr 1fr; }
  .local-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .esp-grid { grid-template-columns: 1fr 1fr; }
  .modal-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr !important; }
  .sobre-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 2rem; }
  .sobre, .esp, .modal-section, .dep, .local, .cta-section { padding: 4rem 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .nav-inner { height: 110px; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-wpp-mobile { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-badge-float, .hero-badge-float2 { display: none; }
  .wpp-float span.wpp-txt { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .sobre, .esp, .modal-section, .dep, .local { padding: 4rem 0; }
  .cta-section { padding: 4rem 0; }
  .esp-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 0; }
  .form-card { padding: 1.5rem; }
  .modal-card { border-radius: 16px; }
  .dep-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  .sobre-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .hero-content { padding: 2rem 1.25rem; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .map-wrap { height: 260px; }
  .hero-stats { gap: 1.25rem; }
  .stat h3 { font-size: 1.8rem; }
  .sobre, .esp, .modal-section, .dep, .local, .cta-section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .cta-text .btn-branco { width: 100%; justify-content: center; }
  .form-card { border-radius: 16px; padding: 1.25rem; }
}
