/* ============================================
   DJ Saúde — Folha de estilo
   Paleta de cores: edite as variáveis abaixo.
   ============================================ */
:root {
  --brand: #000d9e;        /* cor principal */
  --brand-deep: #0a5748;   /* verde escuro */
  --gold: #f2b441;         /* dourado (estrelas, destaques) */
  --cream: #fbf8f3;        /* fundo do site */
  --ink: #1a2b2e;          /* texto principal */
  --sand: #ece5d8;         /* bordas e fundos claros */
  --muted: #6b7a76;        /* texto secundário */
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-sans: "Inter", sans-serif;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); }

/* ====== Header / Navegação ====== */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}
header .container {
  height: 115px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img{ border-radius: 25px;width: 90px; }
    
.logo .badge {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
}
.logo .name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }

nav { display: flex; gap: 32px; font-size: 14px; font-weight: 500; color: var(--muted); }
nav a:hover { color: var(--brand); }

/* ====== Botões ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 600; transition: all .2s;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); }
.btn-outline { background: #fff; border: 1px solid var(--sand); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { filter: brightness(0.95); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* ====== Hero ====== */
.hero .container {
  padding-top: 64px; padding-bottom: 80px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--sand);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--brand-deep);
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero h1 {
  margin-top: 24px; font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05;
}
.hero p.lead { margin-top: 24px; font-size: 18px; color: var(--muted); max-width: 28rem; line-height: 1.7; }
.hero .cta-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.rating { margin-top: 40px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rating .num { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.rating .num span { font-family: var(--font-sans); font-weight: 400; color: var(--muted); }
.rating .sub { color: var(--muted); font-size: 14px; }

.hero-img { position: relative; }
.hero-img img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 24px; box-shadow: 0 0 0 1px rgba(0,0,0,.05);
  height:100%;
}
.hero-card {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 40px rgba(26,43,46,.08);
  padding: 16px 20px; max-width: 240px;
}
.hero-card p { margin-top: 4px; font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ====== Faixa de estatísticas ====== */
.stats { background: var(--brand-deep); color: #fff; }
.stats .container {
  padding-top: 40px; padding-bottom: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stats .value { font-family: var(--font-display); font-weight: 800; font-size: 30px; }
.stats .label { margin-top: 4px; font-size: 14px; color: rgba(255,255,255,.6); }

/* ====== Seções gerais ====== */
section.block { padding: 80px 0; }
.section-alt { background: rgba(236, 229, 216, 0.4); }
.kicker { font-size: 14px; font-weight: 600; color: var(--brand); letter-spacing: .02em; }
h2 { margin-top: 8px; font-weight: 700; font-size: clamp(1.75rem, 3.5vw, 2.25rem); letter-spacing: -0.02em; }
.section-lead { margin-top: 16px; color: var(--muted); line-height: 1.7; max-width: 36rem; }

/* ====== Sobre ====== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-card { background: var(--sand); border-radius: 24px; padding: 32px; }
.about-card h3 { font-weight: 700; font-size: 20px; }
.about-card ul { margin-top: 24px; list-style: none; display: grid; gap: 16px; font-size: 14px; color: rgba(26,43,46,.8); }
.about-card li { display: flex; gap: 12px; }
.check {
  flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(14,124,107,.1); color: var(--brand);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}

/* ====== Cards (especialidades e avaliações) ====== */
.cards { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--sand); border-radius: 16px; padding: 28px;
  transition: border-color .2s;
}
.card:hover { border-color: rgba(14,124,107,.4); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(14,124,107,.1);
  display: grid; place-items: center; font-size: 24px;
}
.card h3 { margin-top: 20px; font-weight: 700; font-size: 20px; }
.card p { margin-top: 8px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ====== Avaliações ====== */
.review {
  background: #fff; border-radius: 16px; padding: 28px;
  box-shadow: 0 1px 3px rgba(26,43,46,.06), 0 0 0 1px rgba(0,0,0,.04);
}
.review blockquote { margin-top: 16px; line-height: 1.7; }
.review figcaption { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(14,124,107,.1); color: var(--brand-deep);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.review .who { font-weight: 600; font-size: 14px; }
.review .when { font-size: 12px; color: var(--muted); }

/* ====== Contato ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { background: var(--brand-deep); color: #fff; border-radius: 24px; padding: 40px; }
.contact-card .kicker { color: var(--gold); }
.contact-card h2 { color: #fff; }
.contact-card ul { margin-top: 32px; list-style: none; display: grid; gap: 20px; font-size: 14px; }
.contact-card li { display: flex; gap: 16px; }
.contact-card .icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.1); display: grid; place-items: center; font-size: 16px;
}
.contact-card .dim { color: rgba(255,255,255,.6); }
.contact-card .cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }

.map-wrap { border-radius: 24px; overflow: hidden; min-height: 380px; box-shadow: 0 0 0 1px rgba(0,0,0,.05); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
.routes-link { margin-top: 24px; text-align: center; }

/* ====== Rodapé ====== */
footer { background: var(--ink); color: rgba(255,255,255,.7); }
footer .container {
  padding-top: 40px; padding-bottom: 40px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
footer .logo .name { color: #fff; }
footer p { font-size: 12px; }

/* ====== Botão flutuante WhatsApp ====== */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 12px 20px; border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.05);
  font-size: 14px; font-weight: 700; color: var(--ink);
}
.whatsapp-fab .dot {
  width: 10px; height: 10px; border-radius: 50%; background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ============================================
   RESPONSIVO
   ============================================ */

/* Tablets (até 1023px) */
@media (max-width: 1023px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; padding-top: 48px; padding-bottom: 72px; }
  .hero-img { max-width: 560px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Celulares (até 767px) */
@media (max-width: 767px) {
  nav { display: none; }

  .container { padding: 0 16px; }
  section.block { padding: 56px 0; }

  .hero .container { padding-top: 40px; padding-bottom: 64px; }
  .hero p.lead { font-size: 16px; }
  .hero .cta-row .btn { width: 100%; }

  .hero-img img { aspect-ratio: 4 / 3; }
  .hero-card {
    /*position: static;*/ margin: -32px 16px 0; max-width: none;
  }

  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats .value { font-size: 24px; }

  .cards { grid-template-columns: 1fr; margin-top: 32px; }

  .about-card { padding: 24px; }
  .contact-card { padding: 28px 24px; }
  .contact-card .cta-row .btn { flex: 1 1 auto; }

  .map-wrap, .map-wrap iframe { min-height: 300px; }

  footer .container { flex-direction: column; text-align: center; justify-content: center; }

  .whatsapp-fab { bottom: 16px; right: 16px; padding: 10px 16px; }
}

/* Celulares pequenos (até 380px) */
@media (max-width: 380px) {
  .btn-lg { padding: 12px 18px; font-size: 14px; }
  .rating { gap: 12px; }
}
