/* ============ RESET & TOKENS ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

:root {
  --primary:      #B02E5A;   /* rosa vinho — feminino sofisticado */
  --primary-dark: #7A1F3E;
  --accent:       #F5C6D0;   /* rosa claro pra fundo suave */
  --accent-soft:  #FEF3F6;
  --wa:           #25D366;
  --wa-dark:      #1EBE5A;
  --text:         #1F1F1F;
  --text-mute:    #5C5C5C;
  --bg:           #FEFAF8;
  --card:         #FFFFFF;
  --line:         #EFE5E1;
  --radius:       14px;
  --shadow:       0 4px 24px rgba(122, 31, 62, 0.08);
  --shadow-hover: 0 8px 32px rgba(122, 31, 62, 0.14);
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--primary-dark); font-weight: 700; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 0; cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-wa { background: var(--wa); color: white; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
.btn-wa:hover { background: var(--wa-dark); }

.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-lg .wa-icon { width: 22px; height: 22px; }
.nav-cta .wa-icon { width: 16px; height: 16px; }
.wa-icon-sm { width: 14px; height: 14px; flex-shrink: 0; vertical-align: middle; margin-right: 4px; }

.btn-ghost { background: white; color: var(--primary-dark); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--primary); }

/* ============ TYPOGRAPHY UTILS ============ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow.center { display: block; text-align: center; }
.section-title { font-size: 34px; margin-bottom: 16px; }
.section-lead { color: var(--text-mute); max-width: 720px; margin: 0 auto 36px; text-align: center; }
.hl { color: var(--primary); }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--primary-dark);
  color: white;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.topbar-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-link { color: white; text-decoration: none; }
.topbar-link:hover { text-decoration: underline; }
.topbar-wa {
  background: var(--wa);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
}
.topbar-wa:hover { background: var(--wa-dark); text-decoration: none; }

/* ============ NAV ============ */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 1px;
}
.brand-name { font-weight: 700; color: var(--primary-dark); }
.brand-role { font-size: 12px; color: var(--text-mute); }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta { padding: 10px 22px; font-size: 14px; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #FFF 100%);
  padding: 24px 0 70px;
}
.hero .eyebrow { font-size: 15px; letter-spacing: 1.5px; margin-bottom: 16px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 48px; margin-bottom: 20px; }
.lead { font-size: 18px; color: var(--text-mute); margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--text-mute); }
.hero-badges li { padding: 6px 14px; background: white; border-radius: 20px; border: 1px solid var(--line); }

.photo-frame {
  border-radius: 24px;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--accent), var(--primary));
}
.photo-frame.small { aspect-ratio: 1/1; }

/* ============ REVIEWS ============ */
.reviews { padding: 80px 0; background: white; }
.reviews .section-title { text-align: center; }

.rating-box {
  max-width: 620px;
  margin: 40px auto 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.rating-score { margin-bottom: 24px; }
.rating-number {
  font-size: 68px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.rating-stars {
  color: #F5B301;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.rating-source {
  color: var(--text-mute);
  font-size: 14px;
}
.rating-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.rating-actions .btn { padding: 12px 22px; font-size: 14px; }

.reviews-cta { text-align: center; margin-top: 40px; }
.reviews-note { color: var(--text-mute); font-size: 13px; margin-bottom: 16px; }

/* ============ SERVICES ============ */
.services { padding: 80px 0; background: var(--accent-soft); }
.services .section-title { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.service {
  background: white;
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-icon { font-size: 34px; margin-bottom: 12px; }
.service h3 { font-size: 17px; margin-bottom: 8px; }
.service p { font-size: 14px; color: var(--text-mute); }
.services-cta { text-align: center; }
.services-cta p { color: var(--text-mute); margin-bottom: 12px; }

/* ============ ABOUT ============ */
.about { padding: 80px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.about h2 { font-size: 32px; }
.about p { color: var(--text-mute); margin: 12px 0; }
.about-list { margin: 24px 0; display: grid; gap: 8px; }
.about-list li { color: var(--text); }

/* ============ TEAM ============ */
.team { padding: 80px 0; background: var(--accent-soft); }
.team .section-title { text-align: center; }
.team .section-lead { text-align: center; margin-bottom: 36px; }
.team-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 0 auto;
}
.team-photo img { width: 100%; height: auto; display: block; }
.team-cta { text-align: center; margin-top: 32px; }

/* ============ DIFFERENTIATORS ============ */
.diffs { padding: 80px 0; background: var(--primary-dark); color: white; }
.diffs .eyebrow, .diffs .section-title { color: white; }
.diffs .section-title { text-align: center; margin-bottom: 40px; }
.diffs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.diff { text-align: center; padding: 24px 16px; }
.diff-icon { font-size: 44px; margin-bottom: 12px; }
.diff h3 { color: white; font-size: 18px; margin-bottom: 8px; }
.diff p { font-size: 14px; opacity: 0.9; }

/* ============ FAQ ============ */
.faq { padding: 80px 0; background: var(--accent-soft); }
.faq .section-title { text-align: center; margin-bottom: 40px; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-dark);
  list-style: none;
  padding-right: 30px;
  position: relative;
  font-size: 16px;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--text-mute); }

/* ============ LOCATION ============ */
.location { padding: 80px 0; background: white; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.location-info h2 { font-size: 34px; }
.location-info p { margin: 20px 0; color: var(--text); font-size: 17px; line-height: 1.65; }
.location-info strong { color: var(--primary-dark); font-size: 18px; }
.location-info a { color: var(--primary); font-weight: 500; }
@media (max-width: 900px) {
  .location-info h2 { font-size: 28px; }
  .location-info p { font-size: 16px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: white; margin-bottom: 14px; font-size: 15px; }
.footer p, .footer li { color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 6px; }
.footer a { color: rgba(255,255,255,0.9); }
.footer a:hover { color: white; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-name { color: white; }
.footer-brand .brand-role { color: rgba(255,255,255,0.7); }
.footer-about { color: rgba(255,255,255,0.75); font-size: 14px; }
.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.footer-legal p { color: rgba(255,255,255,0.7); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 50;
  transition: transform .2s ease;
  animation: pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); text-decoration: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 26px; }
  .services-grid, .diffs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .topbar { padding: 6px 0; font-size: 11px; }
  .topbar-addr { display: none; }
  .topbar-wa { display: none; }

  /* Centraliza tudo no mobile — pedido do cliente */
  .hero-content,
  .about-content,
  .location-info { text-align: center; }

  .hero-badges,
  .hero-ctas { justify-content: center; }

  .about-list { display: inline-block; text-align: left; }

  .service { text-align: center; }
  .service-icon { text-align: center; }

  .photo-frame { max-width: 380px; margin: 0 auto; }
  .about-photo, .hero-photo { text-align: center; }

  .footer-grid > div { text-align: center; }
  .footer-brand { justify-content: center; }
}
@media (max-width: 560px) {
  .reviews-grid, .services-grid, .diffs-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}
