/* ===== Base / Tokens ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }
:root{
  --fg: #e6f1f3;
  --fg-strong: #ffffff;
  --accent-1: #0ea5e9;  /* azul */
  --accent-2: #16a34a;  /* verde */
  --outline: rgba(255,255,255,.12);
}

/* Fundo contínuo (não reinicia ao rolar) */
html {
  background:
    radial-gradient(1100px 600px at 15% -10%, #1b6071 0%, rgba(27,96,113,0) 60%),
    radial-gradient(900px 520px at 95% 10%, #163c48 0%, rgba(22,60,72,0) 60%),
    linear-gradient(180deg, #0e2a32 0%, #0b1d22 100%);
  background-attachment: fixed, fixed, fixed;
}
body {
  margin: 0;
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Layout ===== */
.page { min-height: 100%; display: grid; place-items: start center; }
.ti-hero { width: 100%; padding: clamp(56px, 7vw, 100px) 20px; }
.ti-hero__container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;            /* tudo centralizado */
  display: grid;
  gap: 14px;                     /* ritmo vertical */
  justify-items: center;         /* garante centro nos blocos */
}

/* LOGO */
.ti-hero__logo {
  display: block;
  width: clamp(170px, 22vw, 240px);
  height: auto;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,.35));
  user-select: none;
  pointer-events: none;
}

/* LOCAL */
.ti-hero__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg-strong);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
  margin-top: 2px;
}

/* HEADLINE + EXPLICAÇÃO */
.ti-hero__header { margin-top: 10px; }
.ti-hero__title{
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 5.2vw, 48px);
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  line-height: 1.12;
}
.ti-hero__title span{ display:block; } /* quebra de linha organizada */

.ti-hero__subtitle{
  margin: 12px auto 0;
  max-width: 860px;
  font-size: clamp(14px, 2.2vw, 18px);
  color: var(--fg-strong);
  opacity: .95;
}
.ti-hero__subtitle em{ font-style: normal; color: #b5ecf6; }
.ti-hero__subtitle strong{ color: var(--fg-strong); font-weight: 700; }

/* VÍDEO */
.ti-video{ margin-top: clamp(18px, 4vw, 32px); width: 100%; display: grid; place-items: center; }
.ti-video__frame{
  position: relative;
  width: min(100%, 1040px);
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  background: #061317;
  outline: 1px solid var(--outline);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.ti-video__iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* CTA (mesma largura do vídeo) */
.ti-cta{ width: min(100%, 1040px); margin: clamp(14px, 3vw, 24px) auto 0; text-align: center; }
.ti-cta__btn{
  display: inline-flex; width: 100%;
  align-items: center; justify-content: center; gap: 10px;
  padding: clamp(14px, 2.5vw, 18px);
  border-radius: 18px;
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent-1) 100%);
  color: var(--fg-strong);
  font-weight: 800; letter-spacing: .2px;
  font-size: clamp(16px, 2.2vw, 18px);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(14, 165, 233, .28);
  outline: 1px solid var(--outline);
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.ti-cta__btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.ti-cta__btn:active{ transform: translateY(0); }
.ti-cta__icon{ width: 22px; height: 22px; fill: currentColor; }
.ti-cta__note{
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--fg-strong);
  opacity: .92;
}

/* Responsivo extra */
@media (min-width: 1024px){
  .ti-hero{ padding-top: 96px; }
}

/* ===== INDICAÇÕES & BENEFÍCIOS ===== */
.ti-indic{
  width: 100%;
  padding: clamp(40px, 6vw, 80px) 20px;
}
.ti-indic__container{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  justify-items: center;
}

.ti-indic__header{ max-width: 880px; }
.ti-indic__title{
  margin: 0;
  color: var(--fg-strong);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 4.6vw, 40px);
  line-height: 1.16;
}
.ti-indic__title span{ color: #b5ecf6; }
.ti-indic__lead{
  margin: 10px auto 0;
  color: var(--fg-strong);
  opacity: .92;
  font-size: clamp(14px, 2.2vw, 18px);
}

/* Cards grid */
.ti-indic__grid{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 860px){
  .ti-indic__grid{ grid-template-columns: 1fr 1fr; gap: 18px; }
}

.ti-card{
  height: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: clamp(16px, 2.6vw, 22px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.ti-card__icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  outline: 1px solid var(--outline);
}
.ti-card__icon svg{ width: 22px; height: 22px; fill: var(--fg-strong); opacity: .95; }

.ti-card__title{
  margin: 6px 0 0;
  color: var(--fg-strong);
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 22px);
  letter-spacing: -.01em;
}
.ti-card__list{
  list-style: none;
  padding: 0; margin: 8px 0 0;
  display: grid; gap: 8px;
  color: var(--fg);
  font-size: clamp(14px, 2.2vw, 16px);
}
.ti-card__list li{ line-height: 1.45; }

/* Benefícios como pills */
.ti-benef{
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: clamp(14px, 2.4vw, 18px);
}
.ti-benef__title{
  margin: 0 0 10px 0;
  font-size: clamp(18px, 2.8vw, 22px);
  color: var(--fg-strong);
  font-weight: 700;
}
.ti-benef__pills{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22,163,74,.9), rgba(14,165,233,.9));
  color: var(--fg-strong);
  font-weight: 600; font-size: 13px;
  white-space: nowrap;
  outline: 1px solid var(--outline);
}

/* Cuidados / Contraindicações */
.ti-cautions{
  width: 100%;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: clamp(16px, 2.6vw, 22px);
}
.ti-cautions__icon{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  outline: 1px solid var(--outline);
}
.ti-cautions__icon svg{ width: 24px; height: 24px; fill: var(--fg-strong); }
.ti-cautions__title{
  margin: 4px 0 0; color: var(--fg-strong);
  font-size: clamp(18px, 2.8vw, 22px); font-weight: 700;
}
.ti-cautions__text{
  margin: 6px 0 0; max-width: 880px;
  color: var(--fg); font-size: clamp(14px, 2.2vw, 16px);
}

/* ===== TERAPIAS INJETÁVEIS ===== */
.inj{
  width: 100%;
  padding: clamp(40px, 6vw, 80px) 20px;
}
.inj__container{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  justify-items: center;
}

.inj__header{ max-width: 920px; }
.inj__title{
  margin: 0;
  color: var(--fg-strong);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 4.6vw, 40px);
  line-height: 1.16;
}
.inj__title span{ color: #b5ecf6; }
.inj__subtitle{
  margin: 8px 0 0;
  color: var(--fg);
  opacity: .95;
  font-size: clamp(14px, 2.2vw, 18px);
}

.inj__player{
  width: 100%;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.pv-wrap{
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--outline);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  background: rgba(255,255,255,.03);
}
.pv-frame{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.inj__hint{
  color: var(--fg);
  opacity: .8;
  font-size: 12px;
}

.inj__quote{
  margin: 6px 0 0;
  max-width: 880px;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}
.inj__quote blockquote{
  margin: 0;
  color: var(--fg-strong);
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.5;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: clamp(12px, 2.4vw, 18px);
  position: relative;
}
.inj__quote blockquote::before{
  content: "“";
  position: absolute;
  left: 14px; top: -8px;
  font-size: 48px; line-height: 1;
  color: rgba(255,255,255,.25);
}
.inj__quote figcaption{
  color: var(--fg);
  opacity: .9;
  font-size: 13px;
}

/* ===== OZONIOTERAPIA ===== */
.ozo{
  width: 100%;
  padding: clamp(44px, 6.4vw, 92px) 20px;
  /* Fundo sereno — mantém continuidade em telas longas */
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(180,246,255,.12), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}
.ozo__container{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: clamp(20px, 3.2vw, 32px);
  justify-items: center;
}

.ozo__pill{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg, #e8f7fb);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--outline, rgba(255,255,255,.12));
  backdrop-filter: blur(6px);
}
.ozo__title{
  margin: 10px 0 0;
  color: var(--fg-strong, #ffffff);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 4.8vw, 42px);
  line-height: 1.14;
}
.ozo__title span{ color: #b5ecf6; }
.ozo__lead{
  margin: 10px 0 0;
  color: var(--fg, #dfeff3);
  opacity: .95;
  font-size: clamp(14px, 2.2vw, 18px);
}

/* pilares */
.ozo__pillars{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(14px, 2.4vw, 22px);
  width: min(980px, 100%);
  margin: 8px 0 0;
}
@media (max-width: 860px){
  .ozo__pillars{ grid-template-columns: 1fr; }
}
.ozo__pillar{
  padding: clamp(14px, 2.6vw, 20px);
  border: 1px solid var(--outline, rgba(255,255,255,.12));
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  display: grid;
  gap: 6px;
  justify-items: center;
}
.ozo__ico{ width: 26px; height: 26px; opacity: .9; margin-bottom: 2px; }
.ozo__pillar h3{
  margin: 0;
  color: var(--fg-strong, #fff);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 700;
}
.ozo__pillar p{
  margin: 0;
  color: var(--fg, #deedf2);
  opacity: .92;
  font-size: clamp(13px, 1.9vw, 15px);
}

/* player */
.ozo__player{
  width: 100%;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.pv-wrap{
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--outline, rgba(255,255,255,.12));
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  background: rgba(255,255,255,.03);
}
.pv-frame{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ozo__hint{ color: var(--fg, #dbeaf0); opacity: .8; font-size: 12px; }

/* benefícios */
.ozo__benefits{
  width: 100%;
  max-width: 1020px;
  display: grid;
  gap: clamp(14px, 2.4vw, 22px);
  justify-items: center;
}
.ozo__benefitsTitle{
  margin: 8px 0 0;
  color: var(--fg-strong, #fff);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.ozo__benefitsTitle span{ color: #b5ecf6; }
.ozo__benefitsGrid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(12px, 2.2vw, 18px);
}
@media (max-width: 980px){
  .ozo__benefitsGrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .ozo__benefitsGrid{ grid-template-columns: 1fr; }
}
.ozo__benefitsGrid li{
  list-style: none;
  text-align: left;
  padding: clamp(14px, 2.2vw, 18px);
  border: 1px solid var(--outline, rgba(255,255,255,.12));
  background: rgba(255,255,255,.035);
  border-radius: 14px;
}
.ozo__benefitsGrid h4{
  margin: 0 0 6px;
  color: var(--fg-strong, #fff);
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 700;
}
.ozo__benefitsGrid p{
  margin: 0;
  color: var(--fg, #dcecf1);
  opacity: .9;
  font-size: clamp(13px, 1.9vw, 15px);
  line-height: 1.45;
}

/* evidências */
.ozo__evidence{
  width: min(980px, 100%);
  text-align: left;
  padding: clamp(14px, 2.4vw, 18px);
  border: 1px dashed var(--outline, rgba(255,255,255,.18));
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border-radius: 14px;
}
.ozo__evidenceBadge{
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--fg, #eaf7fb);
  background: rgba(181,236,246,.12);
  border: 1px solid rgba(181,236,246,.28);
}
.ozo__evidence p{
  margin: 6px 0;
  color: var(--fg, #e0f0f4);
  opacity: .95;
  font-size: clamp(13px, 2vw, 15px);
}
.ozo__evidenceFoot{
  opacity: .85;
  font-size: clamp(12px, 1.8vw, 14px);
}

/* ===== PROFISSIONAIS (sem background, imagem altura original) ===== */
.pro-cards{ padding: clamp(28px, 5vw, 72px) 20px; background: none; 
}
.pro-cards__container{ max-width: 1200px; margin: 0 auto; }
.pro-cards__title{
  text-align: center; margin: 0 0 24px;
  font-weight: 800; letter-spacing: -.02em; font-size: clamp(22px, 4vw, 36px);
}

.pro-cards__grid{
  display: grid; gap: clamp(16px, 2.2vw, 24px);
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 980px){ .pro-cards__grid{ grid-template-columns: 1fr; } }

.pro-card{
  border-radius: 16px; overflow: hidden;
  background: transparent;               /* sem fundo no card */
  border: 1px solid rgba(255,255,255,.12); /* se o site for claro, troque por rgba(0,0,0,.08) */
  color: inherit;
}

.pro-card__img{
  display: block;
  width: 100%;
  height: auto;     /* mantém a altura original da imagem */
  object-fit: contain;  /* nenhuma parte é cortada */
}

.pro-card__body{ padding: clamp(14px, 2vw, 20px); }

.pro-card__name{
  margin: 0 0 2px; font-size: clamp(20px, 3vw, 28px);
  font-weight: 800; letter-spacing: -.01em;
}
.pro-card__role{ margin: 0; font-weight: 600; opacity: .95; }
.pro-card__reg{ margin: 6px 0 14px; font-size: 14px; opacity: .9; }

.pro-card__list{
  margin: 0; padding-left: 0; display: grid; gap: 10px;
  font-size: clamp(14px, 2vw, 16px); line-height: 1.45;
}
.pro-card__list li{
  list-style: none; position: relative; padding-left: 22px;
}
.pro-card__list li::before{
  content: "➜"; position: absolute; left: 0; top: 0;
  font-size: 14px; opacity: .6;
}

/* ===== Footer ===== */
.footer{
  width:100%;
  background:#0b1014; /* fundo único, 100% full-bleed */
  color:#e7eff5;
  padding: clamp(28px, 4vw, 48px) 20px;
}
.footer__container{
  max-width: 1080px;
  margin: 0 auto;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items:start;
}
.footer__brand{
  display:flex;
  align-items:flex-start;
}
.footer__logo{
  height: 46px;
  width:auto;
  object-fit: contain;
  filter: none; /* logo branco já entregue no arquivo */
}
.footer__title{
  margin:0 0 8px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}
.footer__block p{
  margin: 6px 0;
  line-height: 1.4;
}
.footer__link{
  color:#e7eff5;
  text-decoration:none;
  border-bottom:1px dashed transparent;
}
.footer__link:hover{
  border-bottom-color: rgba(231,239,245,.6);
}
.footer__legal{
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  opacity: .9;
}

/* Responsivo */
@media (max-width: 900px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px){
  .footer__grid{
    grid-template-columns: 1fr;
  }
  .footer__brand{ margin-bottom: 8px; }
  .footer__logo{ height: 40px; }
}

/* ===== Floating WhatsApp Button ===== */
.wa-fab{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 4px 12px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .2s ease;
  z-index: 9999;
}
.wa-fab__icon{
  width: 64px;
  height: 64px;
  display:block;
  border-radius: 50%;
}
.wa-fab:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.42), 0 6px 16px rgba(0,0,0,.30);
}
@media (max-width: 480px){
  .wa-fab{
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
  .wa-fab__icon{ width:56px; height:56px; }
}


/* ============================
   MOBILE – AJUSTES RESPONSIVOS
   Cole ao final do arquivo
   ============================ */

/* Até tablets pequenos */
@media (max-width: 768px){

  /* Ritmo geral */
  .ti-hero,
  .ti-indic,
  .inj,
  .ozo,
  .pro-cards,
  .footer { padding-left:16px; padding-right:16px; }

  /* Hero */
  .ti-hero__container { gap: 12px; }
  .ti-hero__logo { width: clamp(150px, 36vw, 200px); }
  .ti-hero__subtitle { max-width: 680px; }

  /* Vídeo */
  .ti-video__frame,
  .pv-wrap { border-radius: 14px; box-shadow: 0 10px 24px rgba(0,0,0,.28); }

  /* CTA */
  .ti-cta { margin-top: 16px; }
  .ti-cta__btn { border-radius: 14px; padding: 14px; }

  /* Cards / listas */
  .ti-card { padding: 16px; gap: 8px; }
  .ti-card__list { gap: 6px; }

  /* Benefícios (pills) */
  .pill { padding: 7px 12px; font-size: 12px; }

  /* Inj – citação */
  .inj__quote blockquote { border-radius: 12px; padding: 14px; }
  .inj__quote blockquote::before { left: 10px; top: -6px; font-size: 40px; }

  /* Ozo – pilares e benefícios já colapsam, só suaviza */
  .ozo__pillar { padding: 16px; }

  /* Profissionais */
  .pro-cards__grid { grid-template-columns: 1fr; }
  .pro-card { border-radius: 14px; }
  .pro-card__img { max-height: none; }
  .pro-card__body { padding: 14px; }
  .pro-card__list li { padding-left: 18px; }
  .pro-card__list li::before { font-size: 12px; top: 1px; }

  /* Footer */
  .footer__grid { gap: 16px; }
  .footer__logo { height: 42px; }
}

/* Smartphones (≤560px) */
@media (max-width: 560px){

  /* Tipografia principal (clamp já ajuda; aqui só reduz margens) */
  .ti-hero__title { letter-spacing: -0.015em; }
  .ti-hero__subtitle { margin-top: 10px; }

  /* Hero badge */
  .ti-hero__badge { padding: 6px 12px; font-size: 12px; }

  /* CTA nota */
  .ti-cta__note { font-size: 13px; }

  /* Grades em 1 coluna */
  .ti-indic__grid { grid-template-columns: 1fr; gap: 12px; }
  .ozo__benefitsGrid { grid-template-columns: 1fr; }
  .ozo__pillars { grid-template-columns: 1fr; }

  /* Evidências */
  .ozo__evidence { border-radius: 12px; padding: 14px; }

  /* Profissionais – foco na imagem 100% */
  .pro-card__img { width: 100%; height: auto; object-fit: contain; }
  .pro-card__name { font-size: 22px; }
  .pro-card__reg { font-size: 13px; }

  /* Footer em coluna (já previsto; só refine) */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__logo { height: 38px; }
  .footer__legal { font-size: 13px; }
}

/* Smartphones compactos (≤400px) */
@media (max-width: 400px){

  /* Espaçamentos menores */
  .ti-hero { padding-top: 44px; }
  .ti-hero__container { gap: 10px; }

  /* Texto */
  .ti-hero__title { font-weight: 800; }
  .ti-hero__subtitle { line-height: 1.45; }

  /* Botão CTA: toque confortável */
  .ti-cta__btn { padding: 12px; font-size: 15px; }
  .ti-cta__icon { width: 20px; height: 20px; }

  /* Cards */
  .ti-card__title { font-size: 18px; }
  .ti-card__list { font-size: 14px; }

  /* Citações / dicas */
  .inj__hint, .ozo__hint { font-size: 11px; }

  /* WhatsApp FAB (já tem regra aos 480px; aqui uma leve redução extra) */
  .wa-fab { right: 12px; bottom: 12px; width: 52px; height: 52px; }
  .wa-fab__icon { width: 52px; height: 52px; }
}

