/* ============================================
   Dr. Fabiano Beal — Natural Studio
   Premium Dental Landing Page
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
  --bg-deep: #070D18;
  --bg-primary: #0B1220;
  --bg-secondary: #0F1729;
  --bg-card: #131D30;
  --bg-elevated: #182338;
  --gold: #C9A96E;
  --gold-hover: #D9BD88;
  --gold-dim: rgba(201,169,110,0.12);
  --gold-border: rgba(201,169,110,0.18);
  --sage: #8B9E7B;
  --sage-hover: #9DB08E;
  --text-primary: #F2EDE7;
  --text-secondary: rgba(242,237,231,0.6);
  --text-muted: rgba(242,237,231,0.35);
  --whatsapp: #25D366;
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --max-w: 1200px;
  --section-py: clamp(80px, 10vw, 130px);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- SECTION TITLE ---- */
.section-label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.15;
  color: var(--text-primary); margin-bottom: 20px; text-wrap: pretty;
}
.section-subtitle {
  font-size: clamp(16px, 1.8vw, 19px); color: var(--text-secondary);
  max-width: 600px; line-height: 1.65;
}

/* ---- BUTTONS ---- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 60px; font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em; transition: all 0.35s ease; cursor: pointer;
}
/* Shine sweep that runs across solid buttons */
.btn-gold::after, .btn-sage::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn-gold:hover::after, .btn-sage:hover::after { animation: btn-shine 0.85s ease; }
@keyframes btn-shine { from { left: -120%; } to { left: 140%; } }
@media (prefers-reduced-motion: reduce) {
  .btn-gold:hover::after, .btn-sage:hover::after { animation: none; }
}
.btn-gold {
  background: var(--gold); color: #0B1220;
  box-shadow: 0 0 0 1px rgba(201,169,110,0.4), 0 6px 22px rgba(201,169,110,0.30);
}
.btn-gold:hover {
  background: var(--gold-hover); transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.6), 0 12px 44px rgba(201,169,110,0.50), 0 0 28px rgba(201,169,110,0.45);
}
.btn-outline {
  background: transparent; color: var(--gold); border: 1.5px solid var(--gold-border);
}
.btn-outline:hover {
  border-color: var(--gold); background: var(--gold-dim);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.35), 0 0 24px rgba(201,169,110,0.30);
}
.btn-sage { background: var(--sage); color: #0B1220; box-shadow: 0 0 0 1px rgba(139,158,123,0.4), 0 6px 22px rgba(139,158,123,0.28); }
.btn-sage:hover {
  background: var(--sage-hover); transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(139,158,123,0.6), 0 12px 44px rgba(139,158,123,0.45), 0 0 28px rgba(139,158,123,0.40);
}

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: all 0.4s ease;
}
.site-header.scrolled {
  background: rgba(11,18,32,0.92); backdrop-filter: blur(20px);
  padding: 14px 0; border-bottom: 1px solid var(--gold-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 18px; font-weight: 700; color: var(--text-primary);
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); font-weight: 400; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.3s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--gold); }
.header-cta { font-size: 14px; padding: 12px 28px; }
.mobile-toggle {
  display: none; background: none; color: var(--text-primary); font-size: 24px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  flex-shrink: 0; line-height: 1;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: -1;
  padding: 92px 24px 28px;
  background: rgba(7,13,24,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  display: flex; flex-direction: column;
  animation: menu-in 0.25s ease;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
@keyframes menu-in { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-menu .mobile-link {
  padding: 15px 4px; font-size: 17px; font-weight: 600;
  color: var(--text-primary); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s;
}
.mobile-menu .mobile-link:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 20px; justify-content: center; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}
.hero-text { position: relative; z-index: 2; }
.hero-text h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1;
  margin-bottom: 24px; text-wrap: balance;
}
.hero-text h1 em {
  font-style: normal; color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-hover));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-text p {
  font-size: clamp(16px, 1.6vw, 19px); color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 40px; max-width: 520px;
}
.hero-image {
  position: relative; display: flex; justify-content: center;
}
.hero-image img {
  width: 100%; max-width: 480px; height: 600px; object-fit: cover;
  object-position: top center; border-radius: 240px 240px 20px 20px;
}
.hero-image::before {
  content: ''; position: absolute; inset: -3px;
  max-width: 486px; width: calc(100% + 6px); height: 606px;
  border-radius: 243px 243px 23px 23px;
  background: linear-gradient(180deg, var(--gold-border), transparent 70%);
  z-index: -1; margin: 0 auto;
}
.hero-badge {
  position: absolute; bottom: 40px; left: -20px;
  background: var(--bg-card); border: 1px solid var(--gold-border);
  border-radius: 16px; padding: 16px 24px;
  display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(20px);
}
.hero-badge-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
}
.hero-badge-text { font-size: 13px; color: var(--text-secondary); }
.hero-badge-text strong { display: block; color: var(--text-primary); font-size: 15px; }

/* ---- DORES ---- */
.dores { background: var(--bg-secondary); padding: var(--section-py) 0; }
.dores-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.dor-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  transition: all 0.35s ease;
}
.dor-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.dor-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gold-dim); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.dor-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dor-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.dor-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* ---- PROCEDIMENTOS ---- */
.procedimentos { padding: var(--section-py) 0; }
.proc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px; margin-bottom: 48px;
}
.proc-card {
  display: block; text-decoration: none; color: inherit; cursor: pointer;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px; padding: 28px 24px;
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.proc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.proc-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.proc-card:hover::before { opacity: 1; }
.proc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-dim); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 20px;
}
.proc-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.proc-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 16px; }
.proc-link {
  font-size: 13px; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
.proc-link:hover { gap: 10px; }

/* ---- DIFERENCIAIS ---- */
.diferenciais { background: var(--bg-secondary); padding: var(--section-py) 0; }
.dif-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 48px;
}
.dif-card { text-align: center; }
.dif-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
}
.dif-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.dif-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.dif-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ---- SOBRE ---- */
.sobre { padding: var(--section-py) 0; }
.sobre-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.sobre-photo { position: relative; }
.sobre-photo img {
  width: 100%; height: 560px; object-fit: cover; object-position: top center;
  border-radius: 20px;
}
.sobre-photo::after {
  content: ''; position: absolute; bottom: -12px; right: -12px;
  width: 50%; height: 50%; border-radius: 0 0 20px 0;
  border-right: 2px solid var(--gold-border); border-bottom: 2px solid var(--gold-border);
}
.sobre-content h3 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; margin-bottom: 8px;
}
.sobre-specialty {
  font-size: 16px; color: var(--gold); font-weight: 500; margin-bottom: 24px;
}
.sobre-bio {
  font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px;
}
.sobre-credentials {
  list-style: none; margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.sobre-credentials li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-secondary);
}
.sobre-credentials li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ---- RESULTADOS ---- */
.resultados { background: var(--bg-secondary); padding: var(--section-py) 0; }
.resultados-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px; margin-bottom: 48px;
}
.resultado-card {
  border-radius: 16px; overflow: hidden;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04);
}
.resultado-images {
  display: grid; grid-template-columns: 1fr 1fr; height: 220px;
}
.resultado-half {
  position: relative; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.resultado-half:first-child { background: rgba(0,0,0,0.3); }
.resultado-half:last-child { background: rgba(201,169,110,0.08); }
.resultado-half span {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.12em;
}
.resultado-info { padding: 16px 20px; }
.resultado-tag {
  font-size: 12px; font-weight: 600; color: var(--gold);
  background: var(--gold-dim); padding: 5px 14px; border-radius: 20px;
  display: inline-block;
}

/* ---- DEPOIMENTOS ---- */
.depoimentos { padding: var(--section-py) 0; overflow: hidden; }
.dep-marquee {
  margin-top: 48px; position: relative; width: 100%;
  overflow-x: auto; overflow-y: hidden;
  cursor: grab; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.dep-marquee::-webkit-scrollbar { display: none; }
.dep-marquee.dragging { cursor: grabbing; }
.dep-track {
  display: flex; gap: 24px; width: max-content;
  padding: 4px 0;
}
@media (prefers-reduced-motion: reduce) {
  .dep-track { flex-wrap: nowrap; }
}
.dep-card {
  flex: 0 0 380px; max-width: 380px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px; padding: 28px 32px; transition: border-color 0.35s;
  user-select: none;
}
.dep-card:hover { border-color: var(--gold-border); }
.dep-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.dep-google {
  margin-left: auto; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; color: #4285F4; font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: Arial, sans-serif; box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.dep-stars { color: var(--gold); font-size: 14px; margin-top: 4px; letter-spacing: 3px; }
.dep-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.dep-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--gold);
}
.dep-name { font-size: 15px; font-weight: 600; }
.dep-role { font-size: 13px; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq { background: var(--bg-secondary); padding: var(--section-py) 0; }
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
  width: 100%; background: none; color: var(--text-primary);
  padding: 24px 0; font-size: 17px; font-weight: 600; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s, background 0.3s;
  color: var(--gold); font-size: 18px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--bg-primary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding-bottom: 24px; font-size: 15px; color: var(--text-secondary); line-height: 1.7;
}

/* ---- SOBRE ALT (reversed) ---- */
.sobre-alt { background: var(--bg-secondary); }
.sobre-inner-reverse .sobre-photo::after {
  right: auto; left: -12px;
  border-right: none; border-left: 2px solid var(--gold-border);
  border-radius: 0 0 0 20px;
}

/* ---- FAQ CTA ---- */
.faq-cta {
  margin: 48px auto 0; max-width: 640px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  padding: 40px; background: var(--bg-card);
  border: 1px solid var(--gold-border); border-radius: 20px;
}
.faq-cta p { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }
.faq-cta strong { color: var(--text-primary); }

/* ---- CLINICA ---- */
.clinica { padding: var(--section-py) 0; }
.clinica-gallery {
  column-count: 2; column-gap: 16px;
  margin-top: 48px; margin-bottom: 40px;
}
.clinica-gallery .gallery-item {
  background: var(--bg-card); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden; position: relative;
  break-inside: avoid; margin-bottom: 16px;
}
.clinica-gallery .gallery-item img { border-radius: 16px; }
.clinica-info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start;
}
.clinica-address h4 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.clinica-address p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.clinica-map {
  background: var(--bg-card); border-radius: 16px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted); font-size: 14px;
}

/* ---- CTA FINAL ---- */
.cta-final {
  padding: var(--section-py) 0; text-align: center;
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, var(--bg-secondary) 50%, rgba(139,158,123,0.06) 100%);
  position: relative;
}
.cta-final::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px; background: linear-gradient(180deg, transparent, var(--gold-border));
}
.cta-final h2 {
  font-size: clamp(32px, 4.5vw, 50px); font-weight: 700; margin-bottom: 16px;
}
.cta-final p {
  font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-deep); padding: 64px 0 0; border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { font-size: 20px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; max-width: 280px; }
.footer-col h5 {
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--text-secondary); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-image { order: -1; }
  .hero-badge { left: 50%; transform: translateX(-50%); }
  .dores-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .dores-grid, .dif-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .resultados-grid { grid-template-columns: 1fr; }
  .clinica-gallery { column-count: 1; }
  .clinica-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-image img { height: 450px; max-width: 340px; }
  .hero-image::before { height: 456px; max-width: 346px; }

  /* Header compacto: some o CTA e o menu ☰, fica só o logo */
  .header-cta { display: none; }
  .mobile-toggle { display: none; }
  .logo { font-size: 15px; white-space: nowrap; }

  /* Hero: badge deixa de flutuar e senta abaixo da foto */
  .hero { padding-top: 88px; }
  .hero-image { flex-direction: column; align-items: center; }
  .hero-badge {
    position: static; left: auto; bottom: auto; transform: none;
    margin-top: -44px; z-index: 2;
  }
  .hero-text .btn { width: 100%; justify-content: center; }

  /* Botões e cards mais proporcionais à tela */
  .btn { padding: 15px 28px; font-size: 14px; }
  .dep-card {
    flex: 0 0 min(320px, calc(100vw - 56px));
    max-width: min(320px, calc(100vw - 56px));
    padding: 22px 20px;
  }
  .faq-cta { padding: 28px 20px; }
  .sobre-photo img { height: 440px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* Placeholder styling for image slots */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-card) 25%, transparent 25%, transparent 50%, var(--bg-card) 50%, var(--bg-card) 75%, transparent 75%);
  background-size: 20px 20px;
  background-color: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
}
