/* ── Design tokens ── */
:root {
  --bg: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #F9FAFB;
  --text: #0F172A;
  --text-muted: #64748B;
  --accent: #1E293B;
  --accent-hover: #0F172A;
  --highlight: #22C55E;
  --border: transparent;
  --shadow-sm: none;
  --shadow-md: none;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --header-h: 3.75rem;
}

[data-theme="dark"] {
  --bg: #1E293B;
  --bg-card: #273549;
  --bg-subtle: #243044;
  --text: #F1F5F9;
  --text-muted: rgba(241, 245, 249, 0.55);
  --accent: #1E293B;
  --accent-hover: #0F172A;
  --highlight: #22C55E;
  --border: transparent;
  --shadow-sm: none;
  --shadow-md: none;
}

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 767px) {
  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    display: none;
  }
}

body {
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  background: var(--body-bg, var(--bg));
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

:root {
  --body-bg:
    radial-gradient(circle at top left, rgba(30, 41, 59, 0.06), transparent 28rem),
    #FFFFFF;
}

[data-theme="dark"] {
  --body-bg: #1E293B;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Header ── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.75rem 0 0.75rem 1.25rem;
}

.header-logo img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  object-fit: contain;
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1.25rem;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.header-contact-btn:hover {
  color: var(--accent);
  transform: scale(1.12);
}

.header-contact-btn .material-symbols-outlined {
  font-size: 1.35rem;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.2rem 1rem 0rem;
  gap: 0;
  max-width: 32rem;
  margin: 0 auto;
}

.hero-photo-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.hero-photo {
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  object-fit: cover;
}

.hero-name {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  min-height: 1.4em;
}

.hero-name::after,
.hero-title::after {
  content: "|";
  animation: blink 0.9s step-end infinite;
  margin-left: 2px;
  opacity: 1;
}

.hero-name.typed::after,
.hero-title.typed::after {
  display: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-title {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  min-height: 1.2em;
}

.hero-desc {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 22rem;
}

/* ── Hero stats chips ── */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.85rem;
  margin-bottom: 0.25rem;
}

.hero-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-stat-chip .material-symbols-outlined {
  font-size: 0.9rem;
  color: var(--accent);
}

/* ── BI Icon buttons ── */
.bi-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.bi-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--accent);
  transition: color 0.18s, transform 0.18s;
  flex-shrink: 0;
  padding: 0.25rem 0.5rem;
}

.bi-btn:hover {
  color: var(--text);
  transform: scale(1.12);
}

.bi-btn .material-symbols-outlined {
  font-size: 1.75rem;
}

.bi-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

/* ── BA Action buttons ── */
.ba-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.ba-accordion {
  width: 100%;
}

.ba-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.14s;
  list-style: none;
}

.ba-btn::-webkit-details-marker {
  display: none;
}

.ba-btn:hover {
  background: var(--bg-subtle);
}

.ba-btn:active {
  transform: scale(0.98);
}

.ba-accordion[open] .ba-btn {
  background: var(--bg-subtle);
  color: var(--accent);
}

.ba-chevron {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.22s ease;
}

.ba-accordion[open] .ba-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.ba-panel {
  margin-top: 0.5rem;
  padding: 0 0.1rem;
}

.ba-btn-highlight {
  background: var(--accent);
  color: #ffffff;
  border: none;
}

.ba-btn-highlight:hover {
  background: var(--accent-hover);
}

.ba-btn-highlight .material-symbols-outlined {
  color: #ffffff;
}

.ba-btn .material-symbols-outlined:first-child {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.ba-btn-google {
  text-decoration: none;
  background: var(--bg-card);
  color: var(--text);
}

.ba-btn-google:hover {
  background: var(--bg-subtle);
}

.ba-btn-google .material-symbols-outlined:first-child {
  color: #fbbc04;
  font-variation-settings: 'FILL' 1;
}

.ba-btn-highlight .material-symbols-outlined:first-child,
.ba-btn-highlight .material-symbols-outlined {
  color: #ffffff !important;
}

.ba-accordion[open] .ba-btn .material-symbols-outlined:first-child {
  color: var(--accent);
}

/* ── Main media ── */
.main-media-section {
  max-width: 32rem;
  margin: 1.5rem auto;
  padding: 0 1.25rem;
}

.main-media-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.main-media-wrap img,
.main-media-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.main-media-wrap video {
  max-height: 75vh;
  object-fit: cover;
}

.video-mute-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.18s;
}

.video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.video-mute-btn .material-symbols-outlined {
  font-size: 1.2rem;
}

/* ── Accordions ── */
.accordions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 32rem;
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
}

.bs-accordion {
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: background 0.18s;
}

.bs-accordion[open] {
  background: var(--bg-subtle);
}

.bs-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
  color: var(--text);
}

.bs-accordion[open] .bs-summary {
  color: var(--accent);
}

.bs-icon {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.bs-accordion[open] .bs-icon {
  color: var(--accent);
}

.bs-chevron {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}

.bs-accordion[open] .bs-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.bs-panel {
  padding: 0.25rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ── Foto profissional ── */
.professional-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 0.25rem;
}

/* ── Bio text ── */
.bio-text {
  display: grid;
  gap: 0.75rem;
}

.bio-text p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

/* ── WhatsApp frame ── */
.whatsapp-frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.whatsapp-frame-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1rem;
}

[data-theme="dark"] .whatsapp-frame-header {
  background: var(--bg-card);
}

.whatsapp-frame-header img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: contain;
}

.whatsapp-frame-header strong {
  display: block;
  font-size: 0.9rem;
}

.whatsapp-frame-header span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.78;
}

.whatsapp-frame-body {
  background: var(--bg-subtle);
  min-height: 9rem;
  padding: 1rem;
}

.whatsapp-frame-body p {
  background: #fff;
  color: var(--text);
  border-radius: 0 0.75rem 0.75rem 0.75rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.88rem;
  max-width: 18rem;
}

[data-theme="dark"] .whatsapp-frame-body p {
  background: var(--bg-card);
}

.whatsapp-frame-compose {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  background: var(--bg-card);
  padding: 0.75rem;
}

.whatsapp-frame-compose textarea {
  flex: 1;
  min-height: 2.75rem;
  max-height: 7rem;
  resize: vertical;
  border: none;
  border-radius: 0.75rem;
  background: var(--bg-subtle);
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  padding: 0.65rem 0.85rem;
  outline: none;
}

.whatsapp-frame-compose button {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: #D90429;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .whatsapp-frame-compose button {
  background: var(--accent);
  color: #fff;
}

.whatsapp-frame-compose button .material-symbols-outlined {
  font-size: 1.1rem;
}

/* ── Horários ── */
.horarios-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.wa-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem;
  border: 0;
  border-radius: var(--radius);
  background: #25d366;
  color: #fff;
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
}

.wa-link-btn:hover {
  background: #1ebe5b;
}

.wa-link-btn .material-symbols-outlined {
  font-size: 1.1rem;
}

.horarios-table {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-subtle);
}

.horarios-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
}

.horarios-row.last {}

.horarios-row span {
  color: var(--text-muted);
}

.horarios-row strong {
  color: var(--text);
}

.horarios-row.today {
  background: rgba(217, 4, 41, 0.07);
  border-radius: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.horarios-row.today span {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.horarios-row.today strong {
  color: var(--accent);
  font-weight: 700;
}

/* ── Localização ── */
.localizacao-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-actions {
  display: flex;
  gap: 0.6rem;
}

.map-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: var(--radius);
  border: none;
  background: var(--bg-subtle);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.18s;
}

.map-btn:hover {
  background: var(--bg-card);
}

.map-btn .material-symbols-outlined {
  font-size: 1rem;
}

.d-map-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.map-embed {
  border-radius: var(--radius);
  display: block;
}

/* ── Contato actions ── */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: var(--radius);
  background: var(--bg-subtle);
  color: var(--text);
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}

.contact-btn:hover {
  background: var(--bg-card);
}

.contact-btn .material-symbols-outlined {
  font-size: 1.2rem;
  color: var(--accent);
}

.contact-btn-wa {
  background: #25d366;
  color: #fff;
}

.contact-btn-wa:hover {
  background: #1ebe5b;
}

.contact-btn-wa .material-symbols-outlined {
  color: #fff;
}

/* ── Serviços (mobile list) ── */
.areas-list {
  display: grid;
  gap: 0.65rem;
}

.area-item {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--bg-subtle);
}

.area-num {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  flex-shrink: 0;
}

.area-num--icon {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Material Symbols Outlined";
}

.area-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.area-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Parceiros (mobile) ── */
.partners-list {
  display: grid;
  gap: 0.65rem;
}

.partner-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: var(--bg-subtle);
}

.partner-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-icon svg {
  width: 100%;
  height: 100%;
}

.partner-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.partner-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Footer ── */
.site-footer {
  margin-top: 2.5rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: #1E293B;
}

.meuweb-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.meuweb-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, max-height 0.22s ease;
}

.meuweb-credit a {
  font-family: "Oleo Script Swash Caps", cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.18s;
}

.meuweb-credit a:hover {
  opacity: 0.85;
}

.footer-rights {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .meuweb-credit:hover .meuweb-label {
    opacity: 1;
    max-height: 2rem;
  }
}

.d-footer .meuweb-label {
  max-height: 2rem;
  overflow: visible;
}

/* ── Entry animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) {
  transition-delay: 0ms;
}

.fade-up:nth-child(2) {
  transition-delay: 60ms;
}

.fade-up:nth-child(3) {
  transition-delay: 120ms;
}

.fade-up:nth-child(4) {
  transition-delay: 180ms;
}

.fade-up:nth-child(5) {
  transition-delay: 240ms;
}

.fade-up:nth-child(6) {
  transition-delay: 300ms;
}

.fade-up:nth-child(7) {
  transition-delay: 360ms;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-name::after,
  .hero-title::after {
    animation: none;
  }
}

/* ── Desktop centering ── */
@media (min-width: 640px) {

  .hero,
  .main-media-section,
  .accordions,
  .site-footer {
    max-width: 36rem;
  }
}

/* ══════════════════════════════════════
   MOBILE / DESKTOP SWITCHING
══════════════════════════════════════ */
.desktop-view {
  display: none;
}

.mobile-view {
  display: block;
}

@media (min-width: 768px) {
  .desktop-view {
    display: block;
  }

  .mobile-view {
    display: none;
  }
}

/* ══════════════════════════════════════
   DESKTOP STYLES
══════════════════════════════════════ */

/* ── Desktop header ── */
.d-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s;
}

.d-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .d-header.scrolled {
  background: rgba(15, 23, 42, 0.96);
}

.d-header-inner {
  max-width: 82rem;
  margin: 0 auto;
  padding: 0 2rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.d-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.d-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: contain;
}

.d-nav {
  display: flex;
  gap: 1.75rem;
}

.d-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s;
}

.d-nav a:hover {
  color: var(--accent);
}

.d-nav a.active {
  color: var(--accent);
}

.d-cta-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, transform 0.14s;
}

.d-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ── Ticker ── */
.d-ticker-strip {
  overflow: hidden;
  background: var(--accent);
  padding: 0.6rem 0;
}

.d-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: d-ticker 28s linear infinite;
}

.d-ticker-track span {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0 2.5rem;
}

.d-ticker-track span::before {
  content: "•";
  margin-right: 2.5rem;
  opacity: 0.5;
}

@keyframes d-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Hero ── */
.d-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.d-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(217, 4, 41, 0.10), transparent 38%),
    linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 52%, #1E293B 100%);
  z-index: 0;
}

[data-theme="dark"] .d-hero-bg {
  background:
    radial-gradient(circle at 8% 18%, rgba(217, 4, 41, 0.08), transparent 38%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #D90429 100%);
}

.d-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.d-hero-logo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 999px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.d-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.d-hero-h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* ── Looping text ── */
.d-loop-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.d-loop-label {
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.d-loop-text {
  color: var(--accent);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  min-width: 14rem;
  display: inline-block;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.d-loop-text.fading {
  opacity: 0;
}

.d-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 30rem;
  margin-bottom: 2rem;
}

.d-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.d-btn-primary {
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s, transform 0.14s;
  display: inline-flex;
  align-items: center;
}

.d-btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.d-btn-outline {
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(217, 4, 41, 0.3);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, transform 0.14s;
  display: inline-flex;
  align-items: center;
}

.d-btn-outline:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.d-hero-media {
  position: relative;
}

.d-hero-media-wrap {
  border-radius: 2rem;
  overflow: hidden;
}


.d-hero-media-wrap img,
.d-hero-media-wrap video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}

.d-hero-media-wrap.d-hero-banner {
  border-radius: 2rem;
  overflow: hidden;
  max-height: 75vh;
  width: calc(75vh * 9 / 16);
  margin-left: auto;
}

.d-hero-media-wrap.d-hero-banner img {
  aspect-ratio: 9/16;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}

.d-hero-media-wrap.d-hero-banner video {
  aspect-ratio: 9/16;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
}

.d-hero-inner.d-hero--video-banner {
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
}

.d-hero-card {
  position: absolute;
  bottom: -1.75rem;
  left: -1.75rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: 16rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.d-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .d-hero-card {
  background: var(--bg-card);
}

.d-hero-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.d-hero-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Shared section layout ── */
.d-section {
  padding: 6rem 0;
}

.d-white {
  background: #ffffff;
}

.d-sand {
  background: #F1F5F9;
}

.d-paper {
  background: var(--bg);
}

.d-dark {
  background: #1E293B;
}

[data-theme="dark"] .d-white {
  background: var(--bg-card);
}

[data-theme="dark"] .d-sand {
  background: var(--bg-subtle);
}

[data-theme="dark"] .d-dark {
  background: #0f1a26;
}

.d-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.d-grid-2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.d-self-center {
  align-self: center;
}

.d-section-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1.5rem;
}

.d-section-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.d-kicker-gold {
  color: #22C55E !important;
}

.d-section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.d-white-text {
  color: #fff !important;
}

.d-bio-text {
  display: grid;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--text-muted);
}

/* ── Diferenciais grid (inside sobre section) ── */
.d-diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

[data-theme="dark"] .d-diferenciais-grid {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.d-diferencial {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.d-diferencial .material-symbols-outlined {
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.d-diferencial strong {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.d-diferencial small {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ── Table tabs ── */
.d-tables-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.d-tab-btn {
  padding: 0.6rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.d-tab-btn.active,
.d-tab-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Product/Service cards ── */
.d-section-head {
  margin-bottom: 3rem;
}

.d-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.d-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.22s ease;
  min-height: 14rem;
}

[data-theme="dark"] .d-card {
  background: var(--bg-card);
}

.d-card:hover {
  transform: translateY(-4px);
}

.d-card-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0.22;
  display: block;
  margin-bottom: 1.1rem;
  letter-spacing: -0.03em;
}

.d-card-num--icon {
  font-size: 2rem;
  opacity: 0.55;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Material Symbols Outlined";
}

.d-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.d-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FAQ ── */
.d-grid-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.d-faq-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.5rem;
}

.d-faq-list {
  display: grid;
  gap: 0.85rem;
}

.d-faq-item {
  border-radius: 1rem;
  background: var(--bg-card);
  overflow: hidden;
}

.d-faq-item[open] {
  background: var(--bg-subtle);
}

.d-faq-item summary {
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.d-faq-item summary::-webkit-details-marker {
  display: none;
}

.d-faq-item summary::after {
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.22s;
}

.d-faq-item[open] summary::after {
  transform: rotate(180deg);
  color: var(--accent);
}

.d-faq-answer {
  padding: 0 1.3rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Horários ── */
.d-horarios-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.d-btn-gold {
  background: #22C55E !important;
  color: #fff !important;
}

.d-btn-gold:hover {
  background: #16a34a !important;
}

.d-schedule-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
}

.d-schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.d-schedule-row strong {
  color: #fff;
}

.d-schedule-row.closed {
  color: rgba(255, 255, 255, 0.45);
}

.d-schedule-row.closed strong {
  color: rgba(255, 255, 255, 0.45);
}

.d-schedule-row.today span {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.d-schedule-row.today strong {
  color: #fff;
}

/* ── WA section ── */
.d-grid-wa {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: stretch;
}

.d-grid-wa .whatsapp-frame {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.d-grid-wa .whatsapp-frame-body {
  flex: 1;
}

.d-wa-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* ── Contact card (desktop) ── */
.d-contact-card {
  background: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.d-contact-phone-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.d-contact-wa-icon {
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
}

.d-contact-phone-num {
  font-size: 1.2rem;
  font-weight: 700;
  flex: 1;
}

.d-contact-copy-btn {
  background: none;
  border: none;
  border-radius: 0.5rem;
  padding: 0.35rem 0.45rem;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color 0.18s;
}

.d-contact-copy-btn:hover {
  color: var(--accent);
}

.d-contact-copy-btn .material-symbols-outlined {
  font-size: 1rem;
}

.d-contact-btns {
  display: flex;
  gap: 0.75rem;
}

.d-contact-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  border: none;
  background: var(--bg-card);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  font-family: inherit;
}

.d-contact-action:hover {
  background: var(--accent);
  color: #fff;
}

.d-contact-action .material-symbols-outlined {
  font-size: 1.1rem;
}

/* ── Localização ── */
.d-localizacao-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.d-address-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: right;
  line-height: 1.55;
}

.d-maps-grid {
  border-radius: 1.5rem;
  overflow: hidden;
}

/* ── Desktop: Avalie no Google ── */
.d-avaliacao-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.d-avaliacao-head .d-section-title {
  margin-bottom: 0;
}

.d-google-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
  max-width: 46rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

[data-theme="dark"] .d-google-card {
  background: var(--bg-card);
}

.d-google-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.d-google-card-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.d-google-g {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.d-google-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.d-google-card-name {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.d-google-stars {
  display: flex;
  gap: 0.2rem;
  flex-shrink: 0;
}

.d-google-stars .material-symbols-outlined {
  font-size: 1.85rem;
  color: #fbbc04;
  font-variation-settings: 'FILL' 1, 'wght' 400;
}

.d-google-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: left;
}

.d-google-cta {
  align-self: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
}

/* ── Parceiros (desktop) ── */
.d-partners-head {
  margin-bottom: 3rem;
}

.d-partners-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.25rem;
  max-width: 42rem;
}

.d-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .d-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.d-partner-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

[data-theme="dark"] .d-partner-card {
  background: var(--bg-card);
}

.d-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.d-partner-logo {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-partner-logo svg {
  width: 100%;
  height: 100%;
}

.d-partner-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.d-partner-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Desktop footer ── */
.d-footer {
  background: #1E293B;
  padding: 3rem 0;
}

.d-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.d-footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.d-footer-brand img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  object-fit: contain;
}

.d-footer-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.d-footer-oab {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}

.d-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.d-footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.18s;
}

.d-footer-nav a:hover {
  color: #22C55E;
}

.d-footer-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.d-footer-rights {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Scroll reveal animations ── */
.d-reveal-up,
.d-reveal-left,
.d-reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.d-reveal-up {
  transform: translateY(2rem);
}

.d-reveal-left {
  transform: translateX(-2rem);
}

.d-reveal-right {
  transform: translateX(2rem);
}

.d-reveal-up.d-visible,
.d-reveal-left.d-visible,
.d-reveal-right.d-visible {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {

  .d-reveal-up,
  .d-reveal-left,
  .d-reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Mobile scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

@media (min-width: 768px) {
  .scroll-progress {
    display: none;
  }
}

/* ── Desktop back-to-top button ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  background: var(--bg-card);
  color: var(--accent);
  cursor: pointer;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--accent);
  color: #fff;
}

.back-to-top .material-symbols-outlined {
  font-size: 1.4rem;
}

.back-to-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.back-to-top__ring circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 119.38;
  stroke-dashoffset: 119.38;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.15s linear, stroke 0.3s ease;
}

.back-to-top:hover .back-to-top__ring circle {
  stroke: #fff;
}

@media (max-width: 767px) {
  .back-to-top {
    width: 2rem;
    height: 2rem;
    bottom: 1rem;
    right: 1rem;
  }

  .back-to-top .material-symbols-outlined {
    font-size: 1.1rem;
  }
}

/* ── Popup ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.popup-visible {
  opacity: 1;
}

.popup-box {
  position: relative;
  max-width: min(480px, 92vw);
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.92) translateY(1rem);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.popup-visible .popup-box {
  transform: scale(1) translateY(0);
}

.popup-box img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.popup-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--bg);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

#preloader img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.preloader-dots {
  display: flex;
  gap: 0.5rem;
}

.preloader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: preloader-fade 1.2s ease-in-out infinite;
}

.preloader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.preloader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes preloader-fade {

  0%,
  80%,
  100% {
    opacity: 0.25;
  }

  40% {
    opacity: 1;
  }
}