/* =====================================================================
   PRÓ FÓRMULA — Farmácia de Manipulação
   Design System / Folha de estilo principal
   Paleta extraída da identidade visual (logo + favicon):
   Teal #3BB3C2  |  Coral #FE4C4C  |  Branco
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marca */
  --teal:          #2FB0C0;
  --teal-600:      #1F94A4;
  --teal-700:      #17808F;
  --teal-800:      #0E5A66;
  --teal-900:      #0A434C;
  --teal-050:      #EAF7F9;
  --teal-100:      #D3EEF2;

  --coral:         #FE4C4C;
  --coral-600:     #EF3B3B;
  --coral-700:     #D62F2F;
  --coral-050:     #FFECEC;

  --wa:            #25D366;   /* neon: ícone flutuante e detalhes */
  --wa-dark:       #1EBE5A;
  --wa-btn:        #16873F;   /* verde escuro p/ botões com texto (contraste AA 4.6:1) */
  --wa-btn-dark:   #0F7A38;

  /* Neutros */
  --ink:           #0F2E33;   /* texto principal */
  --ink-soft:      #37545A;
  --muted:         #64787D;   /* texto secundário */
  --line:          #E3ECEE;
  --bg:            #FFFFFF;
  --bg-tint:       #F4FAFB;   /* seções alternadas */
  --bg-tint-2:     #EDF6F7;
  --white:         #FFFFFF;

  /* Tipografia */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-script: "Sacramento", cursive;

  /* Formas */
  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 999px;
  --shadow-sm:  0 2px 8px rgba(15,46,51,.06);
  --shadow:     0 14px 34px rgba(15,46,51,.10);
  --shadow-lg:  0 26px 60px rgba(15,46,51,.16);
  --ring:       0 0 0 4px rgba(47,176,192,.30);

  /* Layout */
  --container: 1180px;
  --gutter: 22px;
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
}

/* ---------- 2. Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral-600); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }

h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.14; color: var(--ink); letter-spacing: -.01em; overflow-wrap: break-word; }
p, li, a, span { overflow-wrap: break-word; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--ink-soft); }

::selection { background: var(--teal); color: #fff; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--bg-tint); }
.section--deep { background: var(--teal-800); color: #fff; }
.section--deep p { color: rgba(255,255,255,.82); }
.section--deep h2, .section--deep h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.grid { display: grid; gap: 26px; }
/* minmax(0,1fr) impede que colunas estourem a largura em telas estreitas */
@media (min-width: 620px){ .grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (min-width: 560px) and (max-width: 859px){ .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (min-width: 860px){
  .grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
}

/* ---------- 4. Section heading kit ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-700); background: var(--teal-050);
  padding: .4rem .9rem; border-radius: var(--radius-pill);
}
.section--deep .eyebrow { color: #fff; background: rgba(255,255,255,.14); }
.eyebrow::before { content:""; width: 16px; height: 2px; background: var(--coral); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1rem; font-size: 1.06rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .95rem 1.7rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: 0 10px 22px -8px rgba(47,176,192,.6);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); color: #fff; }
.btn-primary { --btn-bg: var(--teal-700); }
.btn-primary:hover { background: var(--teal-800); }
.btn-coral { --btn-bg: var(--coral); box-shadow: 0 10px 22px -8px rgba(254,76,76,.6); }
.btn-coral:hover { background: var(--coral-600); }
.btn-wa { --btn-bg: var(--wa-btn); box-shadow: 0 10px 22px -8px rgba(22,135,63,.55); }
.btn-wa:hover { background: var(--wa-btn-dark); }
.btn-ghost { background: #fff; color: var(--teal-800); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { background: var(--teal-050); color: var(--teal-800); box-shadow: inset 0 0 0 2px var(--teal-100); }
.btn-outline-white { background: transparent; color:#fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); }
.btn-outline-white:hover { background: #fff; color: var(--teal-800); }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; white-space: normal; }

/* ---------- 6. Top contact bar ---------- */
.topbar { background: var(--teal-800); color: rgba(255,255,255,.9); font-size: .86rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; }
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.topbar-info span, .topbar-info a { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-info svg { width: 15px; height: 15px; color: var(--teal); }
.topbar-social { display: flex; gap: .4rem; }
.topbar-social a { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); }
.topbar-social a:hover { background: var(--coral); }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 780px){ .topbar { display: none; } }

/* ---------- 7. Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 46px; height: 46px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.brand__wordmark { height: 30px; width: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.28rem; color: var(--teal-800); letter-spacing: -.02em; }
.brand__sub { font-family: var(--font-script); font-size: 1.2rem; color: var(--coral-700); line-height: .8; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: .3rem; }
.nav-menu a {
  font-family: var(--font-head); font-weight: 500; font-size: .98rem; color: var(--ink);
  padding: .55rem .9rem; border-radius: var(--radius-pill); position: relative;
}
.nav-menu a:hover { color: var(--teal-700); background: var(--teal-050); }
.nav-menu a.is-active { color: var(--teal-700); }
.nav-menu a.is-active::after { content:""; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-050); color: var(--teal-800); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; margin-inline: auto; transition: .25s; position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px){
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta .btn:not(.nav-cta-wa) { display: none; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: #fff; padding: 6rem 1.4rem 2rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s ease; z-index: 55;
  }
  body.nav-open .nav-menu { transform: translateX(0); }
  .nav-menu a { padding: .9rem 1rem; font-size: 1.05rem; border-radius: 12px; }
  .nav-menu a.is-active::after { display: none; }
  .nav-menu a.is-active { background: var(--teal-050); }
  .nav-scrim { position: fixed; inset: 0; background: rgba(10,40,45,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 50; }
  body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
}

/* ---------- 8. Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { /* overlay */
  content:""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(10,60,68,.94) 0%, rgba(14,90,102,.86) 42%, rgba(23,128,143,.55) 100%);
}
.hero__inner { padding-block: clamp(4rem, 9vw, 8rem); max-width: 720px; }
.hero .eyebrow { color:#fff; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); }
.hero h1 { color: #fff; margin: 1.2rem 0; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero h1 .accent { color: #fff; }
.hero__lead { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.2); }
.hero__trust-item { display: flex; align-items: center; gap: .7rem; }
.hero__trust-item svg { width: 26px; height: 26px; color: var(--teal); flex: none; }
.hero__trust-item b { display:block; font-family: var(--font-head); font-size: 1.05rem; color:#fff; }
.hero__trust-item small { color: rgba(255,255,255,.8); font-size: .82rem; }

/* ---------- 9. Feature / service cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s; height: 100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.card__icon { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(140deg, var(--teal-050), var(--teal-100)); color: var(--teal-700); margin-bottom: 1.2rem; }
.card__icon svg { width: 30px; height: 30px; }
.card--coral .card__icon { background: linear-gradient(140deg, var(--coral-050), #ffd9d9); color: var(--coral-700); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }
.card__link { display: inline-flex; align-items:center; gap: .35rem; margin-top: 1rem; font-family: var(--font-head); font-weight: 600; font-size: .92rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card__link:hover svg { transform: translateX(4px); }

/* ---------- 10. About split ---------- */
.split { display: grid; gap: clamp(2rem,5vw,4rem); align-items: center; grid-template-columns: minmax(0,1fr); }
@media (min-width: 900px){ .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: 2; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split__badge { position: absolute; background: var(--coral); color:#fff; border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow); }
.split__badge b { font-family: var(--font-head); font-size: 2rem; display:block; line-height:1; }
.split__badge span { font-size: .82rem; opacity: .92; }
.split__badge--br { bottom: -18px; right: -14px; }
.checklist { display: grid; gap: .8rem; margin: 1.6rem 0; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.checklist svg { width: 22px; height: 22px; color: var(--teal); flex: none; margin-top: 2px; }
.checklist b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* ---------- 11. Stats ---------- */
.stats { display: grid; gap: 1.4rem; grid-template-columns: repeat(2,minmax(0,1fr)); }
@media (min-width: 800px){ .stats { grid-template-columns: repeat(4,minmax(0,1fr)); } }
.stat { text-align: center; padding: 1.4rem 1rem; }
.section--deep .stat { border-radius: var(--radius); }
.stat b { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.3rem,5vw,3.2rem); color: #fff; line-height: 1; display:block; }
.section:not(.section--deep) .stat b { color: var(--teal-700); }
.stat b .plus { color: var(--coral); }
.stat span { display:block; margin-top: .5rem; font-size: .95rem; letter-spacing: .02em; }
.section--deep .stat span { color: rgba(255,255,255,.85); }
.stat span { color: var(--muted); }

/* ---------- 12. Steps (como funciona) ---------- */
.steps { counter-reset: step; display: grid; gap: 26px; }
@media (min-width: 760px){ .steps { grid-template-columns: repeat(4,1fr); } }
.step { position: relative; background:#fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.4rem 1.5rem 1.7rem; text-align: center; box-shadow: var(--shadow-sm); }
.step__num { counter-increment: step; position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color:#fff; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; display: grid; place-items: center; box-shadow: 0 8px 18px -6px rgba(47,176,192,.7); }
.step__num::after { content: counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { font-size: .93rem; }
.step:nth-child(2) .step__num { background: var(--coral); box-shadow: 0 8px 18px -6px rgba(254,76,76,.7); }
.step:nth-child(4) .step__num { background: var(--coral); box-shadow: 0 8px 18px -6px rgba(254,76,76,.7); }

/* ---------- 13. Áreas atendidas ---------- */
.areas { display: grid; gap: 16px; grid-template-columns: repeat(2,minmax(0,1fr)); }
@media (min-width: 720px){ .areas { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media (min-width: 980px){ .areas { grid-template-columns: repeat(4,minmax(0,1fr)); } }
.area { display:flex; align-items:center; gap:.7rem; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; font-family: var(--font-head); font-weight: 500; box-shadow: var(--shadow-sm); transition: .2s; }
.area:hover { border-color: var(--teal-100); transform: translateY(-3px); }
.area svg { width: 20px; height: 20px; color: var(--coral); flex: none; }

/* ---------- 14. Produtos ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.6rem; }
.filter { font-family: var(--font-head); font-weight: 500; font-size: .95rem; padding: .6rem 1.2rem; border-radius: var(--radius-pill); background:#fff; color: var(--ink-soft); box-shadow: inset 0 0 0 1px var(--line); transition: .2s; }
.filter:hover { color: var(--teal-700); box-shadow: inset 0 0 0 1px var(--teal-100); }
.filter.is-active { background: var(--teal-700); color:#fff; box-shadow: 0 8px 18px -8px rgba(23,128,143,.7); }

.products { display: grid; gap: clamp(14px,3vw,24px); grid-template-columns: repeat(2,minmax(0,1fr)); }
@media (min-width: 720px){ .products { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media (min-width: 1000px){ .products { grid-template-columns: repeat(4,minmax(0,1fr)); } }
.product { display: flex; flex-direction: column; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s; }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.product__media { position: relative; aspect-ratio: 1/1; background: linear-gradient(160deg,#fff, var(--bg-tint)); padding: 1rem; }
.product__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product__tag { position: absolute; top: .8rem; left: .8rem; font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: .28rem .6rem; border-radius: var(--radius-pill); background: var(--teal-050); color: var(--teal-700); }
.product__tag--kids { background: #FFF3E0; color: #C77700; }
.product__tag--vit { background: var(--coral-050); color: var(--coral-700); }
.product__body { display: flex; flex-direction: column; flex: 1; padding: 1.2rem 1.2rem 1.4rem; }
.product__name { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--ink); }
.product__sub { font-size: .84rem; color: var(--teal-700); font-weight: 600; margin-top: .1rem; }
.product__desc { font-size: .9rem; color: var(--muted); margin-top: .6rem; flex: 1; }
.product__foot { display: flex; flex-direction: column; align-items: stretch; gap: .8rem; margin-top: 1rem; }
.product__price { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.product__price small { display:block; font-weight: 500; font-size: .7rem; color: var(--muted); }
.product .btn-wa { width: 100%; padding: .7rem 1rem; font-size: .9rem; }
.product__note { grid-column: 1/-1; }

/* ---------- 15. Testimonials ---------- */
.quote { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); height:100%; display:flex; flex-direction:column; }
.quote__stars { color: #FFB020; display:flex; gap:2px; margin-bottom: 1rem; }
.quote__stars svg { width: 18px; height: 18px; }
.quote p { font-size: 1.02rem; color: var(--ink-soft); flex:1; }
.quote__author { display:flex; align-items:center; gap: .8rem; margin-top: 1.4rem; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg,var(--teal),var(--teal-700)); color:#fff; display:grid; place-items:center; font-family: var(--font-head); font-weight: 700; }
.quote__author b { font-family: var(--font-head); font-size: .98rem; }
.quote__author span { display:block; font-size: .82rem; color: var(--muted); }

/* ---------- 16. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq details { background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.25rem 1.5rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); display:flex; align-items:center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content:"+"; font-size: 1.6rem; font-weight: 400; color: var(--teal); transition: transform .25s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--teal-700); }
.faq__body { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }
.faq__body p + p { margin-top: .8rem; }

/* ---------- 17. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--teal-700), var(--teal-800)); color:#fff; border-radius: var(--radius-lg); padding: clamp(2.4rem,5vw,3.6rem); }
.cta-band::before { content:""; position:absolute; width: 320px; height: 320px; right: -80px; top: -120px; background: radial-gradient(circle, rgba(254,76,76,.35), transparent 70%); }
.cta-band__inner { position: relative; display:flex; flex-wrap: wrap; align-items:center; justify-content: space-between; gap: 1.6rem; }
.cta-band h2 { color:#fff; max-width: 620px; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: .6rem; max-width: 560px; }
.cta-band__actions { display:flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- 18. Blog ---------- */
.posts { display: grid; gap: 28px; }
@media (min-width: 720px){ .posts { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px){ .posts { grid-template-columns: repeat(3,1fr); } }
.post { display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post__media { aspect-ratio: 16/10; overflow:hidden; background: var(--teal-050); }
.post__media img { width:100%; height:100%; object-fit: cover; transition: transform .4s; }
.post:hover .post__media img { transform: scale(1.06); }
.post__body { padding: 1.5rem 1.5rem 1.7rem; display:flex; flex-direction:column; flex:1; }
.post__meta { display:flex; gap: 1rem; font-size: .8rem; color: var(--muted); margin-bottom: .7rem; }
.post__cat { color: var(--coral-700); font-family: var(--font-head); font-weight: 600; }
.post h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.post h3 a { color: var(--ink); }
.post h3 a:hover { color: var(--teal-700); }
.post p { font-size: .94rem; flex:1; }

/* ---------- 19. Article ---------- */
.article { max-width: 780px; margin-inline: auto; }
.article__hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 2rem; width:100%; aspect-ratio: 16/8; object-fit: cover; }
.prose { font-size: 1.08rem; color: var(--ink-soft); }
.prose h2 { margin: 2.2rem 0 .9rem; }
.prose h3 { margin: 1.8rem 0 .7rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1.1rem; }
.prose ul li { margin-bottom: .5rem; }
.prose blockquote { border-left: 4px solid var(--teal); background: var(--bg-tint); padding: 1rem 1.3rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.4rem 0; color: var(--ink); font-style: italic; }
.prose a { text-decoration: underline; }

/* ---------- 20. Contato ---------- */
.contact-grid { display:grid; gap: clamp(2rem,4vw,3rem); grid-template-columns: minmax(0,1fr); }
@media (min-width: 920px){ .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.info-list { display:grid; gap: 1.1rem; }
.info-item { display:flex; gap: 1rem; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-sm); }
.info-item__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-050); color: var(--teal-700); display:grid; place-items:center; flex:none; }
.info-item__icon svg { width: 22px; height: 22px; }
.info-item h3 { font-size: 1rem; margin-bottom: .15rem; }
.info-item p, .info-item a { font-size: .96rem; color: var(--ink-soft); }
.info-item a:hover { color: var(--teal-700); }

.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow); }
.form-row { display:grid; gap: 1.1rem; }
@media (min-width: 560px){ .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display:flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field label .req { color: var(--coral); }
.field input, .field textarea, .field select {
  border: 1.5px solid var(--line); border-radius: 12px; padding: .85rem 1rem; background: var(--bg-tint);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); background:#fff; box-shadow: 0 0 0 4px rgba(47,176,192,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field__hint { font-size: .8rem; color: var(--muted); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; display:flex; gap:.5rem; align-items:flex-start; }
.form-note svg { width: 18px; height: 18px; color: var(--teal); flex:none; margin-top: 1px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { display:block; width:100%; height: 380px; border: 0; }

/* ---------- 21. Page hero (interior pages) ---------- */
.page-hero { position: relative; color:#fff; isolation: isolate; padding-block: clamp(3rem,7vw,5rem); background: linear-gradient(120deg, var(--teal-800), var(--teal-600)); }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(circle at 85% 20%, rgba(254,76,76,.25), transparent 45%); }
.page-hero h1 { color:#fff; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 620px; margin-top: .8rem; font-size: 1.1rem; }
.breadcrumb { display:flex; gap:.5rem; align-items:center; font-size: .88rem; color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color:#fff; }
.breadcrumb span { opacity: .6; }

/* ---------- 22. Footer ---------- */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,.72); padding-top: clamp(3rem,6vw,4.5rem); }
.footer-grid { display:grid; gap: 2.4rem; grid-template-columns: 1fr; }
@media (min-width: 680px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 980px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.footer-brand__logo { height: 34px; margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(255,255,255,.66); font-size: .95rem; max-width: 320px; }
.footer-social { display:flex; gap:.6rem; margin-top: 1.4rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#fff; }
.footer-social a:hover { background: var(--teal); color:#fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3 { color:#fff; font-size: 1.05rem; margin-bottom: 1.2rem; }
.footer-col ul { display:grid; gap: .7rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer-col a:hover { color:#fff; padding-left: 4px; }
.footer-contact li { display:flex; gap:.7rem; align-items:flex-start; margin-bottom: .9rem; font-size: .93rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal); flex:none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(2.5rem,5vw,3.5rem); padding-block: 1.6rem; }
.footer-bottom .container { display:flex; flex-wrap: wrap; gap: 1rem; align-items:center; justify-content: space-between; font-size: .85rem; }
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-legal { display:flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- 23. Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color:#fff; display:grid; place-items:center; box-shadow: 0 12px 30px -6px rgba(37,211,102,.7); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); color:#fff; }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after { content:""; position:absolute; inset:0; border-radius:50%; border: 2px solid var(--wa); animation: wa-pulse 2.2s infinite; }
@keyframes wa-pulse { 0%{ transform: scale(1); opacity:.7 } 100%{ transform: scale(1.7); opacity: 0 } }

/* ---------- 24. Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity:1; transform:none; }
}

/* ---------- 25. Utilities ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:.6rem}.mt-2{margin-top:1.2rem}.mt-3{margin-top:2rem}
.mb-0{margin-bottom:0}.text-coral{color:var(--coral)}.text-teal{color:var(--teal-700)}
.tag-line { font-family: var(--font-script); color: var(--coral); font-size: 1.6rem; line-height: 1; }
.divider { height:1px; background: var(--line); border:0; margin-block: 2rem; }
.skip-link { position:absolute; left:-999px; top:0; background:#fff; color:var(--teal-800); padding:.7rem 1rem; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left:0; }

/* ---------- 26. Blindagem para telas pequenas ---------- */
.steps { grid-template-columns: 1fr; }
@media (min-width: 760px){ .steps { grid-template-columns: repeat(4,minmax(0,1fr)); } }
@media (max-width: 480px){
  :root { --gutter: 16px; }
  body { font-size: 16px; }
  .card { padding: 1.6rem 1.3rem; }
  .quote { padding: 1.6rem 1.3rem; }
  .step { padding: 2.2rem 1.2rem 1.5rem; }
  .product__body { padding: 1rem 1rem 1.2rem; }
  .product__name { font-size: 1rem; }
  .info-item { padding: 1rem 1.1rem; }
  .cta-band { padding: 1.8rem 1.4rem; }
  .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
}
/* Botões que quebram: nunca deixar texto vazar */
.btn { max-width: 100%; }
