/* ===== Fontes da marca ===== */
@font-face {
  font-family: "Made Mountain";
  src: url("../assets/fonts/MADEMountain-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

/* ===== Tokens da marca ===== */
:root {
  --coral: #E1523E;
  --coral-dark: #C43F2D;
  --water-green: #3FABAE;
  --water-green-dark: #338c8e;
  --skin: #F7EEE5;
  --shadow: #9E8973;
  --ink: #4A3B2E;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 12px 30px rgba(158, 137, 115, 0.18);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: var(--skin);
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Made Mountain", "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

p { line-height: 1.6; margin: 0; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { color: var(--water-green-dark); }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--coral); margin-top: 8px; }
.section-head p { color: var(--shadow); margin-top: 14px; font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.84rem;
  color: var(--water-green-dark);
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: var(--skin); box-shadow: 0 10px 20px rgba(225,82,62,0.28); }
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-outline:hover { background: var(--coral); color: var(--skin); }
.btn-accent { background: var(--water-green); color: var(--skin); box-shadow: 0 10px 20px rgba(63,171,174,0.3); }
.btn-accent:hover { background: var(--water-green-dark); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ===== Barra de aviso ===== */
.announce {
  background: var(--coral);
  color: var(--skin);
  text-align: center;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}

/* ===== Header ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--skin);
  border-bottom: 2px solid rgba(225,82,62,0.15);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 85px; width: auto; }
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a.nav-link {
  font-weight: 700;
  color: var(--shadow);
  font-size: 1.01rem;
  position: relative;
  padding: 4px 2px;
}
nav.main-nav a.nav-link:hover,
nav.main-nav a.nav-link.active { color: var(--coral); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  padding: 64px 0 88px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
}
.hero-copy h1 .line-teal { color: var(--water-green); display: block; }
.hero-copy h1 .line-coral { color: var(--coral); display: block; }
.hero-copy .lede {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--shadow);
  max-width: 480px;
}

.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 26px;
  margin-top: 30px;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.field label {
  display: block;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--shadow);
  margin-bottom: 6px;
}
.field select, .field input {
  width: 100%;
  appearance: none;
  border: 2px solid var(--water-green);
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9"><path d="M1 1l6 6 6-6" stroke="%233FABAE" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 14px center;
  border-radius: 999px;
  padding: 11px 36px 11px 16px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--shadow);
}
.field option { color: var(--shadow); }
.field input[type="text"] { background-image: none; padding-right: 16px; }
.field select:focus, .field input:focus { outline: none; border-color: var(--coral); }

.estimate-box {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--skin);
  border: 2px dashed var(--water-green);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-top: 2px;
}
.estimate-box .label { font-weight: 800; color: var(--shadow); font-size: 0.85rem; }
.estimate-box .value { font-family: "Made Mountain", sans-serif; font-size: 1.6rem; color: var(--coral); }
.estimate-note { font-size: 0.72rem; color: var(--shadow); margin-top: 2px; }
.estimate-duration { font-size: 0.74rem; color: var(--shadow); font-weight: 800; margin-top: 2px; }

.booking-card .btn { margin-top: 18px; }
.booking-card .btn + .btn { margin-top: 12px; }
.copy-feedback {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--water-green-dark);
  margin-top: 10px;
  min-height: 1.2em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual .blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 3px solid var(--coral);
  opacity: 0.35;
}
.hero-visual .blob.b2 { width: 320px; height: 320px; opacity: 0.5; }
.hero-visual img.mascote {
  position: relative;
  width: min(360px, 80%);
  height: auto;
  filter: drop-shadow(0 30px 30px rgba(158,137,115,0.35));
}
.spark { position: absolute; color: var(--coral); font-size: 1.6rem; }
.spark.s1 { top: 6%; left: 8%; }
.spark.s2 { bottom: 12%; right: 4%; font-size: 2.2rem; }
.spark.s3 { top: 42%; right: -2%; }

/* ===== Selos de confiança ===== */
.trust-strip {
  background: #fff;
  border-top: 2px solid rgba(63,171,174,0.15);
  border-bottom: 2px solid rgba(63,171,174,0.15);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--shadow);
  font-size: 0.96rem;
}
.trust-item .ic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--skin);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral);
}

/* ===== Pilares / Dona Lara ===== */
#dona-lara { background: var(--skin); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pillar-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.pillar-card .ic {
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--water-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.pillar-card h3 { font-size: 1.16rem; color: var(--coral); margin-bottom: 8px; }
.pillar-card p { font-size: 0.94rem; color: var(--shadow); }

.about-banner {
  margin-top: 56px;
  background: var(--coral);
  border-radius: var(--radius-lg);
  color: var(--skin);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.about-banner h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); max-width: 560px; }
.about-banner p { margin-top: 10px; opacity: 0.9; max-width: 520px; }
.about-banner-btn { font-size: 1.24rem; padding: 24px 90px; justify-content: center; min-width: 320px; }

/* ===== Unidades / mapa ===== */
#unidades { background: #fff; }

.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.unit-card {
  background: var(--skin);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.unit-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.unit-head .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--coral);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.unit-head h3 { font-family: "Nunito", sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--shadow); line-height: 1.2; }
.unit-head .uf { font-size: 0.75rem; font-weight: 800; color: var(--water-green-dark); }

.cities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.badge-accent {
  display: inline-block;
  background: var(--water-green);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 9px 22px;
  border-radius: 999px;
}
.badge-skin {
  display: inline-block;
  background: var(--skin);
  color: var(--water-green-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 9px 22px;
  border-radius: 999px;
}

.city-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--skin);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 800;
  font-size: 0.91rem;
  color: var(--shadow);
}
.city-chip.active { background: var(--water-green); color: #fff; }
.city-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.city-chip.active .dot { background: #fff; }

/* ===== Depoimentos ===== */
#depoimentos { background: var(--skin); }
.testi-count { font-weight: 800; color: var(--water-green-dark); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

/* Depoimentos no estilo de conversa de WhatsApp (fonte real das capturas de tela) */
.wa-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.wa-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.9rem;
  flex-shrink: 0;
}
.wa-name { font-weight: 800; font-size: 0.86rem; color: var(--shadow); }
.testi-card:nth-child(odd) .wa-name { color: var(--coral); }
.testi-card:nth-child(even) .wa-name { color: var(--water-green); }
.wa-city { font-size: 0.74rem; color: var(--shadow); }
.wa-bubble {
  background: #DCF8C6;
  border-radius: 14px;
  border-top-left-radius: 4px;
  padding: 14px 16px;
}
.wa-bubble p { color: var(--ink); font-size: 0.92rem; }
.wa-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.68rem;
  color: #5f7d63;
}

.rating-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--skin);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  box-shadow: var(--shadow-soft);
}
.google-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: conic-gradient(#4285F4 0deg 90deg, #EA4335 90deg 180deg, #FBBC05 180deg 270deg, #34A853 270deg 360deg);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.google-score-row { display: flex; align-items: center; gap: 10px; }
.google-rating .score { font-family: "Made Mountain", sans-serif; font-size: 1.9rem; color: var(--coral); }
.google-rating .stars { display: inline-flex; align-items: center; gap: 2px; color: var(--water-green); }
.google-rating .stars svg { width: 26px; height: 26px; }
.google-rating small { display: block; color: var(--shadow); font-weight: 700; font-size: 0.76rem; margin-top: 2px; }

/* ===== Franquia ===== */
#franquia {
  background: var(--water-green);
  color: var(--skin);
  position: relative;
  overflow: hidden;
}
#franquia .section-head h2 { color: var(--skin); }
#franquia .section-head p { color: rgba(247,238,229,0.85); }
.franquia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.franquia-card {
  background: rgba(247,238,229,0.1);
  border: 2px solid rgba(247,238,229,0.35);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.franquia-card .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--skin);
  color: var(--skin);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.franquia-card h3 { color: var(--skin); font-size: 1.27rem; margin-bottom: 10px; }
.franquia-card p { color: rgba(247,238,229,0.85); font-size: 0.92rem; }

.franquia-cta {
  margin-top: 44px;
  text-align: center;
}
.franquia-cta .btn {
  margin-top: 18px;
  background: var(--skin);
  color: var(--water-green-dark);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.franquia-cta .btn:hover { background: var(--water-green-dark); color: var(--skin); }

/* ===== Suporte humano ===== */
#suporte {
  background: var(--skin);
  color: var(--ink);
  padding: 72px 0;
}
.suporte-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.suporte-grid img { width: 170px; height: auto; margin: 24px 0; }
.suporte-text { width: 100%; max-width: 460px; text-align: center; margin: 0 auto; }
.suporte-grid h3 { font-size: clamp(1.43rem, 2.2vw, 1.83rem); color: var(--coral); }
.suporte-grid p { margin-top: 10px; color: var(--shadow); }
.suporte-btn { padding-left: 56px; padding-right: 56px; }
#suporte .btn-outline { border-color: var(--coral); color: var(--coral); }
#suporte .btn-outline:hover { background: var(--coral); color: var(--skin); }

/* ===== Footer ===== */
footer {
  background: var(--skin);
  color: var(--shadow);
  padding: 60px 0 26px;
  border-top: 2px solid rgba(158,137,115,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(158,137,115,0.2);
}
.footer-grid img.brand-logo { height: 68px; margin-bottom: 14px; }
.footer-grid p { font-size: 0.88rem; }
.footer-col h4 { color: var(--shadow); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 0.02em; }
.footer-col a, .footer-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: var(--shadow);
}
.footer-col a:hover { color: var(--water-green-dark); }
.footer-col a svg { flex-shrink: 0; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== WhatsApp flutuante ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  color: #fff;
}
.wa-float:hover { transform: scale(1.06); }

/* ===== Responsivo ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; }
  .hero-visual img.mascote { width: 220px; }
  .hero-visual .blob { width: 260px; height: 260px; }
  .hero-visual .blob.b2 { width: 190px; height: 190px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .units-grid { grid-template-columns: repeat(2, 1fr); }
  .about-banner { grid-template-columns: 1fr; text-align: center; }
  .about-banner img { margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .franquia-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .brand img { height: 56px; }
  nav.main-nav { position: fixed; inset: 0 0 0 30%; background: #fff; flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px; gap: 22px; transform: translateX(100%); transition: transform 0.25s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
  nav.main-nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; background: none; border: none; font-size: 1.6rem; color: var(--coral); cursor: pointer; }
  .nav-actions .btn-outline { display: none; }
  .booking-grid { grid-template-columns: 1fr; }
  .estimate-box { grid-column: span 1; flex-direction: column; gap: 8px; }
  .estimate-box > div:last-child { text-align: left; }
  .cities-row { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .about-banner-btn { min-width: 0; width: 100%; padding-left: 24px; padding-right: 24px; }
  .suporte-btn { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 0 56px; }
  .hero-visual { margin-top: 24px; }
  .hero-visual img.mascote { width: 160px; }
  .hero-visual .blob { width: 190px; height: 190px; }
  .hero-visual .blob.b2 { width: 140px; height: 140px; }
  .trust-grid { grid-template-columns: 1fr; padding-top: 24px; padding-bottom: 24px; }
  .cities-row { flex-direction: column; align-items: stretch; }
  .city-chip { justify-content: center; }
}
