:root {
  --ink: #142a3d;
  --blue-900: #123454;
  --blue-700: #1f6fa8;
  --blue-600: #2c86c4;
  --blue-500: #5aa8d8;
  --sky-100: #e8f2fa;
  --sky-50: #f4f9fc;
  --sand: #fbfaf7;
  --body-c: #57697a;
  --line: #e6edf3;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --gold: #e3a94f;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(18, 52, 84, 0.07);
  --shadow: 0 18px 40px -14px rgba(18, 52, 84, 0.2);
  --shadow-hover: 0 26px 52px -16px rgba(18, 52, 84, 0.28);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--blue-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 3.6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.1rem; }

p { color: var(--body-c); }

a { color: var(--blue-700); text-decoration: none; }

svg.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-head { text-align: left; margin-bottom: 8px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* topbar */
.topbar {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-900);
}

.brand::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
}

.nav a:hover { color: var(--blue-700); }

.nav-cta { display: none; }

/* botoes */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: none;
  cursor: pointer;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(37, 211, 102, 0.5);
}

.btn-ghost {
  background: var(--white);
  color: var(--blue-900);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.86rem;
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-50) 0%, var(--white) 100%);
  padding: 88px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sky-100), transparent 70%);
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 40px solid var(--sky-100);
  opacity: 0.6;
}

.hero-inner { position: relative; max-width: 660px; }

.hero .lead {
  font-size: 1.12rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--blue-900);
}

.trust-item svg.icon {
  width: 20px;
  height: 20px;
  color: var(--blue-700);
}

/* secoes */
.section { padding: 72px 0; }
.section-alt { background: var(--sky-50); }
.section-lead { margin-top: -10px; margin-bottom: 36px; max-width: 560px; }
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* acesso rapido */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.quick-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.quick-card .quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sky-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-card h3 { margin: 0; font-size: 1rem; }
.quick-card p { margin: 0; font-size: 0.88rem; }
.quick-card .quick-link {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
  margin-bottom: 28px;
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--line);
  display: block;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 22px 22px 24px; }
.card-body h3 { margin-bottom: 8px; font-size: 1.08rem; }
.card-body p { font-size: 0.92rem; margin: 0; }

.link-mais {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* galeria de estrutura (placeholder) */
.estrutura-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
}

.estrutura-item {
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--sky-100), var(--sky-50));
  border: 1.5px dashed #bcdcf0;
  color: var(--blue-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}

.estrutura-item svg.icon { width: 26px; height: 26px; }
.estrutura-item.tall { grid-row: span 2; }
.estrutura-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.depoimento-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}

.depoimento-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.depoimento-stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }

.depoimento-card p {
  font-size: 0.94rem;
  font-style: italic;
  margin: 0 0 18px;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.depoimento-autor strong { font-size: 0.88rem; color: var(--blue-900); }
.depoimento-nota { font-size: 0.78rem; color: var(--body-c); }

/* cta */
.cta {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta h2, .cta p { color: #fff; }
.cta p { color: rgba(255,255,255,0.85); margin: 0; }

.cta .btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.cta .btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* sobre */
.sobre-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}

.foto-placeholder {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--sky-100), var(--sky-50));
  border: 1.5px dashed #bcdcf0;
  color: var(--blue-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.foto-placeholder svg.icon { width: 40px; height: 40px; }

/* procedimento detalhe */
.link-voltar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.galeria img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.texto-procedimento { margin: 20px 0; }
.texto-procedimento p { margin: 0 0 0.9em; }

.caixa-preco {
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 20px 0;
  color: var(--blue-900);
}

.procedimento-detalhe .btn { margin-top: 12px; }

/* contato */
.contato-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.info-card {
  background: var(--sky-50);
  border: 1px solid var(--sky-100);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.info-block {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.info-block:first-child { margin-top: 0; }

.info-block svg.icon {
  width: 22px;
  height: 22px;
  color: var(--blue-700);
  margin-top: 2px;
}

.info-block h3 { margin: 0 0 4px; font-size: 1rem; }
.info-block p { margin: 0; font-size: 0.94rem; }

.horarios { list-style: none; margin: 8px 0 0; padding: 0; }
.horarios li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--sky-100);
  font-size: 0.92rem;
}
.horarios li:last-child { border-bottom: none; }
.horarios li span:last-child { font-weight: 600; color: var(--blue-900); }

/* footer */
.footer {
  background: var(--blue-900);
  color: #cfe2ee;
  padding: 56px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .brand { color: #fff; }
.footer .brand::before { background: linear-gradient(135deg, var(--blue-500), var(--white)); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 14px;
}
.footer-col p { color: #aecbdd; margin: 0 0 8px; font-size: 0.9rem; }
.footer-col a { color: #cfe2ee; font-size: 0.9rem; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-tagline { color: #aecbdd; font-size: 0.9rem; margin: 10px 0 0; max-width: 260px; }

.footer-note {
  padding-top: 20px;
  font-size: 0.82rem;
  color: #7ea3bd;
}

/* whatsapp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 30;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse-ring 2.2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* menu mobile (checkbox + hamburger, sem JS) */
.nav-toggle-check { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .sobre-wrap { grid-template-columns: 240px 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .estrutura-grid { grid-template-columns: repeat(2, 1fr); }
  .estrutura-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .topbar-cta { display: none; }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);

    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height .2s ease;
  }

  .nav a { padding: 10px 0; width: 100%; }
  .nav-cta { display: inline-flex; margin-top: 8px; }

  .hero { padding: 56px 0 48px; }
  .hero::before, .hero::after { display: none; }
  .cta { padding: 36px 24px; }

  .sobre-wrap, .contato-wrap { grid-template-columns: 1fr; }
  .cta-wrap { flex-direction: column; align-items: flex-start; }
  .foto-placeholder { max-width: 280px; }

  .nav-toggle-check:checked ~ .nav {
    max-height: 360px;
    padding-top: 12px;
    padding-bottom: 20px;
  }
}
