/* Movet — estilo do site. Cores e fontes seguem o site original (Hostinger). */
:root {
  --teal: #349b82;
  --teal-dark: #267a66;
  --mint: #b2dace;
  --mint-soft: #e6f3ef;
  --gray-bg: #eef1f4;
  --ink: #1d1e20;
  --muted: #55585f;
  --white: #fff;
  --radius: 18px;
  --max: 1180px;
  --font-head: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: 24px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; background: #fff; padding: 8px 12px; }

/* Botões */
.btn { display: inline-block; background: var(--teal); color: #fff; text-decoration: none; font-weight: 500; padding: 14px 30px; border-radius: 999px; border: 2px solid transparent; transition: background .2s, transform .2s; font-size: 1rem; cursor: pointer; font-family: var(--font-body); }
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn--light { background: #fff; color: var(--teal-dark); }
.btn--light:hover { background: var(--mint-soft); }
.btn--outline { background: transparent; border-color: #fff; }

/* Cabeçalho */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); backdrop-filter: blur(6px); border-bottom: 1px solid #eef0f2; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo img { height: 56px; width: auto; }
.nav { display: flex; gap: 32px; }
.nav a { color: var(--ink); text-decoration: none; font-size: .98rem; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--teal); }
.nav a[aria-current="page"] { color: var(--teal); border-bottom-color: var(--teal); }
.menu-toggle, .menu-btn { display: none; }
@media (max-width: 860px) {
  .menu-btn { display: flex; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; }
  .menu-btn span { width: 26px; height: 2px; background: var(--ink); display: block; transition: .2s; }
  .nav { position: absolute; top: 84px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid #eee; max-height: 0; overflow: hidden; transition: max-height .3s; }
  .nav a { padding: 16px 24px; border-bottom: 1px solid #f1f1f1; }
  .nav a[aria-current="page"] { border-bottom-color: #f1f1f1; background: var(--mint-soft); }
  .menu-toggle:checked ~ .nav { max-height: 420px; }
  .menu-toggle:checked + .menu-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle:checked + .menu-btn span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked + .menu-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Faixas de título */
.band { padding: 72px 0; text-align: center; }
.band--teal { background: var(--teal); color: #fff; }
.band--mint { background: var(--mint); }
.band p { max-width: 620px; margin: 0 auto 1.4em; }
.band h1 { margin-bottom: .35em; }

/* Seções */
.section { padding: 80px 0; }
.section--gray { background: var(--gray-bg); }
.section--mint { background: var(--mint); }
.section-title { text-align: center; margin-bottom: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; gap: 36px; } .section { padding: 56px 0; } .band { padding: 52px 0; } }

/* Home: hero */
.hero { position: relative; color: #fff; min-height: 640px; display: flex; align-items: center; padding: 90px 0 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,25,20,.35) 0%, rgba(10,25,20,.45) 60%, rgba(10,25,20,.65) 100%); }
.hero .wrap { position: relative; z-index: 1; text-align: center; }
.hero h1 { max-width: 820px; margin: 0 auto .4em; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero p.lead { max-width: 560px; margin: 0 auto 1.8em; font-size: 1.1rem; opacity: .95; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 64px; background: rgba(255,255,255,.14); backdrop-filter: blur(4px); border-radius: 6px; }
.pillar { padding: 26px 28px; text-align: center; }
.pillar h2 { font-size: 1.15rem; margin-bottom: .5em; }
.pillar p { font-size: .95rem; margin: 0; opacity: .95; }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } .hero { min-height: 0; } }

/* Galeria */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }
.gallery--home { max-width: 720px; margin: 0 auto; gap: 12px; }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Serviços */
.service-list h3 { font-size: 1.05rem; margin: 1.3em 0 .4em; }
.service-list h3:first-child { margin-top: 0; }
.service-list ul { margin: 0; padding-left: 1.2em; color: var(--muted); }
.photo { border-radius: var(--radius); box-shadow: 0 14px 40px rgba(0,0,0,.12); width: 100%; object-fit: cover; }
.therapies { display: grid; gap: 22px; }
.therapies h3 { font-size: 1.05rem; margin: 0 0 .2em; }
.therapies p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Agendamento */
.info-block h3 { font-size: 1rem; margin: 1.6em 0 .3em; }
.map { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 12px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid #e3e6ea; border-radius: 12px; margin-bottom: 12px; background: #fafbfb; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 52px 18px 22px; font-weight: 600; position: relative; font-family: var(--font-head); font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--teal); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 22px 18px; color: var(--muted); }
.faq .answer ul { padding-left: 1.2em; margin: 0; }

/* Formulário */
.form { display: grid; gap: 14px; }
.form label { font-size: .88rem; font-weight: 500; display: grid; gap: 6px; }
.form input, .form textarea { font: inherit; padding: 12px 14px; border: 1px solid #cfd6d3; border-radius: 10px; background: #fff; width: 100%; }
.form textarea { min-height: 110px; resize: vertical; }
.form small { color: var(--muted); }

/* Blog */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.card h2 { font-size: 1.2rem; line-height: 1.3; }
.card p { color: var(--muted); font-size: .93rem; flex: 1; }
.meta { font-size: .85rem; color: var(--muted); }

/* Artigo */
.article-head { padding: 64px 0 28px; }
.article-head h1 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 900px; }
.article-head .lead { font-size: 1.1rem; color: var(--muted); max-width: 820px; }
.article-cover { border-radius: var(--radius); width: 100%; max-height: 520px; object-fit: cover; margin-bottom: 44px; }
.prose { max-width: 780px; margin: 0 auto; font-size: 1.05rem; }
.prose h2 { font-size: 1.6rem; margin: 1.8em 0 .7em; display: table; background: var(--mint); padding: 4px 10px; line-height: 1.3; border-radius: 4px; }
.prose > h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 1.6em 0 .5em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.cta-box { background: var(--mint-soft); border-radius: var(--radius); padding: 34px; text-align: center; margin: 56px auto 0; max-width: 780px; }
.cta-box h2 { font-size: 1.5rem; }
.related { margin-top: 72px; }

/* Rodapé */
.site-footer { background: var(--teal); color: #fff; padding: 48px 0 28px; margin-top: 0; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-logo { background: #fff; border-radius: 16px; padding: 10px 12px; display: inline-block; }
.footer-logo img { height: 48px; width: auto; }
.social { display: flex; gap: 14px; margin-top: 14px; }
.social a { display: inline-flex; width: 28px; height: 28px; }
.social svg { width: 100%; height: 100%; fill: #fff; }
.footer-grid p { margin: 0 0 .6em; }
.copy { text-align: right; font-size: .85rem; opacity: .85; margin-top: 18px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } .copy { text-align: left; } }

/* WhatsApp flutuante */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 60px; height: 60px; border-radius: 50%; background: #1f8a5a; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); z-index: 60; transition: transform .2s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
