:root {
  --c-primary: #FB5FAB;
  --c-primary-hover: #EA559D;
  --c-text: #0F172A;
  --c-text-muted: #454F5E;
  --c-bg: #FFFFFF;
  --c-bg-soft: #FCEEF5;
  --c-bg-alt: #FAD8E9;
  --c-border: rgba(15, 23, 42, 0.08);
  --c-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  --c-wa: #25D366;
  --c-wa-hover: #1ebe57;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --content-width: 1200px;
  --font-body: 'Karla', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-heading: 'Bricolage Grotesque', 'Karla', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-hover); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--c-text); margin: 0 0 .5em; line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.2rem; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .wa-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--c-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}
.btn-wa {
  background: var(--c-wa);
  color: #fff;
}
.btn-wa:hover {
  background: var(--c-wa-hover);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-text);
}
.btn-outline:hover {
  background: var(--c-text);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ff9fce;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.main-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
}
.main-nav a:hover { color: rgba(255, 255, 255, 0.8); }

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 100px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(15,23,42,.55), rgba(15,23,42,.35)),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-inner { text-align: left; max-width: 720px; }
.hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-brand-icon { width: 56px; height: 56px; }
.hero-brand-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.hero-hours {
  margin: 24px 0 32px;
  color: #fff;
}
.hero-hours strong { display: block; margin-bottom: 6px; color: #fff; }
.hero-hours p { margin: 2px 0; color: rgba(255,255,255,.92); }

/* Section base */
.section { padding: 80px 0; }
.section.servicos { background: #fff; }
.section.avaliacoes { background: var(--c-bg-soft); }
.section.instagram { background: #fff; }
.section.localizacao { background: var(--c-bg-soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--c-text-muted);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 8px;
}
.section h2 { text-align: center; margin-bottom: 56px; }
.section-cta { text-align: center; margin-top: 48px; }

/* Cards: ícones em círculos com borda rosa, sem caixa de fundo */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
  max-width: 1024px;
  margin: 0 auto;
}
.card {
  text-align: center;
  padding: 0 12px;
  background: transparent;
  border: 0;
}
.card-icon {
  font-size: 2.4rem;
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--c-shadow);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--c-text-muted); margin: 0; font-size: .95rem; }

/* Avaliações (Trustindex) */
.section.avaliacoes .ti-widget { display: block !important; }
pre.ti-widget { display: block !important; white-space: normal; background: transparent; padding: 0; margin: 0; font-family: var(--font-body); }
.trustindex-loader { display: none; }

/* Instagram grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}
.ig-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  display: block;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.ig-item:hover img { transform: scale(1.05); }

/* Localização */
.loc-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--c-shadow);
}
.map-wrap iframe { display: block; }

/* Footer */
.site-footer {
  background: var(--c-bg-alt);
  padding: 60px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: center;
  padding-bottom: 60px;
}
.footer-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
}
.footer-icon-logo { width: 80px; height: 80px; }
.footer-col h3 { margin-bottom: 16px; }
.footer-col p { color: var(--c-text-muted); margin: 4px 0; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 6px 0; }
.footer-links a { color: var(--c-text-muted); }
.footer-links a:hover { color: var(--c-primary); }
.footer-bottom {
  text-align: center;
  padding: 20px 24px 40px;
  color: var(--c-text-muted);
  font-size: .95rem;
}
.footer-bottom a { color: var(--c-primary); font-weight: 600; }

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--c-wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float .wa-icon { width: 32px; height: 32px; }

/* Cookie banner */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--c-text);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner p { margin: 0; flex: 1; font-size: .9rem; }
.cookie-banner .btn { padding: 8px 20px; font-size: .9rem; }

/* Map responsivo */
.map-wrap iframe { width: 100%; height: clamp(280px, 50vw, 450px); }

/* Responsivo: Tablets */
@media (max-width: 900px) {
  .header-inner { gap: 12px; padding: 12px 16px; }
  .main-nav { display: none; }
  .container { padding: 0 16px; }
  .hero { padding: 60px 0 80px; }
  .hero-brand-icon { width: 44px; height: 44px; }
  .hero-brand-text { font-size: 1.5rem; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    left: 12px; right: 12px; bottom: 12px;
  }
}

/* Responsivo: Mobile */
@media (max-width: 600px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  .header-inner { padding: 10px 14px; }
  .logo img { height: 32px; }
  .header-cta { padding: 8px 12px; font-size: .85rem; }
  .header-cta .wa-icon { width: 14px; height: 14px; }
  .section { padding: 50px 0; }
  .section h2 { margin-bottom: 36px; }
  .hero { padding: 50px 0 60px; }
  .hero-brand { gap: 8px; margin-bottom: 16px; }
  .hero-brand-icon { width: 36px; height: 36px; }
  .hero-brand-text { font-size: 1.25rem; }
  .hero-hours { padding: 12px 16px; margin: 16px 0 24px; }
  .loc-actions { flex-direction: column; align-items: stretch; }
  .loc-actions .btn { justify-content: center; }
  .cards { grid-template-columns: 1fr; max-width: 360px; gap: 24px; }
  .card { padding: 0 8px; }
  .card-icon { width: 76px; height: 76px; font-size: 2rem; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .footer-grid { padding-bottom: 48px; gap: 28px; }
  .footer-bottom { font-size: .85rem; padding-bottom: 80px; /* espaço pro wa-float */ }

  /* WhatsApp float menor + não colide com banner cookies */
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float .wa-icon { width: 26px; height: 26px; }
  .cookie-banner { padding: 14px 16px; right: 80px; }
  .cookie-banner p { font-size: .85rem; }
}

/* Responsivo: Mobile pequeno */
@media (max-width: 360px) {
  h1 { font-size: 1.65rem; }
  .header-cta { padding: 7px 10px; font-size: .78rem; }
  .header-cta span { display: none; }
}

/* Evita overflow horizontal global */
html, body { overflow-x: hidden; max-width: 100%; }
img, iframe { max-width: 100%; }
