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

:root {
  color-scheme: dark;
  --bg: #151515;
  --surface: #202020;
  --surface-high: #292929;
  --surface-highest: #333333;
  --text: #f2f2f2;
  --muted: #c7c7c7;
  --muted-soft: #9c9c9c;
  --primary: #f0c000;
  --primary-ink: #211a00;
  --secondary: #303030;
  --secondary-ink: #f2f2f2;
  --outline: #454545;
}

html { min-width: 320px; overflow-x: hidden; scroll-behavior: smooth; background: var(--bg); color: var(--text); }
body { min-height: 100vh; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: Inter, Roboto, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header { padding: 16px; }
.nav-shell { display: flex; justify-content: center; max-width: 960px; margin: 0 auto; }
.site-header .brand { display: none; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.nav-links a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 18px; border-radius: 999px;
  background: var(--surface-high); color: var(--text);
  font-size: .95rem; font-weight: 600; text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, color .16s ease;
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] { background: var(--primary); color: var(--primary-ink); transform: translateY(-1px); outline: none; }

.container { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 16px; }
.hero { padding: 32px 16px 40px; text-align: center; }
.hero-copy { max-width: 760px; margin: 0 auto; }
.hero-copy::before { content: ""; display: block; width: 84px; height: 84px; margin: 0 auto 18px; background: url("../logo.webp") center / contain no-repeat; transition: transform .18s ease; }
.hero-copy::before:hover { transform: scale(1.03); }

h1, h2, h3, p, figure { margin: 0; }
h1 { margin-bottom: 12px; font-size: clamp(2rem, 4.8vw, 3rem); font-weight: 650; line-height: 1.12; }
.hero-lead { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border: 0; border-radius: 999px;
  background: var(--secondary); color: var(--secondary-ink);
  font-size: .96rem; font-weight: 650; text-decoration: none; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.button.primary, .button[href*="wa.me"], .button[href*="instagram.com"] { background: var(--primary); color: var(--primary-ink); }
.button:hover, .button:focus-visible { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 4px 14px rgba(0,0,0,.22); outline: none; }
.button .fa-brands { font-size: 1.12rem; }
.material-symbols-rounded { display: inline-block; font-family: "Material Symbols Rounded"; font-size: 22px; font-style: normal; font-variation-settings: "FILL" 1, "wght" 420, "GRAD" 0, "opsz" 24; line-height: 1; }

.hero-media { max-width: 680px; margin: 28px auto 0; }
.media-main, .about-panel, .contact-card, .service-card, .gallery-item { border-radius: 16px; background: var(--surface); }
.media-main, .service-card, .gallery-item { overflow: hidden; transition: transform .17s ease, box-shadow .17s ease, background-color .17s ease; }
.media-main:hover, .service-card:hover, .gallery-item:hover { transform: translateY(-2px); background: var(--surface-high); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.media-main img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-card img, .gallery-item img, .media-main img { transition: transform .22s ease, filter .22s ease; }
.service-card:hover img, .gallery-item:hover img, .media-main:hover img { transform: scale(1.018); filter: brightness(1.04); }

.section { padding: 30px 0 42px; }
.section.compact { padding-top: 24px; }
.section-heading { max-width: 760px; margin: 0 auto 24px; text-align: center; }
h2 { margin-bottom: 10px; font-size: clamp(1.55rem, 3vw, 2.05rem); font-weight: 600; line-height: 1.2; }
.section-heading p, .about-text, .contact-card p { color: var(--muted); font-size: 1rem; }

.about-grid { display: block; }
.about-panel { max-width: 780px; margin: 0 auto; padding: 24px 20px; text-align: left; }
.check-list { display: grid; gap: 12px; margin-top: 18px; list-style: none; }
.check-list li { display: flex; gap: 10px; color: var(--muted); font-size: .98rem; }
.check-list .material-symbols-rounded { flex: 0 0 auto; color: var(--primary); font-size: 21px; }

.services-grid, .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.service-card img, .gallery-item img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service-card-body { padding: 18px 16px 20px; text-align: center; }
.service-card h3 { margin-bottom: 8px; font-size: 1.03rem; font-weight: 600; transition: color .16s ease; }
.service-card:hover h3 { color: var(--primary); }
.service-card p { color: var(--muted); font-size: .95rem; }

.contact-card { max-width: 780px; margin: 0 auto; padding: 28px 20px; text-align: center; }
.contact-card h2 { margin-bottom: 8px; }
.contact-actions { margin-top: 20px; }
.footer { padding: 28px 16px; color: var(--muted-soft); font-size: .9rem; text-align: center; }
.footer .container { display: grid; gap: 4px; }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  display: inline-flex; width: 58px; height: 58px; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--primary); color: var(--primary-ink);
  font-size: 1.95rem; text-decoration: none; box-shadow: 0 10px 28px rgba(0,0,0,.32);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.whatsapp-float:hover, .whatsapp-float:focus-visible { transform: translateY(-2px) scale(1.03); filter: brightness(1.04); box-shadow: 0 14px 34px rgba(0,0,0,.38); outline: none; }

@media (max-width: 620px) {
  .site-header { padding: 14px 10px; }
  .hero { padding-top: 20px; }
  .hero-copy::before { width: 76px; height: 76px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; font-size: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* Garantia: botoes sem tom roxo. */
.button.tonal {
  background: #303030;
  color: #f2f2f2;
}

.button.tonal:hover,
.button.tonal:focus-visible {
  background: #3a3a3a;
  color: #ffffff;
}

.button[href*="instagram.com"] {
  background: var(--primary);
  color: var(--primary-ink);
}

/* Texto nao selecionavel, mantendo interacao de links/botoes. */
body {
  -webkit-user-select: none;
  user-select: none;
}
