/* ═══════════════════════════════════════════════════════
   DRA. NICOLLE LIMA — SITE V2.1
   Design System & Styles
   Odontopediatra · Viçosa/MG · 🦁
   ═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --terra:       #B8452A;
  --terra-l:     #D4725A;
  --terra-xl:    #E8A090;
  --terra-pale:  #F8EAE5;
  --olive:       #C8B860;
  --olive-pale:  #FAF6DC;
  --sage:        #9AAF8A;
  --sage-l:      #B8CCA8;
  --sage-pale:   #EBF4E4;
  --peach:       #E89870;
  --peach-pale:  #FDE8D8;
  --lion:        #8B5533;
  --cream:       #FDF8F0;
  --cream-d:     #F5ECE0;
  --dark:        #2E1A0A;
  --mid:         #7A4E2A;
  --soft:        #B89070;
  --white:       #FFFFFF;

  --shadow-sm:   0 2px 8px rgba(46,26,10,.06);
  --shadow-md:   0 4px 20px rgba(46,26,10,.1);
  --shadow-lg:   0 8px 40px rgba(46,26,10,.14);
  --shadow-terra: 0 4px 24px rgba(184,69,42,.3);
  --shadow-wpp:  0 4px 20px rgba(37,211,102,.3);

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-2xl: 60px;
  --r-full: 999px;

  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast:   .2s var(--ease-smooth);
  --t-normal: .35s var(--ease-smooth);
  --t-slow:   .5s var(--ease-smooth);

  --font-heading: 'Baloo 2', cursive, sans-serif;
  --font-body:    'Nunito', sans-serif;

  --max-w: 1140px;
  --nav-h: 76px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; }
input, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--terra);
  border-radius: 4px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 17px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}


/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  min-height: var(--nav-h);
  height: auto;
  padding: 12px 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--t-normal), box-shadow var(--t-normal), padding var(--t-normal);
}

.navbar.scrolled {
  background: rgba(253,248,240,.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 24px rgba(46,26,10,.08);
  padding: 6px 40px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 150px;
  width: auto;
  transition: height var(--t-fast);
}

.navbar.scrolled .nav-brand img {
  height: 90px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a:hover {
  color: var(--terra);
  background: var(--terra-pale);
}

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: var(--shadow-terra);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast) !important;
}

.nav-cta:hover {
  background: var(--terra-l) !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px rgba(184,69,42,.35) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--dark); border-radius: 4px;
  transition: var(--t-fast);
}

.nav-mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(46,26,10,.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--t-normal);
}

.nav-mobile-overlay.active { opacity: 1; }


/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--cream) 0%, var(--terra-pale) 50%, var(--cream) 100%);
}

/* Decorative blobs */
.hero-blob-1 {
  position: absolute;
  top: -80px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  background: var(--sage-pale);
  opacity: .4;
  animation: blobMorph 12s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute;
  bottom: -60px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 42% 58% 36% 64% / 50% 44% 56% 50%;
  background: var(--peach-pale);
  opacity: .35;
  animation: blobMorph 10s ease-in-out infinite reverse;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
  33%      { border-radius: 44% 56% 62% 38% / 48% 54% 46% 52%; }
  66%      { border-radius: 56% 44% 38% 62% / 54% 48% 52% 46%; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Logo da marca no hero */
.hero-logo {
  width: 200px;
  animation: fadeSlideUp .6s var(--ease-smooth);
  filter: drop-shadow(0 4px 12px rgba(46,26,10,.08));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-d);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 800;
  color: var(--lion);
  width: fit-content;
  box-shadow: var(--shadow-sm);
  animation: fadeSlideUp .6s var(--ease-smooth) .1s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  animation: fadeSlideUp .6s var(--ease-smooth) .15s both;
}

.hero-title em {
  color: var(--terra);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 12px;
  background: var(--peach-pale);
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-text {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.85;
  max-width: 460px;
  animation: fadeSlideUp .6s var(--ease-smooth) .25s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp .6s var(--ease-smooth) .35s both;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terra); color: var(--white);
  padding: 16px 30px; border-radius: var(--r-full);
  font-family: var(--font-heading); font-size: 16px; font-weight: 800;
  box-shadow: var(--shadow-terra);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--terra-l);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(184,69,42,.35);
}

.btn-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 16px 30px; border-radius: var(--r-full);
  font-family: var(--font-heading); font-size: 16px; font-weight: 800;
  box-shadow: var(--shadow-wpp);
  transition: transform var(--t-fast), background var(--t-fast);
  text-decoration: none;
}

.btn-wpp:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.02);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--terra);
  padding: 15px 28px; border-radius: var(--r-full);
  border: 2.5px solid var(--terra);
  font-family: var(--font-heading); font-size: 16px; font-weight: 800;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--terra); color: var(--white);
  transform: translateY(-3px);
}

/* Hero visual — photo composition */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeSlideUp .7s var(--ease-smooth) .2s both;
}

.hero-photo-frame {
  position: relative;
  width: 380px;
  height: 460px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  animation: photoMorph 15s ease-in-out infinite;
}

@keyframes photoMorph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
  25%      { border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
  50%      { border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; }
  75%      { border-radius: 60% 40% 45% 55% / 40% 60% 40% 60%; }
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  background: linear-gradient(135deg, var(--terra) 0%, var(--peach) 50%, var(--sage) 100%);
  z-index: 1;
  opacity: .35;
  animation: photoMorph 15s ease-in-out infinite;
  filter: blur(12px);
}

/* Mascote flutuando */
.hero-mascote {
  position: absolute;
  bottom: 10px; right: -24px;
  width: 100px; height: 100px;
  z-index: 3;
  animation: mascoteFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(139,85,51,.25));
}

@keyframes mascoteFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-16px) rotate(5deg); }
}

/* Floating badge no hero */
.hero-float-badge {
  position: absolute;
  top: 30px; left: -20px;
  z-index: 4;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badgeFloat 5s ease-in-out infinite;
}

.hero-float-badge .badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.hero-float-badge .badge-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
}

.hero-float-badge .badge-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--soft);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}

/* Decorative tooth icons */
.hero-deco-tooth {
  position: absolute;
  font-size: 24px;
  opacity: .15;
  animation: toothSpin 20s linear infinite;
}

.hero-deco-tooth:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.hero-deco-tooth:nth-child(2) { top: 70%; right: 8%; animation-delay: -7s; font-size: 18px; }
.hero-deco-tooth:nth-child(3) { bottom: 15%; left: 12%; animation-delay: -13s; font-size: 20px; }

@keyframes toothSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}


/* ═══════════════════════════════════════════════════════
   TRUST BAR (barra de confiança)
   ═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark);
  padding: 28px 0;
  overflow: hidden;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.trust-item .trust-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(253,248,240,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.trust-item .trust-text {
  font-size: 13px;
  font-weight: 700;
}

.trust-item .trust-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(253,248,240,.12);
}


/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* Left side — creative visual with mascot + logo */
.about-visual {
  position: relative;
}

.about-logo-display {
  background: linear-gradient(145deg, var(--cream) 0%, var(--terra-pale) 100%);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.about-logo-display::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--sage-pale);
  opacity: .5;
}

.about-logo-display::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--peach-pale);
  opacity: .4;
}

.about-logo-img {
  width: 220px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 20px rgba(46,26,10,.1));
}

.about-mascote-img {
  width: 120px;
  position: relative;
  z-index: 1;
  animation: mascoteFloat 4s ease-in-out infinite;
}

.about-cro-pill {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

/* Stats bar */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.about-stat {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--terra);
}

.about-stat span {
  font-size: 11px;
  font-weight: 700;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Right side — text + highlights */
.about-text p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-text p strong {
  color: var(--dark);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.highlight-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  border-left: 4px solid transparent;
}

.highlight-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--terra);
}

.highlight-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.highlight-icon.terra  { background: var(--terra-pale); }
.highlight-icon.sage   { background: var(--sage-pale); }
.highlight-icon.peach  { background: var(--peach-pale); }
.highlight-icon.olive  { background: var(--olive-pale); }

.highlight-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2px;
}

.highlight-card p {
  font-size: 13px; color: var(--mid);
  line-height: 1.5; margin-bottom: 0;
}


/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.srv-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terra), var(--peach));
  opacity: 0;
  transition: opacity var(--t-normal);
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terra-pale);
}

.srv-card:hover::before { opacity: 1; }

.srv-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: var(--terra-pale);
  transition: transform .4s var(--ease-bounce), background var(--t-fast);
}

.srv-card:hover .srv-icon {
  transform: scale(1.15) rotate(-8deg);
  background: var(--terra);
}

.srv-card:hover .srv-icon-inner {
  filter: brightness(10);
}

.srv-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.srv-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(170deg, var(--terra-pale) 0%, var(--peach-pale) 60%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::before { display: none; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--terra-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
}

.testimonial-role {
  font-size: 13px;
  color: var(--soft);
}

.testimonial-stars {
  display: flex; gap: 2px;
  font-size: 16px; color: var(--olive);
}

.testimonial-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--terra-pale);
  flex-grow: 1;
}

.testimonial-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 8px 18px;
  background: var(--cream);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--mid);
}


/* ═══════════════════════════════════════════════════════
   SCHEDULING
   ═══════════════════════════════════════════════════════ */
.scheduling {
  padding: 100px 0;
  background: var(--white);
}

.scheduling-header {
  text-align: center;
  margin-bottom: 56px;
}

.scheduling-header .section-label {
  justify-content: center;
}

.scheduling-header .section-label::before { display: none; }

.scheduling-header .section-subtitle {
  margin: 0 auto;
  max-width: 520px;
}

/* Steps indicator */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0 20px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--soft);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.step-item.active {
  background: var(--terra);
  color: var(--white);
}

.step-item.done {
  background: var(--sage-pale);
  color: var(--sage);
}

.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream-d);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-item.active .step-num {
  background: rgba(255,255,255,.25);
  color: var(--white);
}

.step-item.done .step-num {
  background: var(--sage);
  color: var(--white);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--cream-d);
  flex-shrink: 0;
}

.step-connector.done {
  background: var(--sage);
}

/* Layout */
.scheduling-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Calendar */
.calendar {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-d);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  text-transform: capitalize;
}

.calendar-nav {
  display: flex; gap: 6px;
}

.calendar-nav button {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  box-shadow: var(--shadow-sm);
}

.calendar-nav button:hover {
  background: var(--terra); color: var(--white);
  transform: scale(1.1);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.calendar-weekdays span {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), transform .25s var(--ease-bounce);
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--terra-pale);
  color: var(--terra);
  transform: scale(1.12);
}

.calendar-day.selected {
  background: var(--terra);
  color: var(--white);
  box-shadow: var(--shadow-terra);
  transform: scale(1.12);
}

.calendar-day.today:not(.selected) {
  background: var(--sage-pale);
  color: var(--sage);
  font-weight: 800;
}

.calendar-day.disabled {
  color: var(--cream-d);
  cursor: not-allowed;
  opacity: .35;
}

.calendar-day.empty { cursor: default; }

.calendar-day.sunday {
  color: var(--soft);
  opacity: .3;
  cursor: not-allowed;
}

/* Time slots */
.time-slots-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed var(--cream-d);
  display: none;
}

.time-slots-container.active {
  display: block;
  animation: fadeSlideUp .35s var(--ease-smooth);
}

.time-slots-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 10px 6px;
  border-radius: var(--r-sm);
  background: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), transform .25s var(--ease-bounce), box-shadow var(--t-fast);
  border: 2px solid transparent;
}

.time-slot:hover {
  border-color: var(--terra-l);
  color: var(--terra);
  transform: translateY(-2px);
}

.time-slot.selected {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
  box-shadow: var(--shadow-terra);
  transform: translateY(-2px);
}

/* Booking form */
.booking-form-container {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-d);
}

.booking-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.booking-form-subtitle {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Mom-friendly helper */
.mom-helper {
  background: var(--sage-pale);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--dark);
  line-height: 1.6;
}

.mom-helper .helper-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.mom-helper strong {
  color: var(--dark);
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-label .emoji { font-size: 16px; }

.form-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 2px solid var(--cream-d);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--dark);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-input:focus {
  border-color: var(--terra-l);
  box-shadow: 0 0 0 4px rgba(184,69,42,.08);
}

.form-input::placeholder { color: var(--soft); }

textarea.form-input {
  min-height: 90px; resize: vertical; line-height: 1.6;
}

/* Preview */
.booking-preview {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 20px;
  display: none;
  border-left: 4px solid var(--terra);
}

.booking-preview.active {
  display: block;
  animation: fadeSlideUp .3s var(--ease-smooth);
}

.booking-preview-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--mid);
  padding: 3px 0;
}

.booking-preview-item strong {
  color: var(--dark); font-weight: 800;
}

.btn-submit-wpp {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  background: #25D366; color: var(--white);
  padding: 16px 32px; border-radius: var(--r-full);
  font-family: var(--font-heading); font-size: 16px; font-weight: 800;
  box-shadow: var(--shadow-wpp);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  margin-top: 8px;
}

.btn-submit-wpp:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
}

.btn-submit-wpp:disabled {
  background: var(--cream-d); color: var(--soft);
  box-shadow: none; cursor: not-allowed; transform: none;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--soft);
  margin-top: 14px;
}


/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header .section-label {
  justify-content: center;
}

.contact-header .section-label::before { display: none; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--terra-pale);
}

.contact-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

.contact-icon.wpp   { background: #dcf5e7; }
.contact-icon.loc   { background: var(--terra-pale); }
.contact-icon.clock { background: var(--sage-pale); }

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 800;
  color: var(--dark);
}

.contact-card p {
  font-size: 14px; color: var(--mid); line-height: 1.7;
}

.contact-card a {
  color: var(--terra); font-weight: 700;
  transition: color var(--t-fast);
}

.contact-card a:hover { color: var(--terra-l); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hours-table td {
  padding: 5px 10px;
  border-bottom: 1px solid var(--cream-d);
}

.hours-table td:first-child { font-weight: 700; color: var(--dark); }
.hours-table td:last-child  { text-align: right; color: var(--mid); }


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 48px 0 28px;
}

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

.footer-brand {
  display: flex; align-items: center; gap: 14px;
}

.footer-brand img {
  height: 50px;
  filter: brightness(0) invert(1) brightness(.95);
}

.footer-brand-text h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 800;
  color: var(--cream);
}

.footer-brand-text p {
  font-size: 12px; color: var(--soft);
  letter-spacing: 1px; text-transform: uppercase;
  margin-top: 2px;
}

.footer-links {
  display: flex; gap: 24px; list-style: none;
}

.footer-links a {
  font-size: 14px; color: var(--soft);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  text-align: center;
  padding-top: 28px; margin-top: 28px;
  border-top: 1px solid rgba(253,248,240,.06);
  font-size: 12px; color: var(--soft);
}


/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-smooth), transform .65s var(--ease-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { align-items: center; }
  .hero-text { max-width: 520px; margin: 0 auto; }
  .hero-badge { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-photo-frame { width: 300px; height: 360px; margin: 0 auto; }
  .hero-float-badge { left: 10px; top: 10px; }
  .hero-logo { margin: 0 auto; }

  .trust-inner { gap: 24px; }
  .trust-divider { display: none; }

  .about-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .scheduling-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-bar { flex-wrap: wrap; gap: 8px; }
  .step-connector { display: none; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }
  .navbar {
    padding: 10px 20px;
  }
  .navbar.scrolled {
    padding: 5px 20px;
  }
  .nav-brand img {
    height: 110px;
  }
  .navbar.scrolled .nav-brand img {
    height: 70px;
  }

  /* Hamburger Animado */
  .nav-hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    box-shadow: -4px 0 30px rgba(46,26,10,.15);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
    animation: slideInRight .3s var(--ease-smooth);
  }

  @keyframes slideInRight {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
  }

  .nav-links a { font-size: 16px; padding: 12px 16px; }
  .nav-hamburger { display: flex; }
  .nav-mobile-overlay.active { display: block; }

  /* Hero Mobile */
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-title { font-size: 34px; }
  .hero-text { font-size: 15px; }
  .hero-logo { width: 160px; }
  .hero-photo-frame { width: 250px; height: 300px; }
  .hero-mascote { width: 80px; height: 80px; right: -10px; bottom: 0; }
  .hero-float-badge { display: none; }
  .hero-deco-tooth { display: none; }

  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .section-title { font-size: 28px; }

  /* Trust Bar 2x2 Grid */
  .trust-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    justify-items: center;
  }
  .trust-item {
    width: 100%;
    max-width: 160px;
    justify-content: flex-start;
  }

  /* Services compact design on Mobile */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .srv-card {
    padding: 20px 10px 16px;
    border-radius: var(--r-md);
  }
  .srv-icon {
    width: 44px; height: 44px;
    font-size: 20px;
    margin-bottom: 8px;
  }
  .srv-card h4 {
    font-size: 13.5px;
    line-height: 1.3;
  }
  .srv-card p {
    font-size: 11px;
    line-height: 1.45;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Testimonials */
  .testimonial-card { padding: 28px 24px; }

  /* Steps compact layout */
  .steps-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 0;
  }
  .step-item {
    flex-direction: column;
    gap: 4px;
    padding: 8px 2px;
    font-size: 10px;
    text-align: center;
    white-space: normal;
  }
  .step-num {
    width: 22px; height: 22px;
    font-size: 11px;
  }

  /* Scheduling */
  .time-slots-grid { grid-template-columns: repeat(4, 1fr); }
  .calendar { padding: 20px; }
  .booking-form-container { padding: 24px 20px; }

  /* Mom helper responsive */
  .mom-helper {
    padding: 12px 14px;
    font-size: 12px;
  }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .about-stat strong { font-size: 18px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 28px; }
  .time-slots-grid { grid-template-columns: repeat(3, 1fr); }
  .calendar-weekdays span { font-size: 10px; }
  .calendar-day { font-size: 12px; }
  .step-item { font-size: 9px; padding: 6px 1px; }
}

/* ── GOOGLE CALENDAR LOADER & DISABLED SLOTS ── */
.slots-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  gap: 12px;
  color: var(--mid);
  font-weight: 700;
  font-size: 14px;
}

.slots-loading .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--cream-d);
  border-top-color: var(--terra);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.time-slot.disabled {
  background: var(--cream-d) !important;
  color: var(--soft) !important;
  cursor: not-allowed !important;
  opacity: 0.5;
  border-color: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── BOTÃO FLUTUANTE WHATSAPP & SERVICES CTA ── */
.wpp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 9999;
  transition: transform var(--t-fast), background var(--t-fast);
  animation: pulseWpp 2s infinite;
}

.wpp-float:hover {
  transform: scale(1.1);
  background: #20BA5A;
}

.wpp-float svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@keyframes pulseWpp {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

.services-cta {
  margin-top: 48px;
  text-align: center;
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  border: 2px dashed var(--cream-d);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.services-cta p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .wpp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  
  .services-cta {
    margin-top: 36px;
    padding: 24px 20px;
    gap: 12px;
  }
  
  .services-cta p {
    font-size: 15px;
  }
}

/* ── FOTO SOBRE COM MASCOTE FLUTUANTE PEQUENO ── */
.about-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

.about-mascote-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  z-index: 3;
  animation: mascoteFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(139,85,51,.25));
}

@media (max-width: 768px) {
  .about-photo-wrapper {
    max-width: 280px;
  }
  .about-mascote-float {
    width: 70px;
    height: 70px;
    bottom: -15px;
    right: -15px;
  }
}



