/* ============================================================
   VARIÁVEIS & RESET
   ============================================================ */
:root {
  --deep-teal:   #0B5E5E;
  --teal:        #12968F;
  --mint:        #7FCFC4;
  --light-teal:  #E9F5F3;
  --amber:       #EE9B4D;
  --light-amber: #FBEEDC;
  --ink:         #14322F;
  --muted:       #5E807C;
  --white:       #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(11,94,94,.08);
  --shadow-md: 0 4px 24px rgba(11,94,94,.12);
  --shadow-lg: 0 8px 48px rgba(11,94,94,.16);

  --header-h: 68px;
  --transition: 220ms ease;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 5rem;
}

.section--teal-light  { background: var(--light-teal); }
.section--amber-light { background: var(--light-amber); }
.section--dark {
  background: var(--deep-teal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: .75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-header--light h2,
.section-header--light .section-title { color: var(--white); }

.section-desc { color: var(--muted); font-size: 1.05rem; }
.section-desc--light { color: var(--mint); }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--light-teal);
  padding: .25rem .75rem;
  border-radius: 99px;
  margin-bottom: .75rem;
}
.section-tag--teal  { color: var(--teal); background: var(--light-teal); }
.section-tag--amber { color: var(--amber); background: var(--light-amber); }
.section-tag--mint  { color: var(--mint); background: rgba(127,207,196,.15); }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(18,150,143,.35);
}
.btn-primary:hover { background: var(--deep-teal); box-shadow: 0 6px 20px rgba(18,150,143,.45); }

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

.btn-nav {
  background: var(--teal);
  color: var(--white);
  padding: .5rem 1.2rem;
  font-size: .875rem;
}
.btn-nav:hover { background: var(--deep-teal); }

.btn-lg { padding: .85rem 1.8rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   ÍCONES CIRCULARES
   ============================================================ */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-circle--teal   { background: var(--light-teal); color: var(--teal); }
.icon-circle--mint   { background: rgba(127,207,196,.2); color: var(--mint); }
.icon-circle--amber  { background: var(--light-amber); color: var(--amber); }
.icon-circle--whatsapp { background: #25D366; color: var(--white); }

.icon-circle--sm  { width: 36px; height: 36px; }
.icon-circle--md  { width: 52px; height: 52px; }
.icon-circle--lg  { width: 72px; height: 72px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled .logo-text { color: var(--ink); }
.site-header.scrolled .nav-desktop a { color: var(--muted); }
.site-header.scrolled .nav-desktop a:hover { color: var(--teal); }
.site-header.scrolled .menu-toggle .hamburger,
.site-header.scrolled .menu-toggle .hamburger::before,
.site-header.scrolled .menu-toggle .hamburger::after { background: var(--ink); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-text { color: var(--white); transition: color var(--transition); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}
.nav-desktop a:hover { color: var(--white); }

/* Hamburguer */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  padding: 4px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  background: var(--white);
  border-top: 1px solid var(--light-teal);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.nav-mobile[hidden] { display: none; }

.mobile-link {
  display: block;
  padding: .75rem 0;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--light-teal);
  transition: color var(--transition);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--teal); }

.mobile-cta {
  display: inline-flex;
  margin-top: .75rem;
  background: var(--teal);
  color: var(--white) !important;
  padding: .75rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
  border-bottom: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--deep-teal);
  color: var(--white);
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(127,207,196,.1);
  pointer-events: none;
}
.hero-bg-circle--1 { width: 500px; height: 500px; top: -180px; right: -100px; }
.hero-bg-circle--2 { width: 300px; height: 300px; bottom: 60px; left: -80px; background: rgba(238,155,77,.08); }

/* Diferencial section circles */
.hero-bg-circle--diff1 { width: 400px; height: 400px; top: -100px; right: -60px; }
.hero-bg-circle--diff2 { width: 250px; height: 250px; bottom: -60px; left: -60px; background: rgba(238,155,77,.07); }
/* Contato section circles */
.hero-bg-circle--cont1 { width: 450px; height: 450px; top: -120px; right: -80px; }
.hero-bg-circle--cont2 { width: 280px; height: 280px; bottom: 40px; left: -60px; background: rgba(238,155,77,.07); }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 4rem;
}

.hero-tag {
  display: inline-block;
  background: rgba(127,207,196,.2);
  color: var(--mint);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: .75rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--mint);
  line-height: 1.55;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration { position: relative; z-index: 1; }

.hero-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #0B3C3A;
  border: 1px solid rgba(127,207,196,.2);
  border-radius: var(--radius-lg);
  padding: .85rem 1.25rem;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.hero-card-float strong { display: block; font-size: .9rem; color: #ffffff; font-weight: 700; }
.hero-card-float span  { font-size: .78rem; color: #a8e6df; }

.hero-card-float--1 { top: 4%; left: -30px; animation-delay: 0s; }
.hero-card-float--2 { bottom: 4%; right: -30px; animation-delay: 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Wave */
.hero-wave {
  line-height: 0;
  margin-top: -1px;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-imagem {
  position: relative;
  display: flex;
  justify-content: center;
}

.foto-placeholder {
  width: 280px; height: 320px;
  background: var(--light-teal);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--muted);
  font-size: .875rem;
  border: 2px dashed var(--mint);
}

.sobre-badge {
  position: absolute;
  bottom: -12px; right: 20px;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 99px;
  box-shadow: var(--shadow-md);
}

.sobre-texto .section-tag { margin-bottom: 1rem; }

.sobre-bio {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.credenciais {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credenciais li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.credenciais li strong { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); }
.credenciais li span  { font-size: .875rem; color: var(--muted); }

/* ============================================================
   ÁREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.area-card--teal { background: var(--white); border: 1.5px solid var(--mint); box-shadow: var(--shadow-sm); }
.area-card--amber { background: var(--white); border: 1.5px solid #f0c898; box-shadow: var(--shadow-sm); }

.area-card h3 {
  font-size: 1.3rem;
  color: var(--ink);
}

.area-card p { color: var(--muted); font-size: .95rem; line-height: 1.6; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .25rem;
}
.area-tags li {
  font-size: .75rem;
  font-weight: 500;
  padding: .2rem .7rem;
  border-radius: 99px;
}

.area-card--teal  .area-tags li { background: var(--light-teal); color: var(--teal); }
.area-card--amber .area-tags li { background: var(--light-amber); color: var(--amber); }

.area-link {
  font-size: .875rem;
  font-weight: 600;
  margin-top: auto;
}
.area-card--teal  .area-link { color: var(--teal); }
.area-card--amber .area-link { color: var(--amber); }

/* ============================================================
   RESP / PED — GRID DE CONTEÚDO
   ============================================================ */
.resp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.resp-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(127,207,196,.2);
}

.section--amber-light .resp-col { border-color: rgba(238,155,77,.2); }

.col-title {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.col-title--amber { color: var(--ink); }

/* Listas */
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  padding-block: .35rem;
  font-size: .95rem;
  color: var(--muted);
  border-bottom: 1px solid var(--light-teal);
}
.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.check-list--amber li { border-bottom-color: #f5dfc0; }
.check-list--amber li::before { background: var(--amber); }

.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-list li { padding-left: 1rem; border-left: 3px solid var(--teal); }
.feature-list--amber li { border-left-color: var(--amber); }

.feature-list li strong { display: block; font-size: .9rem; color: var(--ink); margin-bottom: .15rem; }
.feature-list li span  { font-size: .875rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   DIFERENCIAL
   ============================================================ */
.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.dif-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(127,207,196,.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background var(--transition);
}
.dif-card:hover { background: rgba(255,255,255,.12); }

.dif-card h3 { font-size: 1.05rem; color: var(--white); }
.dif-card p  { font-size: .9rem; color: var(--mint); line-height: 1.55; }

/* ============================================================
   STEPS / COMO FUNCIONA
   ============================================================ */
.steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: steps;
  margin-bottom: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 52px;
  bottom: -1.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--mint), transparent);
}

.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 12px rgba(18,150,143,.3);
}

.step-content {
  background: var(--white);
  border: 1px solid var(--light-teal);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.step-content h3 { font-size: 1rem; margin-bottom: .25rem; color: var(--ink); }
.step-content p  { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* Locais */
.locais {
  background: var(--light-teal);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}

.locais-titulo {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
  text-align: center;
}

.locais-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.local-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink);
  background: var(--white);
  padding: .6rem 1.1rem;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
}

.local-item--destaque {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(18,150,143,.35);
  font-weight: 600;
}
.local-item--destaque .icon-circle--teal {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.local-item--destaque em {
  font-style: normal;
  font-size: .78rem;
  opacity: .85;
  margin-left: .15rem;
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.beneficio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(127,207,196,.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.beneficio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.beneficio-card h3 { font-size: 1.05rem; color: var(--ink); }
.beneficio-card p  { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1.5px solid var(--light-teal);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  border-color: var(--mint);
  box-shadow: var(--shadow-sm);
}

.faq-pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color .2s ease, background .2s ease;
}
.faq-pergunta::-webkit-details-marker { display: none; }
.faq-item[open] .faq-pergunta { color: var(--teal); }

.faq-pergunta::after {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--light-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2312968F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.faq-item[open] .faq-pergunta::after { transform: rotate(180deg); }

.faq-resposta {
  padding: 0 1.4rem 1.1rem;
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--light-teal);
  margin-top: 0;
  padding-top: .9rem;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contato-info .section-title { color: var(--white); }

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(127,207,196,.15);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

a.contato-item:hover { background: rgba(255,255,255,.14); }

.contato-item strong { display: block; font-size: .875rem; color: var(--white); font-weight: 600; }
.contato-item span  { font-size: .825rem; color: var(--mint); }

.contato-item--whatsapp { border-color: rgba(37,211,102,.3); }

/* Form */
.contato-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contato-form h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #d0e8e6;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: auto;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #adc8c5; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18,150,143,.12);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
  line-height: 1.5;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 2.5rem;
}

.footer-brand .logo-text { color: var(--white); font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.footer-brand p  { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .2rem; }
.footer-brand .footer-crefito { font-size: .8rem; color: var(--mint); margin-top: .4rem; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-nav a:hover { color: var(--mint); }

.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--white); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
  text-align: center;
}
.footer-disclaimer p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-disclaimer p + p { margin-top: .5rem; }
.footer-disclaimer strong { color: rgba(255,255,255,.6); font-weight: 500; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  background: var(--ink);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  padding: .35rem .75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
}

.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HOVER — CARDS (sóbrio e elegante)
   ============================================================ */

/* Área */
.area-card {
  transition: transform .35s cubic-bezier(.22,.61,.36,1),
              box-shadow .35s cubic-bezier(.22,.61,.36,1),
              border-color .35s ease;
}
.area-card--teal:hover  { border-color: var(--teal); }
.area-card--amber:hover { border-color: var(--amber); }

.area-card .icon-circle {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s ease;
}
.area-card:hover .icon-circle { transform: scale(1.12); }
.area-card--teal:hover  .icon-circle { background: #d0ece9; }
.area-card--amber:hover .icon-circle { background: #f5dfc0; }

/* Benefícios */
.beneficio-card {
  transition: transform .35s cubic-bezier(.22,.61,.36,1),
              box-shadow .35s cubic-bezier(.22,.61,.36,1),
              border-color .35s ease;
}
.beneficio-card:hover { border-color: var(--mint); }
.beneficio-card .icon-circle {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.beneficio-card:hover .icon-circle { transform: scale(1.12); }

/* Diferencial */
.dif-card {
  transition: background .3s ease, transform .35s cubic-bezier(.22,.61,.36,1),
              border-color .3s ease;
}
.dif-card:hover { border-color: rgba(127,207,196,.5); transform: translateY(-4px); }
.dif-card .icon-circle {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.dif-card:hover .icon-circle { transform: scale(1.1); }

/* Resp / Ped cols */
.resp-col {
  transition: box-shadow .35s cubic-bezier(.22,.61,.36,1),
              border-color .3s ease, transform .35s cubic-bezier(.22,.61,.36,1);
}
.resp-col:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--mint);
  transform: translateY(-3px);
}
.section--amber-light .resp-col:hover { border-color: #f0c898; }

/* Steps */
.step-content {
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s cubic-bezier(.22,.61,.36,1);
}
.step:hover .step-content {
  box-shadow: var(--shadow-md);
  border-color: var(--mint);
  transform: translateX(4px);
}
.step-content .icon-circle {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.step:hover .step-content .icon-circle { transform: scale(1.1); }

/* ============================================================
   MOBILE — BASE (até 767px)
   ============================================================ */

/* Touch targets mínimos de 44px */
a, button, summary, .btn, .mobile-link, .area-card, .contato-item {
  -webkit-tap-highlight-color: transparent;
}
.btn            { min-height: 44px; }
.mobile-link    { min-height: 48px; display: flex; align-items: center; }
.faq-pergunta   { min-height: 52px; }
.footer-social a { min-height: 44px; min-width: 44px; }
.whatsapp-float  { min-height: 58px; min-width: 58px; }

/* Inputs sem zoom no iOS (font-size mínimo 16px) */
.form-group input,
.form-group select,
.form-group textarea { font-size: 1rem; }

/* Seções — padding reduzido no mobile */
.section { padding-block: 3.5rem; }

/* Container — padding lateral generoso */
.container { padding-inline: 1rem; }

/* Hero — mobile-first */
.hero { padding-top: calc(var(--header-h) + 2.5rem); }
.hero-inner { padding-bottom: 3rem; gap: 2rem; }
.hero-title  { font-size: clamp(2.4rem, 11vw, 5rem); }
.hero-subtitle { font-size: 1rem; }
.hero-ctas { flex-direction: column; }
.hero-ctas .btn { width: 100%; justify-content: center; }

/* Oculta ilustração no mobile — libera espaço */
.hero-visual { display: none; }

/* Sobre */
.sobre-imagem { order: -1; }
.foto-placeholder { width: 100%; max-width: 320px; height: 260px; }
.sobre-badge { right: calc(50% - 160px); }

/* Áreas — 1 coluna full width */
.area-card { padding: 1.5rem; }

/* Diferencial — 2 colunas no mobile já está ok */
.dif-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
.dif-card { padding: 1.25rem; }
.dif-card h3 { font-size: .95rem; }
.dif-card p  { font-size: .82rem; }

/* Steps — linha conectora visível em 1 coluna */
.steps-list { gap: 1rem; }
.step-content { padding: 1rem 1.1rem; flex-direction: column; gap: .5rem; }
.step-content h3 { font-size: .95rem; }

/* Locais */
.locais { padding: 1.25rem; }
.locais-grid { gap: .6rem; justify-content: center; }
.local-item  { font-size: .85rem; padding: .55rem .9rem; }

/* Benefícios — 1 coluna, sem hover transform (toque não tem hover) */
.beneficio-card { padding: 1.4rem; }

/* FAQ */
.faq-pergunta { font-size: .9rem; padding: 1rem 1.1rem; }
.faq-resposta { font-size: .875rem; padding: 0 1.1rem .9rem; padding-top: .8rem; }

/* Contato form */
.contato-form-wrap { padding: 1.5rem; border-radius: var(--radius-lg); }
.contato-form h3   { font-size: 1.05rem; }
.contato-lista     { gap: .6rem; }
.contato-item      { padding: .65rem .9rem; }

/* Rodapé */
.footer-inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-block: 2rem;
}
.footer-nav { gap: 1rem; }

/* WhatsApp flutuante — safe area para notch/barra do iOS */
.whatsapp-float {
  bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
  right: 1.25rem;
  width: 54px; height: 54px;
}
/* Tooltip oculto no toque */
.whatsapp-float__tooltip { display: none; }

/* Header mobile — padding lateral */
.header-inner { padding-inline: 1rem; }

/* Resp/Ped cols */
.resp-col { padding: 1.4rem; }
.col-title { font-size: 1rem; }

/* Seção escura — section header mais compacto */
.section-header { margin-bottom: 2rem; }
.section-title  { font-size: clamp(1.5rem, 5.5vw, 2.5rem); }
.section-desc   { font-size: .95rem; }

/* Credenciais */
.credenciais li { gap: .7rem; }

/* ============================================================
   TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile  { display: none !important; }

  .section { padding-block: 5rem; }
  .container { padding-inline: 1.25rem; }

  .hero { padding-top: calc(var(--header-h) + 4rem); }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 5rem;
    gap: 3rem;
  }
  .hero-visual  { display: flex; }
  .hero-ctas    { flex-direction: row; }
  .hero-ctas .btn { width: auto; }

  .sobre-grid      { grid-template-columns: 1fr 1fr; }
  .areas-grid      { grid-template-columns: 1fr 1fr; }
  .resp-grid       { grid-template-columns: 1fr 1fr; }
  .beneficios-grid { grid-template-columns: 1fr 1fr; }
  .steps-list      { grid-template-columns: 1fr 1fr; }
  .step-content    { flex-direction: row; gap: 1rem; padding: 1.25rem 1.5rem; }

  .step::after { display: none; }

  .contato-grid { grid-template-columns: 1fr 1fr; }
  .dif-grid     { grid-template-columns: repeat(4, 1fr); }

  .foto-placeholder { width: 280px; height: 320px; max-width: none; }
  .sobre-badge { right: 20px; }
}

/* ============================================================
   DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .sobre-grid { grid-template-columns: 380px 1fr; gap: 5rem; }
  .foto-placeholder { width: 340px; height: 400px; }
  .beneficios-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   HOVER só em dispositivos com ponteiro (não aplica no toque)
   ============================================================ */
@media (hover: none) {
  .area-card:hover,
  .beneficio-card:hover,
  .resp-col:hover,
  .dif-card:hover,
  .step:hover .step-content { transform: none; box-shadow: var(--shadow-sm); }
  .area-card:hover .icon-circle,
  .beneficio-card:hover .icon-circle,
  .dif-card:hover .icon-circle,
  .step:hover .step-content .icon-circle { transform: none; }
}

/* ============================================================
   ACESSIBILIDADE — REDUCE MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-card-float { animation: none; }
  .fade-up { opacity: 1; transform: none; }
}
