:root {
  --bg: #05090f;
  --bg2: #080e18;
  --surface: rgba(10, 16, 26, 0.85);
  --surface2: rgba(13, 20, 32, 0.95);
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.13);
  --text: #e8f1ff;
  --muted: #8ea4bf;
  --dim: #41566b;
  --accent: #ff6b1a;
  --accent2: #ffaa44;
  --blue: #2f9fff;
  --green: #28d96d;
  --green2: #1ab558;
  --header-h: 80px;
  --r: 1180px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 12% 5%, rgba(255, 107, 26, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 90% 8%, rgba(47, 159, 255, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 95%, rgba(47, 159, 255, 0.06) 0%, transparent 60%),
    linear-gradient(160deg, #04090e 0%, #070d18 45%, #04080f 100%);
}

.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 0%, transparent 100%);
}

.scene-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 107, 26, 0.18) 30%,
    rgba(47, 159, 255, 0.1) 70%,
    transparent 100%
  );
}

.wrap {
  width: min(100% - 40px, var(--r));
  margin: 0 auto;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(255, 107, 26, 0.28);
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.07);
  width: fit-content;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  flex-shrink: 0;
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(4, 8, 14, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(40, 217, 109, 0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(40, 217, 109, 0.3);
}

.btn-wa svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, 0.03);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile menu */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(2, 5, 10, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.mob-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mob-menu {
  position: fixed;
  top: var(--header-h);
  right: 0;
  z-index: 89;
  width: min(88vw, 320px);
  height: calc(100vh - var(--header-h));
  background: rgba(5, 10, 18, 0.97);
  border-left: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: 0.25s ease;
}

.mob-menu.open {
  transform: translateX(0);
}

.mob-menu a {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mob-menu .btn-wa {
  margin-top: 12px;
  justify-content: center;
}

/* hero */
.hero {
  padding: 64px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: stretch;
}

.hero-left {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-eyebrow span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.hero h1,
.sec-head h2,
.about-copy h2,
.srv-card h3,
.att-card h3,
.diff-card h3,
.contact-box h2,
.cta-band h2,
.plate-card h3 {
  font-family: "Sora", sans-serif;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 2,9rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  max-width: 52ch;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 28px rgba(40, 217, 109, 0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(40, 217, 109, 0.3);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-checks {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-checks li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b1a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-img-box {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
  position: relative;
}

/* IMAGEM */
.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* efeito de luz continua funcionando */
.hero-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 26, 0.08), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(47, 159, 255, 0.07), transparent 45%);
  pointer-events: none;
}
.img-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  opacity: 0.5;
}

.img-placeholder span {
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px;
}

.stat-box strong {
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.stat-box span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* sections */
.section {
  padding: 88px 0;
}

.section-alt {
  background: rgba(6, 10, 18, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sec-head {
  margin-bottom: 44px;
}

.sec-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.sec-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  max-width: 60ch;
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: stretch;
}

.about-copy {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px;
}

.about-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-img {
  flex: 1;
  min-height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* AQUI ESTÁ O SEGREDO */
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantém proporção e preenche bonito */
  display: block;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pillar {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 14px;
}

.pillar-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.22);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.pillar-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.pillar strong {
  font-size: 0.84rem;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

.pillar span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.srv-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.srv-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.srv-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.15), rgba(47, 159, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.srv-ico svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.srv-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.srv-card p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
}

/*slider*/
.slider-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .slider-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .slider-track {
    grid-template-columns: 1fr;
  }
}

.plate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 18px 52px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(10,18,35,.95), rgba(7,12,24,.95));
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  cursor: pointer;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  overflow: hidden;
}

.plate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,106,0,.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(35,120,255,.10), transparent 26%);
  pointer-events: none;
}

.plate-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,106,0,.4);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
}

.plate-card:active {
  transform: translateY(-4px) scale(.995);
}

.plate-thumb {
  position: relative;
  width: 100%;
  height: 210px;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(53, 102, 255, .18), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plate-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .35));
}

.plate-card:hover .plate-thumb img {
  transform: scale(1.06);
}

.plate-card h3,
.plate-card p {
  position: relative;
  z-index: 1;
}

.plate-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
  color: #f5f8ff;
}

.plate-card p {
  margin: 0;
  color: rgba(222,230,245,.72);
  line-height: 1.55;
  font-size: .96rem;
}

.plate-card::after {
  content: "Clique para ver detalhes";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .02em;
}

/* atendimento */
.attend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.att-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.att-card:hover {
  border-color: rgba(255, 107, 26, 0.35);
  transform: translateY(-3px);
}

.att-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.att-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.2);
}

.att-ico svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.att-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.att-card p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
}

/* diferenciais */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.diff-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.diff-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.diff-num {
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 700;
}

.diff-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  background: rgba(47, 159, 255, 0.1);
  border: 1px solid rgba(47, 159, 255, 0.18);
}

.diff-ico svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.diff-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.diff-card p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
}

/* cta */
.cta-band {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 50%, rgba(255, 107, 26, 0.1), transparent 40%),
    radial-gradient(circle at 95% 50%, rgba(47, 159, 255, 0.07), transparent 40%);
  pointer-events: none;
}

.cta-band-text,
.cta-band-action {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
}

.cta-band p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 400;
  max-width: 48ch;
}

/* contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.contact-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
}

.contact-box h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 28px;
}

.contact-items {
  display: grid;
  gap: 12px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s;
}

.contact-item:hover {
  border-color: var(--border2);
}

.contact-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-item a {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-item p {
  color: var(--text);
  font-weight: 500;
}

.map-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* footer */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-info span {
  font-size: 0.84rem;
  color: #686868;
}

.footer-copy {
  font-size: 0.8rem;
  color: #4a4a4a;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-img-box {
    min-height: 200px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .attend-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  :root {
    --header-h: 68px;
  }

  .nav,
  .hdr-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .brand-logo {
    height: 44px;
  }

  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-left {
    padding: 32px 24px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 28px, var(--r));
  }

  .services-grid,
  .attend-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .map-box iframe {
    min-height: 320px;
  }

  .mob-menu {
    width: min(92vw, 320px);
  }
}

/* barra superior fixa também no mobile */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* whatsapp flutuante */
.wa-float-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-chat-hint {
  max-width: 240px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 22, 0.96);
  color: #e8f1ff;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
  position: relative;
}

.wa-chat-hint::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: rgba(8, 14, 22, 0.96);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

.wa-chat-hint.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #28d96d, #1ab558);
  box-shadow: 0 16px 36px rgba(40, 217, 109, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waPulse 2.2s infinite;
}

.wa-float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 40px rgba(40, 217, 109, 0.42);
}

.wa-float-btn svg {
  width: 28px;
  height: 28px;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 217, 109, 0.34), 0 16px 36px rgba(40, 217, 109, 0.34);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(40, 217, 109, 0), 0 16px 36px rgba(40, 217, 109, 0.34);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 217, 109, 0), 0 16px 36px rgba(40, 217, 109, 0.34);
  }
}

@media (max-width: 800px) {
  .wa-float-wrap {
    right: 14px;
    bottom: 84px; /* sobe para não brigar com a barra fixa inferior */
  }

  .wa-chat-hint {
    max-width: 210px;
    font-size: 0.86rem;
    padding: 11px 13px;
  }

  .wa-float-btn {
    width: 58px;
    height: 58px;
  }

  .wa-float-btn svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 800px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }

  body {
    padding-top: var(--header-h);
  }
}

.slider-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 980px) {
  .slider-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .slider-track {
    grid-template-columns: 1fr;
  }
}

.plate-card {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(10,18,35,.95), rgba(7,12,24,.95));
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  cursor: pointer;
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
  overflow: hidden;
}

.plate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,106,0,.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(35,120,255,.10), transparent 26%);
  opacity: .9;
  pointer-events: none;
}

.plate-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,106,0,.4);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
}

.plate-card:active {
  transform: translateY(-4px) scale(.995);
}

.plate-thumb {
  position: relative;
  width: 100%;
  min-height: 210px;
  padding: 18px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(53, 102, 255, .18), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plate-thumb img {
  width: 100%;
  height: 100%;
  max-height: 190px;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .35));
}

.plate-card:hover .plate-thumb img {
  transform: scale(1.06);
}

.plate-card h3,
.plate-card p {
  position: relative;
  z-index: 1;
}

.plate-card h3 {
  margin: 16px 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #f5f8ff;
}

.plate-card p {
  margin: 0;
  color: rgba(222,230,245,.72);
  line-height: 1.55;
  font-size: .96rem;
}

.plate-card::after {
  content: "Clique para ver detalhes";
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .02em;
}

/* MODAL */
.plate-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.plate-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.plate-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 16, .72);
  backdrop-filter: blur(6px);
}

.plate-modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 28px));
  margin: 4vh auto 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, #08111f, #060d18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  transform: translateY(18px) scale(.98);
  transition: transform .3s ease;
}

.plate-modal.is-open .plate-modal-dialog {
  transform: translateY(0) scale(1);
}

@media (max-width: 860px) {
  .plate-modal-dialog {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
}

.plate-modal-media {
  min-height: 360px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(49, 101, 255, .22), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-right: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 860px) {
  .plate-modal-media {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    min-height: 280px;
  }
}

.plate-modal-media img {
  width: 100%;
  max-width: 420px;
  max-height: 340px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 36px rgba(0,0,0,.45));
}

.plate-modal-content {
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plate-modal-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,106,0,.35);
  background: rgba(255,106,0,.08);
  color: #ff8a35;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.plate-modal-content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  color: #f6f8ff;
}

.plate-modal-subtitle {
  margin: 0 0 16px;
  color: #a9b8d6;
  font-size: 1rem;
  line-height: 1.6;
}

.plate-modal-text {
  margin: 0 0 24px;
  color: rgba(224,232,245,.76);
  line-height: 1.7;
}

.plate-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plate-modal-btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.plate-modal-btn:hover {
  transform: translateY(-2px);
}

.plate-modal-btn.primary {
 background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
}

.plate-modal-btn.ghost {
  background: rgba(255,255,255,.06);
  color: #dfe6f7;
  border: 1px solid rgba(255,255,255,.08);
}

.plate-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.plate-modal-close:hover {
  background: rgba(255,255,255,.14);
  transform: rotate(90deg);
}

body.modal-open {
  overflow: hidden;
}