/* ============================================================
   ADRIANA TELIS — Nutrição e Educação em Diabetes
   Sistema de design
   ============================================================ */

:root {
  /* Brand — extraídas do logo */
  --blue-900: #2F4567;
  --blue-700: #4A6285;
  --blue-500: #5B7BA8;
  --blue-300: #9AB1CE;
  --blue-100: #DCE5F0;
  --blue-50:  #EEF2F8;

  --lemon-700: #B89530;
  --lemon-500: #D9B85B;
  --lemon-300: #F2E2A3;
  --lemon-100: #F9F0CE;

  /* Neutros quentes */
  --off-white: #FDFCF9;
  --cream:     #F8F4EA;
  --cream-2:   #F3ECD8;
  --line:      #E5DCC4;
  --ink:       #2A2A28;
  --ink-soft:  #5F5E5A;
  --ink-mute:  #8E8B82;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script:'Caveat', cursive;

  /* Layout */
  --container: 1240px;
  --gutter: 32px;
  --radius: 4px;
  --radius-lg: 14px;
  --shadow-soft: 0 30px 60px -30px rgba(47, 69, 103, .25);
  --shadow-card: 0 8px 30px -12px rgba(47, 69, 103, .15);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
em { font-style: italic; }

::selection { background: var(--blue-100); color: var(--blue-900); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.two-col > * { min-width: 0; }

/* ============================================================
   TYPE
   ============================================================ */
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--blue-900);
  margin: 14px 0 18px;
  text-wrap: pretty;
}
.section-title em { color: var(--blue-700); font-style: italic; }

/* Emojis inseridos em títulos — herdam tamanho e ganham tinta no tom do título */
.title-emoji {
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
  color: transparent;
  /* O text-shadow com offset 0 e blur 0 "pinta" o emoji com a cor desejada
     em vez de exibi-lo em cores nativas. Funciona em Chrome, Safari e Firefox. */
  text-shadow: 0 0 0 var(--blue-900);
  margin-left: 0.18em;
  letter-spacing: 0.04em;
  opacity: 0.88;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lemon-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lemon-500);
  display: inline-block;
}

.caveat { font-family: var(--script); font-size: 1.25em; color: var(--blue-700); font-weight: 600; }

.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  text-wrap: pretty;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head.head-row {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head.head-row .section-title { margin-bottom: 0; }

.disclaimer {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-700);
  color: var(--off-white);
}
.btn-primary:hover {
  background: var(--blue-900);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(47, 69, 103, .55);
}
.btn-outline {
  border-color: var(--blue-700);
  color: var(--blue-700);
}
.btn-outline:hover { background: var(--blue-700); color: var(--off-white); }
.btn-ghost {
  color: var(--blue-700);
  padding: 14px 18px;
}
.btn-ghost:hover { color: var(--blue-900); transform: translateX(3px); }

.link-arrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--blue-700);
  position: relative;
  transition: color .25s var(--ease);
  display: inline-block;
}
.link-arrow:hover { color: var(--blue-900); }
.link-arrow.small { font-size: 14px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 249, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(253, 252, 249, 0.94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
  transition: padding .3s var(--ease);
}
.site-header.scrolled .header-inner { padding-top: 8px; padding-bottom: 8px; }
.brand {
  display: inline-flex;
  align-items: center;
  /* Garante uma faixa vertical limitada para o header não crescer junto com o logo. */
  height: 72px;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.brand-logo {
  /* Logo grande, mas com a altura do brand fixa, ele "transborda"
     visualmente para cima e para baixo sem afetar a altura do header */
  height: 168px;
  width: auto;
  transition: height .35s var(--ease), transform .35s var(--ease);
}
.site-header.scrolled .brand-logo { height: 132px; }
.brand:hover .brand-logo { transform: scale(1.03); }

.primary-nav {
  display: flex;
  gap: 32px;
}
.primary-nav a {
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--blue-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.primary-nav a:hover { color: var(--blue-900); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { padding: 11px 22px; font-size: 14px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px; height: 1.5px; background: var(--blue-900);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 32px 28px;
  border-top: 1px solid var(--line);
  background: var(--off-white);
}
.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
}
.mobile-nav a.btn { margin-top: 16px; border-bottom: 0; }
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1200px 600px at 70% 0%, var(--blue-50), transparent 70%),
    radial-gradient(ellipse 800px 500px at 10% 80%, var(--cream), transparent 70%),
    var(--off-white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 600px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--blue-900);
  margin: 22px 0 24px;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--blue-700);
  font-family: var(--serif);
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}
.hero-meta span {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
}
.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo::after {
  /* leve gradiente para amarrar com o tom da página */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(47, 69, 103, 0.06));
  pointer-events: none;
}
.hero-lemon {
  position: absolute;
  width: 360px; height: 360px;
  right: -100px;
  top: -80px;
  z-index: -1;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  /* posicionado abaixo da foto, ancorado à esquerda, para não sobrepor a imagem */
  bottom: -36px;
  left: 24px;
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: 18px 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.badge-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--blue-700);
  line-height: 1;
  font-style: italic;
}
.badge-text {
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.hero-script {
  position: absolute;
  bottom: 30px;
  right: 32px;
  font-family: var(--script);
  font-size: 26px;
  color: var(--blue-300);
  transform: rotate(-3deg);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   PHOTO SLOTS (placeholders)
   ============================================================ */
.photo-slot {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background:
    repeating-linear-gradient(
      135deg,
      var(--cream) 0 12px,
      var(--cream-2) 12px 24px
    );
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-soft);
  overflow: hidden;
}
.photo-slot::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(74, 98, 133, 0.25);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.slot-tag {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--blue-700);
  background: var(--off-white);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  z-index: 1;
}
.slot-hint {
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  text-align: center;
  max-width: 80%;
  z-index: 1;
}
.photo-hero { aspect-ratio: 4/5; min-height: 480px; }
.photo-portrait { aspect-ratio: 4/5; min-height: 460px; }
.photo-thumb { aspect-ratio: 16/10; min-height: 200px; }

/* Foto da seção "Quem sou" — mesmo tratamento do hero */
.qs-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}
.qs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.qs-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(47, 69, 103, 0.06));
  pointer-events: none;
}

/* ============================================================
   PHILOSOPHY STRIP
   ============================================================ */
.philosophy {
  background: var(--blue-900);
  color: var(--off-white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 100% 50%, rgba(184, 149, 48, 0.18), transparent 60%);
  pointer-events: none;
}
.philosophy-inner {
  text-align: center;
  position: relative;
  max-width: 880px;
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--off-white);
  margin: 0 0 28px;
  text-wrap: balance;
}
.philosophy-quote em { font-style: italic; color: var(--lemon-300); }
.quote-mark {
  font-family: var(--serif);
  font-size: 2em;
  line-height: 0;
  display: inline-block;
  color: var(--lemon-500);
  vertical-align: -0.15em;
  margin-right: 6px;
}
.philosophy-sig {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--blue-300);
  margin: 0;
}
.philosophy-sig .caveat { color: var(--lemon-300); font-size: 1.5em; margin-left: 6px; }

/* ============================================================
   QUEM SOU
   ============================================================ */
.quem-sou { padding: 120px 0; }
.qs-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  padding: 22px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.qs-credentials > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qs-credentials strong {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lemon-700);
  font-weight: 600;
}
.qs-credentials span {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--blue-900);
  font-weight: 500;
  line-height: 1.3;
}
.qs-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.qs-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qs-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
}
.qs-bullet {
  color: var(--lemon-700);
  font-size: 14px;
  line-height: 1.6;
  flex-shrink: 0;
}

/* ============================================================
   ATENDIMENTOS
   ============================================================ */
.atendimentos {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.atend-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.atend-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--blue-300);
}
.atend-card.featured {
  background: var(--blue-900);
  color: var(--off-white);
  border-color: var(--blue-900);
}
.atend-card.featured:hover { border-color: var(--blue-700); }
.atend-card.featured h3 { color: var(--off-white); }
.atend-card.featured .card-num { color: var(--lemon-300); }
.atend-card.featured .card-lede { color: var(--lemon-300); }
.atend-card.featured p { color: var(--blue-100); }
.atend-card.featured .card-tags li {
  background: rgba(255,255,255,0.08);
  color: var(--blue-100);
  border-color: rgba(255,255,255,0.15);
}

.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--lemon-700);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.atend-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  color: var(--blue-900);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.card-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--blue-700);
  margin: 0 0 16px;
}
.atend-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
  flex-grow: 1;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card-tags li {
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--blue-700);
  background: var(--off-white);
  letter-spacing: 0.02em;
}

.modalidade-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 36px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.modalidade-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 0;
  align-items: center;
}
.ms-icon {
  grid-row: 1 / 3;
  font-size: 26px;
  color: var(--lemon-700);
  line-height: 1;
}
.modalidade-strip strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}
.modalidade-strip span:not(.ms-icon) {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   CONTEÚDOS
   ============================================================ */
.conteudos {
  padding: 120px 0;
  background: var(--cream);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.post {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease);
}
.post:hover { transform: translateY(-4px); }
.post:hover .photo-thumb::after {
  opacity: 1;
}
.post-thumb { position: relative; }
.post-thumb .photo-thumb {
  min-height: 220px;
}
.post-thumb .photo-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(47, 69, 103, 0.15));
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}
.post-cat {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lemon-700);
  font-weight: 600;
}
.post-date {
  font-size: 12px;
  color: var(--ink-mute);
}
.post-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  color: var(--blue-900);
  margin: 0;
  letter-spacing: -0.01em;
}
.post-excerpt {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  padding: 120px 0;
  background: var(--off-white);
}
.contato .two-col { gap: 100px; align-items: start; }

.contato-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.contato-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contato-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contato-list li:last-child { border-bottom: 0; }
.ci-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lemon-700);
  font-weight: 600;
}
.ci-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--blue-900);
  letter-spacing: -0.01em;
  transition: color .25s var(--ease);
}
a.ci-value:hover { color: var(--blue-700); }

.contato-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
}
.contato-form h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--blue-900);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.form-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.contato-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.contato-form label > span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.contato-form label > span small {
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink-mute);
  font-weight: 400;
}
.contato-form input,
.contato-form select,
.contato-form textarea {
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px var(--blue-100);
}
.radio-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.radio-row .radio {
  flex: 1;
  display: block;
  margin: 0;
  cursor: pointer;
}
.radio-row .radio input { position: absolute; opacity: 0; pointer-events: none; }
.radio-row .radio span {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  font-size: 14px;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.radio-row .radio input:checked + span {
  background: var(--blue-700);
  color: var(--off-white);
  border-color: var(--blue-700);
}
.form-submit { width: 100%; margin-top: 12px; padding: 16px; }
.form-success {
  margin: 16px 0 0;
  padding: 14px;
  background: #DDEEE3;
  color: #2D6A4F;
  border-radius: var(--radius);
  font-size: 14px;
  text-align: center;
  display: none;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-900);
  color: var(--blue-100);
  padding: 80px 0 0;
  margin-top: 40px;
  position: relative;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .footer-logo {
  width: 220px;
  height: auto;
  background: transparent;
  padding: 0;
  margin-bottom: 18px;
}
.footer-tag {
  font-size: 15px;
  line-height: 1.5;
  color: var(--blue-300);
  margin: 0;
  max-width: 280px;
}
.footer-tag .caveat { color: var(--lemon-300); font-size: 1.4em; }

.footer-nav,
.footer-contact,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lemon-300);
  margin: 0 0 8px;
  font-weight: 600;
}
.site-footer a {
  color: var(--blue-100);
  font-size: 14px;
  transition: color .25s var(--ease);
}
.site-footer a:hover { color: var(--off-white); }
.footer-legal p {
  margin: 0;
  font-size: 14px;
  color: var(--blue-100);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: var(--blue-300);
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-style: italic;
  max-width: 480px;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: #fff;
  padding: 14px 18px 14px 18px;
  border-radius: 999px;
  box-shadow:
    0 10px 30px -8px rgba(37, 211, 102, 0.45),
    0 4px 12px -4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  overflow: hidden;
  max-width: 260px;
  cursor: pointer;
}
.wa-float:hover {
  background: #1FB855;
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 16px 36px -8px rgba(37, 211, 102, 0.55),
    0 6px 16px -4px rgba(0, 0, 0, 0.25);
  color: #fff;
}
.wa-float-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.wa-float-label {
  white-space: nowrap;
  margin-left: 10px;
  margin-right: 2px;
}

/* gentle pulse to draw attention */
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: wa-pulse 2.4s infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 720px) {
  .wa-float {
    bottom: 18px;
    right: 18px;
    padding: 12px;
  }
  .wa-float-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .two-col { grid-template-columns: 1fr; gap: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr; gap: 18px; }
  .posts-grid { grid-template-columns: 1fr; gap: 40px; }
  .modalidade-strip { grid-template-columns: 1fr; gap: 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-head.head-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  :root { --gutter: 22px; }
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .brand { height: 56px; }
  .brand-logo { height: 112px; }
  .site-header.scrolled .brand-logo { height: 92px; }
  .hero { padding: 50px 0 80px; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -28px; padding: 14px 18px; }
  .badge-num { font-size: 30px; }
  .quem-sou, .atendimentos, .conteudos, .contato { padding: 80px 0; }
  .qs-credentials { grid-template-columns: 1fr; }
  .contato-form { padding: 28px; }
  .contato-list li { grid-template-columns: 1fr; gap: 4px; }
  .ci-value { font-size: 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; }
  .section-head { margin-bottom: 40px; }
}
