:root {
      --bg: #f7f8f6;
      --card: #ffffff;
      --text: #1f2933;
      --muted: #5f6b76;
      --line: #dbe2e8;
      --dark: #0f1720;
      --accent: #1f7a5b;
      --accent2: #245c7a;
      --soft: #eef5f1;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    .topbar {
      background: var(--dark);
      color: #fff;
      font-size: 14px;
      padding: 8px 0;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .nav {
      background: #fff;
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: 24px;
    }

    .logo {
      font-weight: 800;
      letter-spacing: .2px;
      font-size: 24px;
    }

    .logo span { color: var(--accent); }

    .menu {
      display: flex;
      gap: 22px;
      align-items: center;
      font-size: 15px;
    }

    .menu a { color: var(--muted); }
    .menu a:hover { color: var(--accent); }

    .btn {
      display: inline-block;
      background: var(--accent);
      color: #fff !important;
      padding: 12px 18px;
      border-radius: 10px;
      font-weight: 700;
      border: 1px solid var(--accent);
      cursor: pointer;
    }

    .btn.secondary {
      background: transparent;
      color: var(--accent) !important;
    }

    .hero {
      padding: 76px 0 56px;
      background:
        radial-gradient(circle at top left, #dceee5 0, transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #eef5f1 100%);
      border-bottom: 1px solid var(--line);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 42px;
      align-items: center;
    }

    .kicker {
      display: inline-block;
      background: #e7f4ee;
      color: var(--accent);
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.05;
      margin: 0 0 18px;
      letter-spacing: -1.5px;
    }

    h2 {
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.15;
      margin: 0 0 14px;
    }

    h3 {
      margin: 0 0 10px;
      font-size: 22px;
    }

    .lead {
      color: var(--muted);
      font-size: 19px;
      max-width: 720px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-card, .card, .price, .model-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 24px;
    }

    .hero-card {
      border-radius: 22px;
      box-shadow: 0 20px 50px rgba(15,23,32,.08);
    }

    .hero-card ul {
      padding-left: 20px;
      margin: 12px 0 0;
    }

    .section {
      padding: 68px 0;
    }

    .section.alt {
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 32px;
    }

    .section-head p, .card p, .model-card p {
      color: var(--muted);
    }

    .cards, .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .models {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .model-card {
      padding: 18px;
      transition: .2s;
    }

    .model-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(15,23,32,.08);
    }

    .model-card h3 { font-size: 18px; }
    .model-card p { font-size: 14px; }

    .badge {
      display: inline-block;
      background: var(--soft);
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
      border-radius: 999px;
      padding: 5px 10px;
      margin-bottom: 12px;
    }

    .price strong {
      display: block;
      font-size: 28px;
      margin: 10px 0;
    }

    .price ul {
      padding-left: 18px;
      color: var(--muted);
    }

    .model-section {
      padding: 42px 0;
      border-top: 1px solid var(--line);
    }

    .model-box {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 24px;
      align-items: center;
    }

    .mock {
      min-height: 240px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(31,122,91,.95), rgba(36,92,122,.92));
      color: #fff;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .mock p { color: #eef6f1; }

    .cta {
      background: var(--dark);
      color: #fff;
      padding: 56px 0;
    }

    .cta p { color: #d8dee5; }

    .footer {
      padding: 28px 0;
      background: #0b1118;
      color: #cbd5df;
      font-size: 14px;
    }

    .footer .container {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .form {
      display: grid;
      gap: 12px;
    }

    input, textarea, select {
      width: 100%;
      border: 1px solid var(--line);
      padding: 13px;
      border-radius: 10px;
      font: inherit;
    }

    textarea { min-height: 110px; }

    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      background: #25d366;
      color: #fff;
      padding: 14px 16px;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 8px 24px rgba(0,0,0,.18);
      z-index: 20;
    }

    @media (max-width: 900px) {
      .hero-grid, .cards, .price-grid, .model-box {
        grid-template-columns: 1fr;
      }

      .models {
        grid-template-columns: repeat(2, 1fr);
      }

      .menu {
        display: none;
      }
    }

    @media (max-width: 520px) {
      .models {
        grid-template-columns: 1fr;
      }

      .footer .container,
      .topbar .container {
        display: block;
      }
    }

/* === Fase 07 — Hero profissional BrumaTech === */

.hero-upgraded {
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
}

.hero-upgraded::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 92, 122, .18), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(31, 122, 91, .14), transparent 30%);
  pointer-events: none;
}

.hero-upgraded .container {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-copy .lead {
  max-width: 760px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.hero-trust div {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.hero-trust strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.hero-trust span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.browser-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15,23,32,.14);
  transform: rotate(1deg);
}

.browser-top {
  height: 44px;
  background: #101923;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.browser-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}

.browser-body {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(31,122,91,.08), rgba(36,92,122,.06)),
    #fff;
}

.site-preview {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 24px;
  min-height: 300px;
}

.preview-label {
  display: inline-block;
  background: var(--soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.site-preview h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.site-preview p {
  color: var(--muted);
  margin-bottom: 22px;
}

.preview-bar {
  height: 12px;
  border-radius: 999px;
  background: #dbe2e8;
  margin: 10px 0;
  width: 72%;
}

.preview-bar.large {
  height: 18px;
  width: 92%;
  background: linear-gradient(90deg, rgba(31,122,91,.32), rgba(36,92,122,.20));
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}

.preview-grid div {
  background: #f7f8f6;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.floating-note {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(15,23,32,.12);
}

.floating-note strong {
  display: block;
  color: var(--accent);
  font-size: 16px;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.note-one {
  right: -10px;
  top: 74px;
}

.note-two {
  left: -10px;
  bottom: 48px;
}

@media (max-width: 900px) {
  .hero-upgraded {
    padding: 64px 0 48px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .browser-card {
    transform: none;
  }

  .floating-note {
    position: static;
    margin-top: 12px;
  }
}

/* === Fase 08 — Visual Hi-Tech Comercial BrumaTech === */

:root {
  --tech-cyan: #23c7d9;
  --tech-blue: #2563eb;
  --tech-purple: #6d5dfc;
  --tech-green: #16a36f;
  --tech-dark: #07111d;
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(35,199,217,.08), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(109,93,252,.08), transparent 24%),
    #f7f8f6;
}

.logo {
  letter-spacing: -0.4px;
}

.logo span {
  background: linear-gradient(90deg, var(--accent), var(--tech-cyan), var(--tech-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
}

.btn {
  background: linear-gradient(135deg, var(--accent), var(--tech-blue));
  border: none;
  box-shadow: 0 12px 28px rgba(31,122,91,.20);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(37,99,235,.22);
}

.btn.secondary {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(31,122,91,.25);
  color: var(--accent) !important;
  box-shadow: none;
}

.hero-upgraded {
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(238,245,241,.86)),
    radial-gradient(circle at 78% 22%, rgba(35,199,217,.24), transparent 32%),
    radial-gradient(circle at 18% 74%, rgba(31,122,91,.20), transparent 30%);
}

.hero-upgraded::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,122,91,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 82%);
  pointer-events: none;
}

.kicker {
  background: linear-gradient(90deg, rgba(31,122,91,.12), rgba(35,199,217,.16));
  color: #0c6f66;
  border: 1px solid rgba(35,199,217,.20);
}

.hero-copy h1 {
  background: linear-gradient(120deg, #0f1720 0%, #173f55 45%, #0d7d73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-card,
.card,
.price,
.model-card,
.hero-trust div {
  box-shadow: 0 16px 42px rgba(15,23,32,.055);
}

.hero-trust div {
  position: relative;
  overflow: hidden;
}

.hero-trust div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--tech-cyan), var(--tech-blue));
}

.hero-visual {
  perspective: 900px;
}

.browser-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,250,252,.92));
  border: 1px solid rgba(35,199,217,.22);
  box-shadow:
    0 28px 80px rgba(15,23,32,.16),
    0 0 0 1px rgba(255,255,255,.70) inset;
}

.browser-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(31,122,91,.28), rgba(35,199,217,.24), rgba(109,93,252,.20));
  filter: blur(18px);
  opacity: .55;
  z-index: -1;
}

.browser-top {
  background:
    linear-gradient(90deg, #07111d, #0e2234 45%, #082e35);
}

.browser-top::after {
  content: "brumatech.digital/client-site";
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-left: 10px;
  letter-spacing: .2px;
}

.browser-top span:nth-child(1) { background: #ff6b6b; }
.browser-top span:nth-child(2) { background: #ffd166; }
.browser-top span:nth-child(3) { background: #06d6a0; }

.browser-body {
  background:
    radial-gradient(circle at top right, rgba(35,199,217,.16), transparent 35%),
    linear-gradient(135deg, rgba(31,122,91,.08), rgba(36,92,122,.06)),
    #fff;
}

.site-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35,199,217,.20);
}

.site-preview::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(35,199,217,.22), transparent 68%);
}

.site-preview h3 {
  background: linear-gradient(90deg, #0f1720, var(--accent2), var(--tech-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.preview-label {
  background: linear-gradient(90deg, rgba(31,122,91,.12), rgba(35,199,217,.16));
  border: 1px solid rgba(35,199,217,.22);
}

.preview-bar.large {
  background: linear-gradient(90deg, var(--accent), var(--tech-cyan), var(--tech-blue));
  opacity: .72;
}

.preview-grid div {
  background: linear-gradient(145deg, #ffffff, #f1f7f8);
  border: 1px solid rgba(35,199,217,.20);
}

.floating-note {
  border: 1px solid rgba(35,199,217,.24);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
}

.floating-note strong {
  background: linear-gradient(90deg, var(--accent), var(--tech-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card:hover,
.price:hover,
.model-card:hover {
  border-color: rgba(35,199,217,.35);
  box-shadow: 0 18px 48px rgba(35,199,217,.10);
}

.badge {
  background: linear-gradient(90deg, rgba(31,122,91,.10), rgba(35,199,217,.13));
  border: 1px solid rgba(35,199,217,.16);
}

.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #16a36f);
  box-shadow:
    0 12px 34px rgba(37,211,102,.34),
    0 0 0 6px rgba(37,211,102,.10);
}

.cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(35,199,217,.16), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(31,122,91,.20), transparent 28%),
    linear-gradient(135deg, #07111d, #0f1720 55%, #0b2630);
}

.footer {
  background: #06101b;
}

@media (max-width: 900px) {
  .browser-top::after {
    content: "";
  }
}

/* === Fase 09 — Carrossel de Modelos Hi-Tech === */

.modelos-carousel-section {
  position: relative;
  overflow: hidden;
}

.modelos-carousel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(35,199,217,.12), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(109,93,252,.10), transparent 30%);
  pointer-events: none;
}

.modelos-carousel-section .container {
  position: relative;
  z-index: 1;
}

.carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 14px;
  align-items: center;
}

.carousel-window {
  overflow: hidden;
  border-radius: 28px;
}

.carousel-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.carousel-card {
  min-width: 100%;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(35,199,217,.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15,23,32,.11);
}

.carousel-visual {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  overflow: hidden;
}

.carousel-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}

.carousel-visual::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -40px;
  top: -40px;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 64%);
}

.carousel-visual span {
  position: relative;
  z-index: 1;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 20px 45px rgba(0,0,0,.28);
}

.carousel-visual.restaurant {
  background: linear-gradient(135deg, #0f766e, #16a36f 42%, #2563eb);
}

.carousel-visual.oficina {
  background: linear-gradient(135deg, #111827, #245c7a 48%, #23c7d9);
}

.carousel-visual.loja {
  background: linear-gradient(135deg, #6d5dfc, #2563eb 45%, #23c7d9);
}

.carousel-visual.clinica {
  background: linear-gradient(135deg, #0d9488, #23c7d9 45%, #e0f7f8);
}

.carousel-visual.servicos {
  background: linear-gradient(135deg, #1f2937, #1f7a5b 48%, #06d6a0);
}

.carousel-visual.institucional {
  background: linear-gradient(135deg, #07111d, #245c7a 52%, #6d5dfc);
}

.carousel-content {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-content h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.carousel-content p {
  color: var(--muted);
  font-size: 18px;
}

.carousel-content ul {
  margin: 8px 0 26px;
  padding-left: 18px;
  color: var(--muted);
}

.carousel-content li {
  margin: 6px 0;
}

.carousel-btn {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(35,199,217,.25);
  background: rgba(255,255,255,.82);
  color: var(--accent2);
  border-radius: 999px;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(15,23,32,.10);
  transition: .2s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--tech-blue));
  color: #fff;
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: #c9d4df;
  cursor: pointer;
  transition: .2s ease;
}

.carousel-dot.active {
  width: 32px;
  background: linear-gradient(90deg, var(--accent), var(--tech-cyan), var(--tech-blue));
}

@media (max-width: 900px) {
  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-card {
    grid-template-columns: 1fr;
  }

  .carousel-visual {
    min-height: 260px;
  }
}

/* === Fase 11 — Como funciona e modelo gerenciado === */

.how-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(35,199,217,.10), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(109,93,252,.08), transparent 30%),
    #f7f8f6;
}

.how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,199,217,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 86%);
}

.how-section .container {
  position: relative;
  z-index: 1;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.how-step {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(35,199,217,.18);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(15,23,32,.06);
  position: relative;
  overflow: hidden;
}

.how-step::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(35,199,217,.16), transparent 70%);
}

.step-number {
  font-size: 13px;
  font-weight: 900;
  color: var(--tech-blue);
  background: linear-gradient(90deg, rgba(31,122,91,.10), rgba(35,199,217,.15));
  border: 1px solid rgba(35,199,217,.20);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.how-step h3 {
  font-size: 20px;
}

.how-step p {
  color: var(--muted);
  font-size: 15px;
}

.managed-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(238,245,241,.80));
  border: 1px solid rgba(35,199,217,.22);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 70px rgba(15,23,32,.10);
}

.managed-copy h2 {
  max-width: 720px;
}

.managed-copy p {
  color: var(--muted);
  font-size: 18px;
}

.managed-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.managed-list div {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(35,199,217,.18);
  border-radius: 14px;
  padding: 14px;
}

.managed-list strong {
  display: block;
  color: var(--text);
}

.managed-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

.managed-card {
  background: #fff;
  border: 1px solid rgba(35,199,217,.24);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15,23,32,.13);
  transform: rotate(-1deg);
}

.managed-card-top {
  height: 42px;
  background: linear-gradient(90deg, #07111d, #0e2234 45%, #082e35);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.managed-card-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.managed-card-top span:nth-child(1) { background: #ff6b6b; }
.managed-card-top span:nth-child(2) { background: #ffd166; }
.managed-card-top span:nth-child(3) { background: #06d6a0; }

.managed-card-body {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(35,199,217,.16), transparent 36%),
    #fff;
}

.managed-card-body h3 {
  font-size: 28px;
}

.managed-card-body p {
  color: var(--muted);
  font-size: 17px;
}

.managed-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 22px;
}

.managed-flow div {
  text-align: center;
  background: #f7f8f6;
  border: 1px solid rgba(35,199,217,.20);
  border-radius: 12px;
  padding: 12px 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

  .managed-box {
    grid-template-columns: 1fr;
  }

  .managed-card {
    transform: none;
  }
}

@media (max-width: 620px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .managed-flow {
    grid-template-columns: 1fr;
  }
}

/* === Fase 12 — Pacotes e mensalidades === */

.packages-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(35,199,217,.10), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(31,122,91,.10), transparent 28%),
    #ffffff;
}

.packages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,199,217,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.48), transparent 82%);
}

.packages-section .container {
  position: relative;
  z-index: 1;
}

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

.package-card {
  position: relative;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(35,199,217,.20);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 22px 62px rgba(15,23,32,.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.package-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(35,199,217,.15), transparent 68%);
}

.featured-package {
  border-color: rgba(35,199,217,.42);
  transform: translateY(-10px);
  box-shadow:
    0 32px 90px rgba(15,23,32,.14),
    0 0 0 1px rgba(35,199,217,.14) inset;
}

.package-ribbon {
  position: absolute;
  top: 18px;
  right: -42px;
  transform: rotate(35deg);
  background: linear-gradient(90deg, var(--accent), var(--tech-cyan), var(--tech-blue));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 48px;
  z-index: 2;
}

.package-top {
  position: relative;
  z-index: 1;
}

.package-top h3 {
  font-size: 30px;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.package-top p {
  color: var(--muted);
  min-height: 76px;
}

.package-price {
  position: relative;
  z-index: 1;
  margin: 18px 0 20px;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(31,122,91,.08), rgba(35,199,217,.10)),
    #f7f8f6;
  border: 1px solid rgba(35,199,217,.18);
}

.package-price span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.package-price strong {
  display: block;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 6px 0;
  background: linear-gradient(90deg, var(--accent), var(--tech-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.package-price small {
  display: block;
  color: var(--accent2);
  font-weight: 800;
}

.package-card ul {
  position: relative;
  z-index: 1;
  padding-left: 18px;
  color: var(--muted);
  margin: 0 0 24px;
}

.package-card li {
  margin: 8px 0;
}

.package-btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
  text-align: center;
}

.package-note {
  margin-top: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(35,199,217,.18);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  box-shadow: 0 14px 38px rgba(15,23,32,.06);
}

.package-note strong {
  color: var(--text);
}

@media (max-width: 1000px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .featured-package {
    transform: none;
  }

  .package-top p {
    min-height: auto;
  }
}

/* === Fase 13 — Formulário comercial WhatsApp === */

.quote-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(35,199,217,.10), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(109,93,252,.08), transparent 30%),
    #ffffff;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,199,217,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.40), transparent 82%);
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.quote-copy h2 {
  max-width: 740px;
}

.quote-benefits {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.quote-benefits div {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(35,199,217,.18);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 38px rgba(15,23,32,.06);
}

.quote-benefits strong {
  display: block;
  color: var(--text);
}

.quote-benefits span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

.quote-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(35,199,217,.24);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow:
    0 28px 80px rgba(15,23,32,.13),
    0 0 0 1px rgba(255,255,255,.65) inset;
}

.quote-form {
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  background: rgba(247,248,246,.92);
  border: 1px solid rgba(35,199,217,.18);
  transition: .2s ease;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: rgba(35,199,217,.55);
  box-shadow: 0 0 0 4px rgba(35,199,217,.10);
  background: #fff;
}

.quote-submit {
  width: 100%;
  text-align: center;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 900px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* === Fase 14 — Identidade e credibilidade === */

.credibility-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(35,199,217,.11), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(109,93,252,.09), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7f8f6);
  border-bottom: 1px solid var(--line);
}

.credibility-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,199,217,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 85%);
}

.credibility-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.credibility-copy h2 {
  max-width: 720px;
  background: linear-gradient(120deg, #0f1720 0%, #173f55 45%, #0d7d73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(35,199,217,.20);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 18px 46px rgba(15,23,32,.08);
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--accent), var(--tech-cyan), var(--tech-blue));
  box-shadow: 0 12px 30px rgba(37,99,235,.22);
}

.brand-signature strong {
  display: block;
  font-size: 18px;
}

.brand-signature span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.credibility-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.credibility-cards article {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(35,199,217,.20);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(15,23,32,.07);
  position: relative;
  overflow: hidden;
}

.credibility-cards article::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(35,199,217,.16), transparent 70%);
}

.credibility-cards article span {
  display: inline-block;
  color: var(--tech-blue);
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(90deg, rgba(31,122,91,.10), rgba(35,199,217,.15));
  border: 1px solid rgba(35,199,217,.20);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 14px;
}

.credibility-cards h3 {
  font-size: 20px;
}

.credibility-cards p {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 950px) {
  .credibility-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .credibility-cards {
    grid-template-columns: 1fr;
  }

  .brand-signature {
    align-items: flex-start;
  }
}

/* === Fase 15 — FAQ comercial e regras do serviço === */

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 22%, rgba(35,199,217,.10), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(109,93,252,.08), transparent 30%),
    #f7f8f6;
  border-top: 1px solid var(--line);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,199,217,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.46), transparent 84%);
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(35,199,217,.18);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 14px 40px rgba(15,23,32,.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--tech-blue));
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-contract-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(238,245,241,.84));
  border: 1px solid rgba(35,199,217,.24);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(15,23,32,.10);
  position: sticky;
  top: 96px;
}

.faq-contract-card h3 {
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1.08;
}

.faq-contract-card p {
  color: var(--muted);
  font-size: 17px;
}

.contract-points {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.contract-points div {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(35,199,217,.18);
  border-radius: 14px;
  padding: 14px;
}

.contract-points strong {
  display: block;
  color: var(--text);
}

.contract-points span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

@media (max-width: 950px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-contract-card {
    position: static;
  }
}

/* === Fase 16 — SEO local e presença em Brumadinho === */

.local-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(35,199,217,.12), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(31,122,91,.10), transparent 30%),
    #ffffff;
  border-top: 1px solid var(--line);
}

.local-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,199,217,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.42), transparent 84%);
}

.local-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 30px;
  align-items: center;
}

.local-copy h2 {
  background: linear-gradient(120deg, #0f1720 0%, #173f55 48%, #0d7d73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.local-copy p {
  color: var(--muted);
  font-size: 17px;
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.local-tags span {
  background: linear-gradient(90deg, rgba(31,122,91,.10), rgba(35,199,217,.13));
  border: 1px solid rgba(35,199,217,.18);
  color: var(--accent2);
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 12px;
}

.local-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(238,245,241,.84));
  border: 1px solid rgba(35,199,217,.24);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(15,23,32,.10);
}

.local-panel h3 {
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1.08;
}

.local-panel p {
  color: var(--muted);
  font-size: 17px;
}

.local-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.local-list div {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(35,199,217,.18);
  border-radius: 14px;
  padding: 14px;
}

.local-list strong {
  display: block;
  color: var(--text);
}

.local-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

@media (max-width: 950px) {
  .local-grid {
    grid-template-columns: 1fr;
  }
}

/* === Fase 19 — Home compacta e interativa === */

.compact-explore {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 12% 18%, rgba(35,199,217,.12), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(109,93,252,.09), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7f8f6);
  border-bottom: 1px solid var(--line);
}

.compact-explore::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,199,217,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.48), transparent 84%);
  pointer-events: none;
}

.compact-explore .container {
  position: relative;
  z-index: 1;
}

.compact-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.compact-head h2 {
  background: linear-gradient(120deg, #0f1720 0%, #173f55 45%, #0d7d73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.compact-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.quick-card {
  position: relative;
  display: block;
  min-height: 230px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(35,199,217,.20);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 48px rgba(15,23,32,.07);
  overflow: hidden;
  transition: .22s ease;
}

.quick-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(35,199,217,.16), transparent 70%);
}

.quick-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35,199,217,.42);
  box-shadow: 0 26px 70px rgba(35,199,217,.12);
}

.quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--tech-cyan), var(--tech-blue));
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(37,99,235,.20);
}

.quick-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.quick-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.quick-card span {
  color: var(--accent2);
  font-weight: 900;
  font-size: 14px;
}

.compact-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.compact-strip div {
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(238,245,241,.74));
  border: 1px solid rgba(35,199,217,.18);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 14px 38px rgba(15,23,32,.05);
}

.compact-strip strong {
  display: block;
  color: var(--text);
}

.compact-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

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

  .compact-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .quick-grid,
  .compact-strip {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: auto;
  }
}

.soft-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}

.soft-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Fase 21 — Vitrine horizontal interativa === */

.quick-showroom {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(35,199,217,.12), transparent 28%),
    radial-gradient(circle at 84% 70%, rgba(109,93,252,.10), transparent 30%),
    #07111d;
  color: #fff;
  border-top: 1px solid rgba(35,199,217,.18);
  border-bottom: 1px solid rgba(35,199,217,.18);
}

.quick-showroom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 86%);
  pointer-events: none;
}

.quick-showroom .container {
  position: relative;
  z-index: 1;
}

.showroom-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.showroom-head h2 {
  color: #fff;
  max-width: 760px;
}

.showroom-head p {
  color: rgba(255,255,255,.72);
  font-size: 18px;
  max-width: 760px;
}

.showroom-controls {
  display: flex;
  gap: 10px;
}

.showroom-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(35,199,217,.28);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
  backdrop-filter: blur(10px);
}

.showroom-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--tech-blue));
  transform: translateY(-2px);
}

.showroom-window {
  overflow: hidden;
  border-radius: 28px;
}

.showroom-track {
  display: flex;
  gap: 18px;
  transition: transform .42s ease;
  will-change: transform;
}

.showroom-card {
  min-width: calc((100% - 36px) / 3);
  background:
    radial-gradient(circle at top right, rgba(35,199,217,.18), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.065));
  border: 1px solid rgba(35,199,217,.24);
  border-radius: 26px;
  padding: 26px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}

.showroom-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(35,199,217,.18), transparent 70%);
}

.showroom-card.featured {
  border-color: rgba(35,199,217,.48);
  box-shadow:
    0 30px 90px rgba(35,199,217,.12),
    0 0 0 1px rgba(255,255,255,.08) inset;
}

.showroom-code {
  display: inline-flex;
  width: fit-content;
  background: rgba(35,199,217,.12);
  border: 1px solid rgba(35,199,217,.28);
  color: #9beaf2;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.showroom-card h3 {
  color: #fff;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -1px;
}

.showroom-card p {
  color: rgba(255,255,255,.72);
  font-size: 16px;
}

.showroom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.showroom-meta span {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.76);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.showroom-actions {
  margin-top: auto;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.showroom-actions .btn {
  padding: 11px 14px;
}

.showroom-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.showroom-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  transition: .2s ease;
}

.showroom-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--accent), var(--tech-cyan), var(--tech-blue));
}

@media (max-width: 1000px) {
  .showroom-card {
    min-width: calc((100% - 18px) / 2);
  }

  .showroom-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .showroom-card {
    min-width: 100%;
  }

  .showroom-controls {
    width: 100%;
    justify-content: space-between;
  }
}

/* === Fase 25 — Estrutura visual de imagens finais do showroom === */

.final-image-structure-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(35,199,217,.12), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(31,122,91,.11), transparent 30%),
    linear-gradient(135deg, #f8fbfa, #eef5f1);
}

.image-structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.image-slot-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(35,199,217,.18);
  box-shadow: 0 22px 60px rgba(15,23,32,.08);
}

.image-slot-card h3 {
  margin: 16px 0 8px;
}

.image-slot-card p {
  color: var(--muted);
}

.image-slot-card code {
  display: block;
  margin-top: 10px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(15,23,32,.06);
  color: #173f55;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.image-slot {
  min-height: 180px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}

.image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), transparent);
}

.image-slot::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(35,199,217,.78), rgba(31,122,91,.78));
}

.image-slot span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1px;
  text-shadow: 0 12px 32px rgba(0,0,0,.32);
}

.img-slot-clinica {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,192,203,.42), transparent 28%),
    linear-gradient(135deg, #7f9fb4, #e8ccd7);
}

.img-slot-oficina {
  background:
    radial-gradient(circle at 18% 18%, rgba(35,199,217,.32), transparent 30%),
    linear-gradient(135deg, #1f2937, #6b7280);
}

.img-slot-roupas {
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.38), transparent 30%),
    linear-gradient(135deg, #705c7c, #d2a679);
}

.img-slot-imobiliaria {
  background:
    radial-gradient(circle at 84% 24%, rgba(255,255,255,.55), transparent 32%),
    linear-gradient(135deg, #a07c52, #d8c6aa);
}

.img-slot-musica {
  background:
    radial-gradient(circle at 82% 18%, rgba(35,199,217,.30), transparent 30%),
    linear-gradient(135deg, #3b2f2f, #a66b3f);
}

@media (max-width: 1000px) {
  .image-structure-grid {
    grid-template-columns: 1fr;
  }
}

/* === Fase 26 — Cards flutuantes hi-tech do showroom === */

.showroom-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(35,199,217,.14), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(31,122,91,.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4faf8 48%, #edf6f7 100%);
}

.showroom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35,199,217,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,122,91,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 72%);
  pointer-events: none;
}

.showroom-section .container {
  position: relative;
  z-index: 1;
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.showroom-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  box-shadow:
    0 24px 70px rgba(15,23,32,.14),
    inset 0 0 0 1px rgba(255,255,255,.18);
  transform: translateY(0);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    filter .28s ease;
}

.showroom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.34), transparent 28%),
    linear-gradient(135deg, rgba(15,23,32,.78), rgba(15,23,32,.34));
}

.showroom-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -2;
  border-radius: 29px;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .72;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 76%);
}

.showroom-card .badge {
  width: fit-content;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}

.showroom-card h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: -1px;
}

.showroom-card p {
  color: rgba(255,255,255,.84);
  line-height: 1.55;
}

.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.showroom-actions .btn {
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
}

.showroom-actions .btn.secondary {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.32);
  backdrop-filter: blur(10px);
}

.showroom-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 34px 90px rgba(15,23,32,.22),
    0 0 0 1px rgba(35,199,217,.18),
    inset 0 0 0 1px rgba(255,255,255,.28);
  filter: saturate(1.08);
}

.showroom-card:hover .btn {
  transform: translateY(-1px);
}

.showroom-card.clinica-art {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,194,214,.72), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(35,199,217,.34), transparent 32%),
    linear-gradient(135deg, #6f8ca5, #d7a9be);
}

.showroom-card.oficina-art {
  background:
    radial-gradient(circle at 80% 16%, rgba(35,199,217,.52), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, #17202b, #52606d);
}

.showroom-card.roupas-art {
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.40), transparent 30%),
    radial-gradient(circle at 15% 80%, rgba(35,199,217,.20), transparent 34%),
    linear-gradient(135deg, #655070, #c89666);
}

.showroom-card.imobiliaria-art {
  background:
    radial-gradient(circle at 84% 20%, rgba(255,255,255,.54), transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(31,122,91,.26), transparent 34%),
    linear-gradient(135deg, #87643c, #d7bf9c);
}

.showroom-card.musica-art {
  background:
    radial-gradient(circle at 82% 18%, rgba(35,199,217,.36), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(135deg, #2f2525, #a66539);
}

@media (max-width: 1250px) {
  .showroom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .showroom-card {
    min-height: 320px;
  }
}

/* === Fase 26 — Movimento sutil dos cards do showroom === */

.showroom-card {
  animation: showroomFloat 7s ease-in-out infinite;
}

.showroom-card:nth-child(2) {
  animation-delay: .7s;
}

.showroom-card:nth-child(3) {
  animation-delay: 1.4s;
}

.showroom-card:nth-child(4) {
  animation-delay: 2.1s;
}

.showroom-card:nth-child(5) {
  animation-delay: 2.8s;
}

.showroom-card > * {
  position: relative;
  z-index: 2;
}

.showroom-card .showroom-actions {
  z-index: 3;
}

.showroom-card::before {
  transition: transform .35s ease, opacity .35s ease;
}

.showroom-card:hover::before {
  transform: scale(1.04);
  opacity: .96;
}

.showroom-card .badge::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(35,199,217,.92);
  box-shadow: 0 0 18px rgba(35,199,217,.9);
}

.showroom-card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(35,199,217,.86), rgba(31,122,91,.82));
}

@keyframes showroomFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.showroom-card:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .showroom-card {
    animation: none;
  }

  .showroom-card,
  .showroom-card::before,
  .showroom-card .btn {
    transition: none;
  }
}

/* === Fase 27 — Hero comercial hi-tech do showroom === */

.showroom-hero-pro {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 82% 18%, rgba(35,199,217,.24), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(31,122,91,.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f2faf8 46%, #eaf5f7 100%);
  border-bottom: 1px solid rgba(15,23,32,.08);
}

.showroom-hero-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35,199,217,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,122,91,.065) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 78%);
  pointer-events: none;
}

.showroom-hero-pro::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(35,199,217,.20), transparent 62%);
  filter: blur(4px);
  pointer-events: none;
}

.showroom-hero-pro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.showroom-hero-pro h1 {
  max-width: 920px;
  margin: 14px 0 18px;
  background: linear-gradient(120deg, #0f1720 0%, #173f55 44%, #0b7c75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.showroom-hero-pro .lead {
  max-width: 760px;
}

.showroom-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}

.showroom-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(35,199,217,.22);
  color: #173f55;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 14px 36px rgba(15,23,32,.06);
  backdrop-filter: blur(10px);
}

.showroom-hero-pills span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(35,199,217,.95);
  box-shadow: 0 0 18px rgba(35,199,217,.8);
}

.showroom-hero-panel {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(35,199,217,.44), transparent 32%),
    radial-gradient(circle at 15% 88%, rgba(31,122,91,.34), transparent 32%),
    linear-gradient(135deg, #121c27, #24465a);
  box-shadow:
    0 34px 90px rgba(15,23,32,.20),
    inset 0 0 0 1px rgba(255,255,255,.18);
  animation: showroomPanelFloat 7.5s ease-in-out infinite;
}

.showroom-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 82%);
}

.hero-panel-top,
.hero-panel-grid,
.showroom-hero-panel p {
  position: relative;
  z-index: 1;
}

.hero-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-panel-top span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.88);
  font-weight: 800;
}

.hero-panel-top strong {
  font-size: 28px;
  letter-spacing: -1px;
  text-align: right;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-panel-grid div {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}

.showroom-hero-panel p {
  margin-top: 24px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}

@keyframes showroomPanelFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(.35deg);
  }
}

@media (max-width: 980px) {
  .showroom-hero-pro-grid {
    grid-template-columns: 1fr;
  }

  .showroom-hero-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .showroom-hero-pro {
    padding: 68px 0 54px;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel-top {
    flex-direction: column;
  }

  .hero-panel-top strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showroom-hero-panel {
    animation: none;
  }
}

/* === Fase 28 — Vitrine do showroom na Home === */

.home-showroom-vitrine {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(35,199,217,.13), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(31,122,91,.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4faf8 48%, #edf6f7 100%);
}

.home-showroom-vitrine::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35,199,217,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,122,91,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 75%);
  pointer-events: none;
}

.home-showroom-vitrine .container {
  position: relative;
  z-index: 1;
}

.home-showroom-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.home-showroom-head h2 {
  max-width: 880px;
  margin-top: 12px;
  background: linear-gradient(120deg, #0f1720 0%, #173f55 45%, #0b7c75 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-showroom-head p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.home-showroom-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.home-showroom-mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-showroom-mini-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 24px 70px rgba(15,23,32,.13),
    inset 0 0 0 1px rgba(255,255,255,.18);
  transform: translateY(0);
  transition:
    transform .26s ease,
    box-shadow .26s ease,
    filter .26s ease;
}

.home-showroom-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.32), transparent 30%),
    linear-gradient(135deg, rgba(15,23,32,.66), rgba(15,23,32,.24));
  z-index: 0;
}

.home-showroom-mini-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.68), transparent 78%);
  z-index: 0;
}

.home-showroom-mini-card span,
.home-showroom-mini-card strong {
  position: relative;
  z-index: 1;
}

.home-showroom-mini-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.26);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.home-showroom-mini-card strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -1px;
}

.home-showroom-mini-card:hover {
  transform: translateY(-8px);
  filter: saturate(1.08);
  box-shadow:
    0 34px 90px rgba(15,23,32,.20),
    0 0 0 1px rgba(35,199,217,.18),
    inset 0 0 0 1px rgba(255,255,255,.28);
}

.home-showroom-mini-card.clinica-art {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,194,214,.72), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(35,199,217,.34), transparent 32%),
    linear-gradient(135deg, #6f8ca5, #d7a9be);
}

.home-showroom-mini-card.oficina-art {
  background:
    radial-gradient(circle at 80% 16%, rgba(35,199,217,.52), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, #17202b, #52606d);
}

.home-showroom-mini-card.roupas-art {
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.40), transparent 30%),
    radial-gradient(circle at 15% 80%, rgba(35,199,217,.20), transparent 34%),
    linear-gradient(135deg, #655070, #c89666);
}

.home-showroom-mini-card.imobiliaria-art {
  background:
    radial-gradient(circle at 84% 20%, rgba(255,255,255,.54), transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(31,122,91,.26), transparent 34%),
    linear-gradient(135deg, #87643c, #d7bf9c);
}

.home-showroom-mini-card.musica-art {
  background:
    radial-gradient(circle at 82% 18%, rgba(35,199,217,.36), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(135deg, #2f2525, #a66539);
}

@media (max-width: 1100px) {
  .home-showroom-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-showroom-cta {
    justify-content: flex-start;
  }

  .home-showroom-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-showroom-mini-grid {
    grid-template-columns: 1fr;
  }

  .home-showroom-mini-card {
    min-height: 170px;
  }
}

/* === Fase 31 — Visuais Restaurante/Delivery e Prestador de Serviços === */

.restaurante-art {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,210,120,.46), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(31,122,91,.30), transparent 32%),
    linear-gradient(135deg, #8a4f2a, #d79a55);
}

.servicos-art {
  background:
    radial-gradient(circle at 82% 18%, rgba(35,199,217,.38), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,.20), transparent 32%),
    linear-gradient(135deg, #263746, #5f7688);
}

.img-slot-restaurante {
  background:
    radial-gradient(circle at 78% 18%, rgba(255,210,120,.48), transparent 28%),
    linear-gradient(135deg, #8a4f2a, #d79a55);
}

.img-slot-servicos {
  background:
    radial-gradient(circle at 78% 18%, rgba(35,199,217,.38), transparent 28%),
    linear-gradient(135deg, #263746, #5f7688);
}

.home-showroom-mini-card.restaurante-art,
.showroom-card.restaurante-art {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,210,120,.55), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(31,122,91,.26), transparent 32%),
    linear-gradient(135deg, #8a4f2a, #d79a55);
}

.home-showroom-mini-card.servicos-art,
.showroom-card.servicos-art {
  background:
    radial-gradient(circle at 82% 18%, rgba(35,199,217,.42), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,.16), transparent 32%),
    linear-gradient(135deg, #263746, #5f7688);
}

/* =========================================================
   FASE 34 / ETAPA 5A — COMPLEMENTO VISUAL DOS MODELOS
   BrumaTech.org — Showroom / Modelos Comerciais
   Bloco adicionado para padronizar cards, placeholders,
   mini-cards e slots de imagem dos modelos.
   ========================================================= */

/* Base visual compartilhada para áreas demonstrativas */
.demo-visual,
.image-placeholder,
.image-slot {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 260px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  isolation: isolate;
}

.demo-visual::before,
.image-placeholder::before,
.image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.95), rgba(255,255,255,0.15) 35%, transparent 58%),
    linear-gradient(135deg, rgba(15,23,42,0.08), rgba(255,255,255,0.92));
}

.demo-visual::after,
.image-placeholder::after,
.image-slot::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  z-index: -1;
  background: rgba(255,255,255,0.32);
  filter: blur(2px);
}

.demo-visual span,
.image-placeholder span,
.image-slot span {
  position: relative;
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

/* Empresa institucional */
.institucional-art,
.img-slot-institucional,
.home-showroom-mini-card.institucional-art,
.showroom-card.institucional-art {
  background:
    linear-gradient(135deg, rgba(15,23,42,0.88), rgba(30,64,175,0.70)),
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.45), transparent 34%),
    linear-gradient(135deg, #e5e7eb, #f8fafc);
}

.institucional-art::before,
.img-slot-institucional::before {
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.92), rgba(255,255,255,0.18) 36%, transparent 58%),
    linear-gradient(135deg, rgba(15,23,42,0.12), rgba(30,64,175,0.24), rgba(248,250,252,0.96));
}

/* Clínica de estética */
.clinica-art,
.img-slot-clinica,
.home-showroom-mini-card.clinica-art,
.showroom-card.clinica-art {
  background:
    linear-gradient(135deg, rgba(219,39,119,0.78), rgba(244,114,182,0.45)),
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.78), transparent 36%),
    linear-gradient(135deg, #fff1f2, #fdf2f8);
}

.clinica-art::before,
.img-slot-clinica::before {
  background:
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.95), rgba(255,255,255,0.25) 35%, transparent 60%),
    linear-gradient(135deg, rgba(244,114,182,0.25), rgba(253,242,248,0.96));
}

/* Oficina mecânica */
.oficina-art,
.img-slot-oficina,
.home-showroom-mini-card.oficina-art,
.showroom-card.oficina-art {
  background:
    linear-gradient(135deg, rgba(15,23,42,0.88), rgba(234,88,12,0.72)),
    radial-gradient(circle at 24% 18%, rgba(255,255,255,0.36), transparent 34%),
    linear-gradient(135deg, #111827, #f97316);
}

.oficina-art::before,
.img-slot-oficina::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,0.72), rgba(255,255,255,0.12) 34%, transparent 60%),
    linear-gradient(135deg, rgba(15,23,42,0.18), rgba(234,88,12,0.32), rgba(255,247,237,0.92));
}

/* Loja de roupas */
.roupas-art,
.loja-art,
.img-slot-roupas,
.img-slot-loja,
.home-showroom-mini-card.roupas-art,
.showroom-card.roupas-art {
  background:
    linear-gradient(135deg, rgba(88,28,135,0.78), rgba(217,70,239,0.48)),
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.72), transparent 34%),
    linear-gradient(135deg, #faf5ff, #fdf4ff);
}

.roupas-art::before,
.loja-art::before,
.img-slot-roupas::before,
.img-slot-loja::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,0.96), rgba(255,255,255,0.22) 35%, transparent 60%),
    linear-gradient(135deg, rgba(217,70,239,0.22), rgba(250,245,255,0.96));
}

/* Imobiliária */
.imobiliaria-art,
.img-slot-imobiliaria,
.home-showroom-mini-card.imobiliaria-art,
.showroom-card.imobiliaria-art {
  background:
    linear-gradient(135deg, rgba(21,94,117,0.82), rgba(14,165,233,0.48)),
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.72), transparent 34%),
    linear-gradient(135deg, #ecfeff, #f8fafc);
}

.imobiliaria-art::before,
.img-slot-imobiliaria::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,0.95), rgba(255,255,255,0.22) 35%, transparent 60%),
    linear-gradient(135deg, rgba(14,165,233,0.22), rgba(236,254,255,0.96));
}

/* Restaurante / Delivery */
.restaurante-art,
.delivery-art,
.img-slot-restaurante,
.img-slot-delivery,
.home-showroom-mini-card.restaurante-art,
.showroom-card.restaurante-art {
  background:
    linear-gradient(135deg, rgba(127,29,29,0.84), rgba(245,158,11,0.58)),
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.68), transparent 34%),
    linear-gradient(135deg, #fff7ed, #fffbeb);
}

.restaurante-art::before,
.delivery-art::before,
.img-slot-restaurante::before,
.img-slot-delivery::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,0.94), rgba(255,255,255,0.20) 35%, transparent 60%),
    linear-gradient(135deg, rgba(245,158,11,0.24), rgba(255,247,237,0.96));
}

/* Prestador de serviços */
.servicos-art,
.prestador-art,
.img-slot-servicos,
.img-slot-prestador,
.home-showroom-mini-card.servicos-art,
.showroom-card.servicos-art {
  background:
    linear-gradient(135deg, rgba(22,101,52,0.84), rgba(34,197,94,0.42)),
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.70), transparent 34%),
    linear-gradient(135deg, #ecfdf5, #f8fafc);
}

.servicos-art::before,
.prestador-art::before,
.img-slot-servicos::before,
.img-slot-prestador::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,0.94), rgba(255,255,255,0.20) 35%, transparent 60%),
    linear-gradient(135deg, rgba(34,197,94,0.22), rgba(236,253,245,0.96));
}

/* Instrumentos musicais */
.musica-art,
.instrumentos-art,
.img-slot-musica,
.img-slot-instrumentos,
.home-showroom-mini-card.musica-art,
.showroom-card.musica-art {
  background:
    linear-gradient(135deg, rgba(67,56,202,0.82), rgba(14,165,233,0.50)),
    radial-gradient(circle at 25% 18%, rgba(255,255,255,0.70), transparent 34%),
    linear-gradient(135deg, #eef2ff, #eff6ff);
}

.musica-art::before,
.instrumentos-art::before,
.img-slot-musica::before,
.img-slot-instrumentos::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(255,255,255,0.94), rgba(255,255,255,0.20) 35%, transparent 60%),
    linear-gradient(135deg, rgba(99,102,241,0.22), rgba(239,246,255,0.96));
}

/* Cards de slot de imagem */
.image-structure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.image-slot-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 46px rgba(15,23,42,0.08);
}

.image-slot-card .image-slot {
  min-height: 170px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.image-slot-card h3 {
  margin: 0 0 8px;
}

.image-slot-card p {
  margin: 0 0 10px;
}

.image-slot-card code {
  display: block;
  white-space: normal;
  word-break: break-word;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,23,42,0.06);
  color: #0f172a;
  font-size: 0.82rem;
}

/* Preparação futura para imagens reais */
.demo-visual.has-image,
.image-placeholder.has-image,
.image-slot.has-image,
.showroom-card.has-image,
.home-showroom-mini-card.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.demo-visual.has-image::before,
.image-placeholder.has-image::before,
.image-slot.has-image::before {
  background:
    linear-gradient(180deg, rgba(15,23,42,0.04), rgba(15,23,42,0.34));
}

.demo-visual.has-image span,
.image-placeholder.has-image span,
.image-slot.has-image span {
  background: rgba(255,255,255,0.90);
}

/* Responsividade dos slots */
@media (max-width: 900px) {
  .image-structure-grid {
    grid-template-columns: 1fr;
  }

  .demo-visual,
  .image-placeholder,
  .image-slot {
    min-height: 220px;
  }
}

/* =========================================================
   FIM — FASE 34 / ETAPA 5A
   ========================================================= */

/* =========================================================
   FASE 35 / ETAPA 35J-R
   CSS da Home compacta high-tech reaplicado ao site público.
   Origem: /preview-home-compacta/home_compacta_hightech.css
   ========================================================= */
/* =========================================================
   FASE 35 / ETAPA 35D
   CSS high-tech complementar para Home compacta BrumaTech.org
   Arquivo de proposta. Não aplicado ainda na Home pública.
   ========================================================= */

:root {
  --bt-dark: #07111f;
  --bt-graphite: #0f172a;
  --bt-blue: #2563eb;
  --bt-cyan: #06b6d4;
  --bt-green: #22c55e;
  --bt-soft: #f8fafc;
  --bt-line: rgba(15, 23, 42, 0.10);
  --bt-glow: rgba(37, 99, 235, 0.22);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(34, 197, 94, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f8fafc 100%);
}

/* Hero compacto */

.compact-hero {
  position: relative;
  min-height: auto;
  padding: 72px 0 44px;
  overflow: hidden;
}

.compact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,23,42,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
  pointer-events: none;
}

.compact-hero .hero-grid {
  align-items: center;
}

.compact-hero h1 {
  max-width: 780px;
  letter-spacing: -0.05em;
}

.compact-hero .lead {
  max-width: 640px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f172a;
}

.tech-float-card {
  position: relative;
  transform: rotate(1.5deg);
  border-radius: 32px;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.72), transparent 32%),
    linear-gradient(135deg, rgba(15,23,42,0.96), rgba(37,99,235,0.78), rgba(34,197,94,0.48));
  color: #fff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  animation: btFloat 5.8s ease-in-out infinite;
}

.tech-float-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  filter: blur(2px);
}

.tech-float-card .badge {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.20);
}

.tech-float-card h2 {
  color: #fff;
  margin-top: 18px;
}

.tech-float-card p {
  color: rgba(255,255,255,0.84);
}

/* Navegação rápida compacta */

.quick-nav-section {
  padding: 0 0 28px;
}

.quick-nav-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 18px 48px rgba(15,23,42,0.08);
  backdrop-filter: blur(14px);
}

.quick-nav-strip a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: #0f172a;
  font-weight: 800;
  text-decoration: none;
  transition: 0.22s ease;
}

.quick-nav-strip a:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-2px);
}

/* Seções compactas */

.section-head.compact {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head.compact h2 {
  letter-spacing: -0.035em;
}

.compact-showroom,
.compact-services,
.compact-pricing,
.managed-site,
.compact-budget {
  padding: 58px 0;
}

/* Showroom 3D */

.showroom-3d-shell {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.showroom-3d-track {
  display: grid;
  grid-template-columns: 0.86fr 1.12fr 0.86fr;
  gap: 18px;
  perspective: 1200px;
  align-items: center;
}

.showroom-3d-card {
  position: relative;
  min-height: 280px;
  border-radius: 30px;
  padding: 24px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 66px rgba(15,23,42,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  transform: scale(0.92) rotateY(8deg);
  opacity: 0.82;
  transition: 0.25s ease;
}

.showroom-3d-card:nth-child(3) {
  transform: scale(0.92) rotateY(-8deg);
}

.showroom-3d-card.active {
  min-height: 330px;
  transform: scale(1) rotateY(0);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 34px 90px rgba(15,23,42,0.25);
}

.showroom-3d-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.10), rgba(15,23,42,0.62)),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.25), transparent 32%);
  z-index: 0;
}

.showroom-3d-card span,
.showroom-3d-card strong {
  position: relative;
  z-index: 1;
}

.showroom-3d-card span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.26);
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.showroom-3d-card strong {
  font-size: 1.1rem;
  line-height: 1.35;
  max-width: 360px;
}

.showroom-3d-card:hover {
  transform: translateY(-8px) scale(1.02);
  opacity: 1;
}

.carousel-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  cursor: pointer;
  transition: 0.22s ease;
}

.carousel-arrow:hover {
  background: #2563eb;
  color: #fff;
  transform: scale(1.06);
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  justify-content: center;
}

.sector-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.86rem;
}

/* Setores compactos */

.compact-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.compact-sector-grid article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 44px rgba(15,23,42,0.07);
  transition: 0.22s ease;
}

.compact-sector-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(15,23,42,0.12);
}

.compact-sector-grid h3 {
  margin: 0 0 8px;
}

.compact-sector-grid p {
  margin: 0;
  font-size: 0.94rem;
}

/* Pacotes */

.pricing-grid.compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 50px rgba(15,23,42,0.08);
}

.price-card.featured {
  transform: translateY(-10px);
  border-color: rgba(37,99,235,0.28);
  box-shadow: 0 34px 80px rgba(37,99,235,0.18);
}

.price-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0 4px;
  letter-spacing: -0.05em;
}

.price-card ul {
  margin: 18px 0;
  padding-left: 18px;
}

.price-card li {
  margin: 7px 0;
}

/* Site gerenciado */

.managed-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.floating-steps {
  display: grid;
  gap: 12px;
}

.floating-steps div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 16px 38px rgba(15,23,42,0.08);
  font-weight: 900;
  animation: btSoftPulse 4.8s ease-in-out infinite;
}

.floating-steps div:nth-child(2) { animation-delay: 0.25s; }
.floating-steps div:nth-child(3) { animation-delay: 0.50s; }
.floating-steps div:nth-child(4) { animation-delay: 0.75s; }

/* Orçamento */

.budget-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.budget-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 22px 60px rgba(15,23,42,0.10);
}

.budget-form input,
.budget-form select,
.budget-form textarea {
  width: 100%;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  background: rgba(248,250,252,0.96);
}

.budget-form textarea {
  min-height: 92px;
  resize: vertical;
}

/* Final */

.compact-final {
  padding: 64px 0;
}

/* Animações */

@keyframes btFloat {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-10px) rotate(-0.6deg); }
}

@keyframes btSoftPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* Responsivo */

@media (max-width: 980px) {
  .showroom-3d-shell {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

  .showroom-3d-track,
  .compact-sector-grid,
  .pricing-grid.compact,
  .managed-grid,
  .budget-grid {
    grid-template-columns: 1fr;
  }

  .showroom-3d-card,
  .showroom-3d-card.active {
    min-height: 250px;
    transform: none;
  }

  .price-card.featured {
    transform: none;
  }

  .quick-nav-strip {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .compact-hero {
    padding: 48px 0 30px;
  }

  .tech-float-card {
    transform: none;
  }

  .hero-pills {
    gap: 8px;
  }

  .hero-pills span {
    font-size: 0.78rem;
  }
}

/* =========================================================
   FIM — FASE 35 / ETAPA 35D
   ========================================================= */

/* =========================================================
   FASE 35 / ETAPA 35F
   Expansão do showroom preview para 8 modelos
   ========================================================= */

.showroom-3d-shell.expanded {
  grid-template-columns: 52px 1fr 52px;
}

.showroom-3d-track.expanded-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 18px 8px 26px;
  perspective: none;
}

.showroom-3d-track.expanded-grid::-webkit-scrollbar {
  height: 10px;
}

.showroom-3d-track.expanded-grid::-webkit-scrollbar-track {
  background: rgba(15,23,42,0.06);
  border-radius: 999px;
}

.showroom-3d-track.expanded-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  border-radius: 999px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card {
  min-width: 240px;
  min-height: 270px;
  scroll-snap-align: center;
  transform: scale(0.96);
  opacity: 0.90;
}

.showroom-3d-track.expanded-grid .showroom-3d-card.active {
  min-height: 300px;
  transform: scale(1.02);
  opacity: 1;
}

.showroom-3d-track.expanded-grid .showroom-3d-card:hover {
  transform: translateY(-8px) scale(1.04);
}

@media (max-width: 980px) {
  .showroom-3d-track.expanded-grid {
    grid-template-columns: repeat(8, minmax(230px, 78vw));
  }
}

/* =========================================================
   FIM — FASE 35 / ETAPA 35F
   ========================================================= */

/* =========================================================
   FASE 35 / ETAPA 35H
   Ajuste visual para card ativo controlado por JS
   ========================================================= */

.showroom-3d-track.expanded-grid .showroom-3d-card.active {
  outline: 3px solid rgba(37, 99, 235, 0.26);
  outline-offset: 4px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card.active::after {
  content: "Abrir modelo";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15,23,42,0.12);
}

.carousel-arrow {
  user-select: none;
}

.carousel-arrow:active {
  transform: scale(0.96);
}

/* =========================================================
   FIM — FASE 35 / ETAPA 35H
   ========================================================= */

/* =========================================================
   FASE 35 / ETAPA 35I
   Ajuste fino visual: compactação, botões, legibilidade
   ========================================================= */

/* Redução geral de altura e rolagem */
.compact-hero {
  padding-top: 52px;
  padding-bottom: 30px;
}

.compact-showroom,
.compact-services,
.compact-pricing,
.managed-site,
.compact-budget {
  padding: 42px 0;
}

.compact-final {
  padding: 48px 0;
}

.section-head.compact {
  margin-bottom: 18px;
}

.section-head.compact h2 {
  margin-bottom: 8px;
}

.section-head.compact p {
  max-width: 620px;
}

/* Hero mais enxuto */
.compact-hero h1 {
  line-height: 0.98;
}

.compact-hero .lead {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  gap: 10px;
}

.hero-pills {
  margin-top: 16px;
}

.hero-pills span {
  padding: 7px 11px;
}

/* Card flutuante mais compacto */
.tech-float-card {
  padding: 24px;
  border-radius: 28px;
}

.tech-float-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

/* Navegação rápida menor */
.quick-nav-section {
  padding-bottom: 18px;
}

.quick-nav-strip {
  padding: 8px;
}

.quick-nav-strip a {
  padding: 8px 13px;
  font-size: 0.88rem;
}

/* Showroom mais limpo e com menos peso vertical */
.showroom-3d-track.expanded-grid {
  padding-top: 10px;
  padding-bottom: 18px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card {
  min-height: 230px;
  min-width: 230px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card.active {
  min-height: 260px;
}

.showroom-3d-card strong {
  font-size: 1rem;
}

.showroom-3d-card span {
  padding: 7px 10px;
  font-size: 0.78rem;
}

/* Tags menores */
.sector-tags {
  margin-top: 14px;
}

.sector-tags span {
  padding: 7px 10px;
  font-size: 0.78rem;
}

/* Setores em cards menores */
.compact-sector-grid {
  gap: 12px;
}

.compact-sector-grid article {
  padding: 16px;
  border-radius: 20px;
}

.compact-sector-grid h3 {
  font-size: 1rem;
}

.compact-sector-grid p {
  font-size: 0.86rem;
}

/* Pacotes mais comerciais */
.price-card {
  padding: 20px;
  border-radius: 24px;
}

.price-card h3 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.price-card p {
  margin-top: 4px;
  font-weight: 800;
  color: #2563eb;
}

.price-card ul {
  margin: 14px 0;
}

.price-card li {
  margin: 5px 0;
  font-size: 0.92rem;
}

/* Site gerenciado mais legível */
.managed-grid {
  gap: 20px;
}

.managed-site .lead {
  font-size: 1rem;
  line-height: 1.65;
}

.floating-steps {
  gap: 9px;
}

.floating-steps div {
  padding: 13px 15px;
  border-radius: 16px;
  font-size: 0.94rem;
}

/* Orçamento mais compacto */
.budget-grid {
  gap: 20px;
}

.budget-form {
  padding: 18px;
  border-radius: 24px;
  gap: 10px;
}

.budget-form input,
.budget-form select,
.budget-form textarea {
  padding: 11px 12px;
  border-radius: 14px;
}

.budget-form textarea {
  min-height: 76px;
}

/* Botões com linguagem mais limpa */
.btn {
  white-space: nowrap;
}

.compact-budget .btn,
.price-card .btn,
.compact-final .btn {
  width: fit-content;
}

/* Melhor leitura sobre fundos */
.showroom-3d-card::before {
  background:
    linear-gradient(180deg, rgba(15,23,42,0.14), rgba(15,23,42,0.72)),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.22), transparent 34%);
}

/* Menos repetição visual no mobile */
@media (max-width: 980px) {
  .compact-hero,
  .compact-showroom,
  .compact-services,
  .compact-pricing,
  .managed-site,
  .compact-budget,
  .compact-final {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .showroom-3d-track.expanded-grid .showroom-3d-card,
  .showroom-3d-track.expanded-grid .showroom-3d-card.active {
    min-height: 225px;
  }
}

/* =========================================================
   FIM — FASE 35 / ETAPA 35I
   ========================================================= */

/* =========================================================
   FASE 35 / ETAPA 35I
   Ajuste fino visual: compactação, botões, legibilidade
   ========================================================= */

/* Redução geral de altura e rolagem */
.compact-hero {
  padding-top: 52px;
  padding-bottom: 30px;
}

.compact-showroom,
.compact-services,
.compact-pricing,
.managed-site,
.compact-budget {
  padding: 42px 0;
}

.compact-final {
  padding: 48px 0;
}

.section-head.compact {
  margin-bottom: 18px;
}

.section-head.compact h2 {
  margin-bottom: 8px;
}

.section-head.compact p {
  max-width: 620px;
}

/* Hero mais enxuto */
.compact-hero h1 {
  line-height: 0.98;
}

.compact-hero .lead {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  gap: 10px;
}

.hero-pills {
  margin-top: 16px;
}

.hero-pills span {
  padding: 7px 11px;
}

/* Card flutuante mais compacto */
.tech-float-card {
  padding: 24px;
  border-radius: 28px;
}

.tech-float-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

/* Navegação rápida menor */
.quick-nav-section {
  padding-bottom: 18px;
}

.quick-nav-strip {
  padding: 8px;
}

.quick-nav-strip a {
  padding: 8px 13px;
  font-size: 0.88rem;
}

/* Showroom mais limpo e com menos peso vertical */
.showroom-3d-track.expanded-grid {
  padding-top: 10px;
  padding-bottom: 18px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card {
  min-height: 230px;
  min-width: 230px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card.active {
  min-height: 260px;
}

.showroom-3d-card strong {
  font-size: 1rem;
}

.showroom-3d-card span {
  padding: 7px 10px;
  font-size: 0.78rem;
}

/* Tags menores */
.sector-tags {
  margin-top: 14px;
}

.sector-tags span {
  padding: 7px 10px;
  font-size: 0.78rem;
}

/* Setores em cards menores */
.compact-sector-grid {
  gap: 12px;
}

.compact-sector-grid article {
  padding: 16px;
  border-radius: 20px;
}

.compact-sector-grid h3 {
  font-size: 1rem;
}

.compact-sector-grid p {
  font-size: 0.86rem;
}

/* Pacotes mais comerciais */
.price-card {
  padding: 20px;
  border-radius: 24px;
}

.price-card h3 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.price-card p {
  margin-top: 4px;
  font-weight: 800;
  color: #2563eb;
}

.price-card ul {
  margin: 14px 0;
}

.price-card li {
  margin: 5px 0;
  font-size: 0.92rem;
}

/* Site gerenciado mais legível */
.managed-grid {
  gap: 20px;
}

.managed-site .lead {
  font-size: 1rem;
  line-height: 1.65;
}

.floating-steps {
  gap: 9px;
}

.floating-steps div {
  padding: 13px 15px;
  border-radius: 16px;
  font-size: 0.94rem;
}

/* Orçamento mais compacto */
.budget-grid {
  gap: 20px;
}

.budget-form {
  padding: 18px;
  border-radius: 24px;
  gap: 10px;
}

.budget-form input,
.budget-form select,
.budget-form textarea {
  padding: 11px 12px;
  border-radius: 14px;
}

.budget-form textarea {
  min-height: 76px;
}

/* Botões com linguagem mais limpa */
.btn {
  white-space: nowrap;
}

.compact-budget .btn,
.price-card .btn,
.compact-final .btn {
  width: fit-content;
}

/* Melhor leitura sobre fundos */
.showroom-3d-card::before {
  background:
    linear-gradient(180deg, rgba(15,23,42,0.14), rgba(15,23,42,0.72)),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.22), transparent 34%);
}

/* Menos repetição visual no mobile */
@media (max-width: 980px) {
  .compact-hero,
  .compact-showroom,
  .compact-services,
  .compact-pricing,
  .managed-site,
  .compact-budget,
  .compact-final {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .showroom-3d-track.expanded-grid .showroom-3d-card,
  .showroom-3d-track.expanded-grid .showroom-3d-card.active {
    min-height: 225px;
  }
}

/* =========================================================
   FIM — FASE 35 / ETAPA 35I
   ========================================================= */

/* =========================================================
   FASE 35 / ETAPA 35P
   Refino visual e comercial pós-publicação
   ========================================================= */

/* Reforço de legibilidade e sensação premium */
.compact-hero h1,
.packages-hero h1 {
  max-width: 820px;
}

.compact-hero .lead,
.packages-hero .lead {
  color: rgba(15, 23, 42, 0.76);
}

/* CTAs mais elegantes e diretos */
.hero-actions .btn,
.price-card .btn,
.budget-form .btn,
.compact-final .btn {
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Menos peso visual nos cards */
.price-card,
.compact-sector-grid article,
.budget-form {
  backdrop-filter: blur(10px);
}

/* Pacote recomendado com destaque mais comercial */
.price-card.featured::before {
  content: "Mais escolhido";
  position: absolute;
  top: -12px;
  right: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(37,99,235,0.22);
}

/* Showroom com sensação de vitrine comercial */
.showroom-3d-shell {
  margin-top: 8px;
}

.showroom-3d-card strong {
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}

/* Frase final mais forte */
.compact-final h2 {
  letter-spacing: -0.035em;
}

/* Ajuste de espaçamento do orçamento */
.compact-budget .section-head,
.compact-budget h2 {
  max-width: 620px;
}

/* Responsivo: botões não estouram largura */
@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .compact-final .btn,
  .budget-form .btn {
    width: 100%;
  }

  .price-card.featured::before {
    right: 16px;
  }
}

/* =========================================================
   FIM — FASE 35 / ETAPA 35P
   ========================================================= */

/* =========================================================
   FASE 36 / ETAPA 36C
   Primeira rodada de ajustes finos visuais pós-auditoria
   ========================================================= */

/* Compactação geral adicional */
.compact-hero {
  padding-top: 44px;
  padding-bottom: 26px;
}

.quick-nav-section {
  padding-bottom: 12px;
}

.compact-showroom,
.compact-services,
.compact-pricing,
.managed-site,
.compact-budget {
  padding-top: 36px;
  padding-bottom: 36px;
}

/* Melhor hierarquia do hero */
.compact-hero .kicker,
.packages-hero .kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.compact-hero h1 {
  max-width: 760px;
}

.compact-hero .lead {
  max-width: 590px;
}

/* Melhor card BT */
.tech-float-card {
  box-shadow:
    0 28px 80px rgba(15,23,42,0.24),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.tech-float-card h2 {
  line-height: 1.08;
}

/* Showroom mais atrativo */
.showroom-3d-shell.expanded {
  margin-top: 4px;
}

.showroom-3d-track.expanded-grid {
  gap: 14px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card {
  border-radius: 26px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card.active {
  box-shadow:
    0 30px 80px rgba(37,99,235,0.22),
    0 16px 50px rgba(15,23,42,0.20);
}

.showroom-3d-track.expanded-grid .showroom-3d-card.active::after {
  content: "Ver modelo";
}

/* Setas mais discretas */
.carousel-arrow {
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
  background: rgba(255,255,255,0.82);
}

/* Pacotes mais claros */
.price-card h3 {
  color: #0f172a;
}

.price-card.featured h3 {
  color: #2563eb;
}

.price-card .badge {
  width: fit-content;
}

.price-card ul {
  line-height: 1.45;
}

/* Destacar mensalidade sem poluir */
.price-card p {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
}

/* Site gerenciado mais leve */
.managed-site .lead {
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: 20px;
  padding: 18px;
}

/* Orçamento mais objetivo */
.compact-budget .budget-form p {
  margin: 0;
}

.compact-budget .budget-form p + p {
  color: rgba(15,23,42,0.72);
}

/* Melhorias mobile */
@media (max-width: 640px) {
  .compact-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .tech-float-card {
    padding: 20px;
    border-radius: 24px;
  }

  .showroom-3d-track.expanded-grid {
    grid-template-columns: repeat(8, minmax(230px, 82vw));
    padding-left: 2px;
    padding-right: 2px;
  }

  .price-card {
    padding: 18px;
  }

  .managed-site .lead {
    padding: 15px;
  }
}

/* =========================================================
   FIM — FASE 36 / ETAPA 36C
   ========================================================= */

/* =========================================================
   FASE 36 / ETAPA 36F
   Ajustes guiados por validação visual real
   Objetivo: reduzir rolagem, melhorar mobile e reforçar vitrine.
   ========================================================= */

/* Redução final de rolagem sem perder impacto */
.compact-hero {
  padding-top: 38px;
  padding-bottom: 22px;
}

.compact-showroom,
.compact-services,
.compact-pricing,
.managed-site,
.compact-budget {
  padding-top: 30px;
  padding-bottom: 30px;
}

.compact-final {
  padding-top: 38px;
  padding-bottom: 38px;
}

/* Hero mais direto */
.compact-hero h1 {
  max-width: 720px;
  line-height: 0.96;
}

.compact-hero .lead {
  max-width: 560px;
  margin-top: 12px;
}

/* Menos poluição nos pills */
.hero-pills {
  margin-top: 12px;
}

.hero-pills span {
  padding: 6px 10px;
  font-size: 0.76rem;
}

/* Navegação rápida mais elegante */
.quick-nav-strip {
  max-width: 860px;
  margin: 0 auto;
  justify-content: center;
}

/* Showroom como vitrine principal */
.compact-showroom .section-head.compact {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.showroom-3d-track.expanded-grid {
  padding-top: 6px;
  padding-bottom: 14px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card {
  min-height: 220px;
}

.showroom-3d-track.expanded-grid .showroom-3d-card.active {
  min-height: 248px;
}

/* Melhor contraste dos títulos nos cards */
.showroom-3d-card span {
  background: rgba(255,255,255,0.24);
  backdrop-filter: blur(8px);
}

.showroom-3d-card strong {
  font-size: 0.96rem;
  line-height: 1.32;
}

/* Setores/tags menos chamativos */
.sector-tags {
  opacity: 0.92;
}

.sector-tags span {
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,23,42,0.07);
}

/* Cards de setores mais leves */
.compact-sector-grid article {
  box-shadow: 0 12px 34px rgba(15,23,42,0.055);
}

/* Pacotes com leitura mais rápida */
.pricing-grid.compact {
  gap: 14px;
}

.price-card {
  padding: 18px;
}

.price-card h3 {
  margin-bottom: 2px;
}

.price-card ul {
  padding-left: 16px;
}

.price-card li {
  font-size: 0.88rem;
}

/* Orçamento com cara de bloco de ação */
.compact-budget .budget-form {
  border-color: rgba(37,99,235,0.16);
}

.compact-budget .budget-form .btn {
  margin-top: 4px;
}

/* Rodapé/CTA final mais compacto */
.compact-final h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: prioridade total para não quebrar */
@media (max-width: 760px) {
  .compact-hero {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .compact-hero h1 {
    line-height: 1.02;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-pills span {
    justify-content: center;
    text-align: center;
  }

  .quick-nav-strip {
    justify-content: flex-start;
  }

  .showroom-3d-track.expanded-grid {
    grid-template-columns: repeat(8, minmax(220px, 84vw));
  }

  .showroom-3d-track.expanded-grid .showroom-3d-card,
  .showroom-3d-track.expanded-grid .showroom-3d-card.active {
    min-height: 220px;
  }

  .pricing-grid.compact {
    gap: 12px;
  }

  .price-card h3 {
    font-size: 2rem;
  }
}

/* =========================================================
   FIM — FASE 36 / ETAPA 36F
   ========================================================= */

/* === FASE 39A — CARROSSEL ROLETA MODELOS === */
.bruma-roleta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bruma-roleta-section::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto -10%;
  height: 62%;
  background:
    radial-gradient(circle at 50% 45%, rgba(64, 210, 255, .20), transparent 42%),
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, .18), transparent 36%),
    radial-gradient(circle at 70% 42%, rgba(34, 197, 94, .14), transparent 34%);
  filter: blur(18px);
  opacity: .95;
  pointer-events: none;
  z-index: -1;
}

.bruma-roleta-viewport {
  position: relative;
  width: 100%;
  min-height: clamp(430px, 54vw, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
  perspective-origin: 50% 44%;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px) 0 clamp(52px, 7vw, 86px);
  margin-top: clamp(18px, 3vw, 34px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.bruma-roleta-track {
  --angle: 45deg;
  --radius: clamp(290px, 45vw, 590px);
  position: relative;
  width: min(92vw, 980px);
  height: clamp(360px, 45vw, 540px);
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(.2, .78, .18, 1);
  will-change: transform;
}

.bruma-roleta-card {
  min-height: clamp(300px, 38vw, 450px);
  transform:
    translate(-50%, -50%)
    rotateY(calc(var(--slot, 0) * var(--angle)))
    translateZ(var(--radius))
    scale(.74);
  transform-style: preserve-3d;
  transition:
    transform .9s cubic-bezier(.2, .78, .18, 1),
    opacity .55s ease,
    filter .55s ease,
    box-shadow .55s ease;
  opacity: .42;
  filter: saturate(.72) brightness(.78) blur(.1px);
  z-index: 1;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.bruma-roleta-card.is-active {
  opacity: 1;
  filter: saturate(1.12) brightness(1.05);
  z-index: 5;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .36),
    0 0 0 1px rgba(255,255,255,.12),
    0 0 48px rgba(64, 210, 255, .18);
}

.bruma-roleta-card.is-near {
  opacity: .72;
  filter: saturate(.9) brightness(.9);
  z-index: 3;
}

.bruma-roleta-controls {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 3vw, 28px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 12;
}

.bruma-roleta-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(7, 18, 32, .72);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.bruma-roleta-btn:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(14, 35, 58, .88);
  border-color: rgba(96, 220, 255, .55);
}

.bruma-roleta-dots {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7, 18, 32, .54);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.bruma-roleta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,.34);
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.bruma-roleta-dot.is-active {
  width: 24px;
  background: linear-gradient(90deg, #60dcff, #31d07f);
  transform: scaleY(1.15);
}

.bruma-roleta-hint {
  position: absolute;
  left: 50%;
  top: clamp(10px, 2vw, 22px);
  transform: translateX(-50%);
  z-index: 10;
  font-size: clamp(.78rem, 1.2vw, .92rem);
  color: rgba(255,255,255,.74);
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(7,18,32,.42);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

@media (max-width: 780px) {
  .bruma-roleta-viewport {
    min-height: 500px;
    perspective: 1100px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .bruma-roleta-track {
    --radius: clamp(210px, 68vw, 330px);
    height: 410px;
  }

  .bruma-roleta-card {
    min-height: 355px;
  }

  .bruma-roleta-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bruma-roleta-track,
  .bruma-roleta-card,
  .bruma-roleta-btn,
  .bruma-roleta-dot {
  }
}
/* === FIM FASE 39A — CARROSSEL ROLETA MODELOS === */



/* === INICIO IMPORTADO F42/42C — COMPONENTE 05 HERO COMERCIAL LOCAL === */
/* COMPONENTE 05 — HERO COMERCIAL LOCAL BRUMATECH */

.bt-hero-local {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 20px;
  background:
    radial-gradient(circle at 10% 20%, rgba(29, 185, 129, 0.20), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(70, 130, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #06131f 0%, #0a1f2d 48%, #07151f 100%);
  color: #ffffff;
  isolation: isolate;
}

.bt-hero-local,
.bt-hero-local * {
  box-sizing: border-box;
}

.bt-hero-local__bg-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
  z-index: -1;
  animation: btHeroFloat 8s ease-in-out infinite;
}

.bt-hero-local__bg-glow--one {
  left: -120px;
  top: 60px;
  background: rgba(16, 210, 143, 0.28);
}

.bt-hero-local__bg-glow--two {
  right: -130px;
  bottom: 30px;
  background: rgba(80, 145, 255, 0.24);
  animation-delay: -3s;
}

.bt-hero-local__content {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
}

.bt-hero-local__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(122, 255, 206, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #bfffe6;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.bt-hero-local__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2df5a7;
  box-shadow: 0 0 18px rgba(45, 245, 167, 0.9);
}

.bt-hero-local__title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 5.4vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.bt-hero-local__subtitle {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.bt-hero-local__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.bt-hero-local__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.bt-hero-local__btn:hover,
.bt-hero-local__btn:focus-visible {
  transform: translateY(-3px);
}

.bt-hero-local__btn--primary {
  color: #052015;
  background: linear-gradient(135deg, #3dffb0, #9dffda);
  box-shadow: 0 18px 46px rgba(31, 255, 171, 0.24);
}

.bt-hero-local__btn--secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.08);
}

.bt-hero-local__btn--secondary:hover,
.bt-hero-local__btn--secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.bt-hero-local__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.bt-hero-local__trust-item {
  min-height: 104px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.bt-hero-local__trust-item strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 0.98rem;
}

.bt-hero-local__trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 1.45;
}

.bt-hero-local__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.bt-hero-local__device {
  width: min(465px, 100%);
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}

.bt-hero-local__device-bar {
  display: flex;
  gap: 7px;
  padding: 8px 8px 14px;
}

.bt-hero-local__device-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.bt-hero-local__device-screen {
  overflow: hidden;
  min-height: 410px;
  padding: 18px;
  border-radius: 23px;
  background:
    linear-gradient(135deg, rgba(10, 28, 43, 0.92), rgba(16, 51, 66, 0.98)),
    radial-gradient(circle at 80% 10%, rgba(37, 255, 174, 0.22), transparent 28%);
}

.bt-hero-local__mock-header {
  width: 100%;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.bt-hero-local__mock-hero {
  height: 155px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(61, 255, 176, 0.38), rgba(81, 144, 255, 0.32)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.bt-hero-local__mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 16px;
}

.bt-hero-local__mock-grid span {
  height: 86px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
}

.bt-hero-local__mock-card {
  margin-top: 16px;
  padding: 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
}

.bt-hero-local__mock-card strong,
.bt-hero-local__mock-card small {
  display: block;
}

.bt-hero-local__mock-card strong {
  color: #ffffff;
  font-size: 1rem;
}

.bt-hero-local__mock-card small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
}

.bt-hero-local__floating-card {
  position: absolute;
  width: min(250px, 72vw);
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(6, 19, 31, 0.76);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: btHeroFloat 6s ease-in-out infinite;
}

.bt-hero-local__floating-card strong,
.bt-hero-local__floating-card span {
  display: block;
}

.bt-hero-local__floating-card strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.bt-hero-local__floating-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.4;
}

.bt-hero-local__floating-card--top {
  top: 42px;
  right: 0;
}

.bt-hero-local__floating-card--bottom {
  left: 0;
  bottom: 52px;
  animation-delay: -2.2s;
}

@keyframes btHeroFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 920px) {
  .bt-hero-local__content {
    grid-template-columns: 1fr;
  }

  .bt-hero-local__visual {
    min-height: 470px;
  }

  .bt-hero-local__trust {
    grid-template-columns: 1fr;
  }

  .bt-hero-local__title,
  .bt-hero-local__subtitle {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .bt-hero-local {
    padding: 58px 16px;
  }

  .bt-hero-local__actions {
    flex-direction: column;
  }

  .bt-hero-local__btn {
    width: 100%;
  }

  .bt-hero-local__visual {
    min-height: 430px;
  }

  .bt-hero-local__floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 14px;
  }

  .bt-hero-local__device {
    transform: none;
  }
}

/* FIM COMPONENTE 05 — HERO COMERCIAL LOCAL BRUMATECH */

/* === FIM IMPORTADO F42/42C — COMPONENTE 05 HERO COMERCIAL LOCAL === */

/* COMPONENTE 04 — CTA WHATSAPP / CONVERSAO BRUMATECH */
.bt-cta-whatsapp {
  position: relative;
  margin: clamp(2.5rem, 6vw, 5rem) auto;
  padding: 0 1rem;
}

.bt-cta-whatsapp__inner {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 197, 94, 0.18), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(56, 189, 248, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.bt-cta-whatsapp__inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: rotate(12deg);
  animation: btCtaShine 8s linear infinite;
  pointer-events: none;
}

.bt-cta-whatsapp__content,
.bt-cta-whatsapp__actions {
  position: relative;
  z-index: 1;
}

.bt-cta-whatsapp__eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(125, 211, 252, 0.30);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #bae6fd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bt-cta-whatsapp h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
}

.bt-cta-whatsapp p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: rgba(226, 232, 240, 0.92);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.bt-cta-whatsapp__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 220px;
}

.bt-cta-whatsapp__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.bt-cta-whatsapp__button:hover {
  transform: translateY(-2px);
}

.bt-cta-whatsapp__button--primary {
  color: #052e16;
  background: linear-gradient(135deg, #86efac, #22c55e);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.28);
}

.bt-cta-whatsapp__button--ghost {
  color: #e0f2fe;
  border: 1px solid rgba(186, 230, 253, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.bt-cta-whatsapp__button--ghost:hover {
  border-color: rgba(186, 230, 253, 0.65);
  background: rgba(255, 255, 255, 0.10);
}

@keyframes btCtaShine {
  0% {
    transform: translateX(-35%) rotate(12deg);
  }
  100% {
    transform: translateX(35%) rotate(12deg);
  }
}

@media (max-width: 820px) {
  .bt-cta-whatsapp__inner {
    grid-template-columns: 1fr;
  }

  .bt-cta-whatsapp__actions {
    width: 100%;
  }

  .bt-cta-whatsapp__button {
    width: 100%;
  }
}
/* FIM COMPONENTE 04 — CTA WHATSAPP / CONVERSAO BRUMATECH */
/* COMPONENTE 06 — BENEFICIOS / DIFERENCIAIS BRUMATECH */
.bt-benefits-local {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 1rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(34, 197, 94, 0.10), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(56, 189, 248, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.bt-benefits-local__inner {
max-width: 1180px;
margin: 0 auto;
}

.bt-benefits-local__header {
max-width: 820px;
margin: 0 auto clamp(1.8rem, 4vw, 3rem);
text-align: center;
}

.bt-benefits-local__eyebrow {
display: inline-flex;
margin-bottom: 0.8rem;
padding: 0.42rem 0.78rem;
border-radius: 999px;
background: rgba(14, 165, 233, 0.10);
color: #0369a1;
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
}

.bt-benefits-local h2 {
margin: 0;
color: #0f172a;
font-size: clamp(1.8rem, 4vw, 3rem);
line-height: 1.08;
}

.bt-benefits-local__header p {
margin: 1rem auto 0;
color: #475569;
font-size: clamp(1rem, 2vw, 1.15rem);
line-height: 1.75;
}

.bt-benefits-local__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1rem;
}

.bt-benefits-local__card {
position: relative;
overflow: hidden;
min-height: 230px;
padding: 1.35rem;
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: 24px;
background: rgba(255, 255, 255, 0.86);
box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bt-benefits-local__card::before {
content: "";
position: absolute;
inset: auto -20% -30% 25%;
height: 110px;
background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 65%);
pointer-events: none;
}

.bt-benefits-local__card:hover {
transform: translateY(-4px);
border-color: rgba(14, 165, 233, 0.22);
box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.bt-benefits-local__icon {
display: inline-flex;
width: 44px;
height: 44px;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
border-radius: 16px;
background: linear-gradient(135deg, #0ea5e9, #22c55e);
color: #ffffff;
font-size: 0.86rem;
font-weight: 900;
}

.bt-benefits-local__card h3 {
margin: 0 0 0.65rem;
color: #0f172a;
font-size: 1.08rem;
}

.bt-benefits-local__card p {
margin: 0;
color: #475569;
font-size: 0.98rem;
line-height: 1.65;
}

@media (max-width: 980px) {
.bt-benefits-local__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 620px) {
.bt-benefits-local__grid {
grid-template-columns: 1fr;
}

.bt-benefits-local__card {
min-height: auto;
}
}
/* FIM COMPONENTE 06 — BENEFICIOS / DIFERENCIAIS BRUMATECH */
/* COMPONENTE 07 — COMO FUNCIONA / ETAPAS DO ATENDIMENTO BRUMATECH */
.bt-process-local {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 1rem;
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.bt-process-local__inner {
max-width: 1120px;
margin: 0 auto;
}

.bt-process-local__header {
max-width: 820px;
margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.bt-process-local__eyebrow {
display: inline-flex;
margin-bottom: 0.8rem;
padding: 0.42rem 0.78rem;
border-radius: 999px;
background: rgba(34, 197, 94, 0.10);
color: #15803d;
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
}

.bt-process-local h2 {
margin: 0;
color: #0f172a;
font-size: clamp(1.8rem, 4vw, 3rem);
line-height: 1.08;
}

.bt-process-local__header p {
margin: 1rem 0 0;
color: #475569;
font-size: clamp(1rem, 2vw, 1.15rem);
line-height: 1.75;
}

.bt-process-local__timeline {
position: relative;
display: grid;
gap: 1rem;
}

.bt-process-local__timeline::before {
content: "";
position: absolute;
left: 27px;
top: 26px;
bottom: 26px;
width: 2px;
background: linear-gradient(180deg, #0ea5e9, #22c55e);
opacity: 0.35;
}

.bt-process-local__step {
position: relative;
display: grid;
grid-template-columns: 56px minmax(0, 1fr);
gap: 1rem;
padding: 1.15rem;
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: 24px;
background: rgba(255, 255, 255, 0.92);
box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.bt-process-local__number {
position: relative;
z-index: 1;
display: inline-flex;
width: 56px;
height: 56px;
align-items: center;
justify-content: center;
border-radius: 18px;
background: linear-gradient(135deg, #0ea5e9, #22c55e);
color: #ffffff;
font-size: 0.9rem;
font-weight: 900;
box-shadow: 0 14px 28px rgba(14, 165, 233, 0.22);
}

.bt-process-local__step h3 {
margin: 0 0 0.45rem;
color: #0f172a;
font-size: 1.08rem;
}

.bt-process-local__step p {
margin: 0;
color: #475569;
font-size: 0.98rem;
line-height: 1.65;
}

@media (max-width: 640px) {
.bt-process-local__timeline::before {
display: none;
}

.bt-process-local__step {
grid-template-columns: 1fr;
}

.bt-process-local__number {
width: 48px;
height: 48px;
}
}
/* FIM COMPONENTE 07 — COMO FUNCIONA / ETAPAS DO ATENDIMENTO BRUMATECH */
/* COMPONENTE 08 — PACOTES / OFERTAS COMERCIAIS BRUMATECH */
.bt-packages-local {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 1rem;
  background:
    radial-gradient(circle at 15% 12%, rgba(14, 165, 233, 0.10), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(34, 197, 94, 0.10), transparent 30%),
    #ffffff;
}

.bt-packages-local__inner {
max-width: 1180px;
margin: 0 auto;
}

.bt-packages-local__header {
max-width: 850px;
margin: 0 auto clamp(2rem, 5vw, 3.5rem);
text-align: center;
}

.bt-packages-local__eyebrow {
display: inline-flex;
margin-bottom: 0.8rem;
padding: 0.42rem 0.78rem;
border-radius: 999px;
background: rgba(14, 165, 233, 0.10);
color: #0369a1;
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.05em;
text-transform: uppercase;
}

.bt-packages-local h2 {
margin: 0;
color: #0f172a;
font-size: clamp(1.8rem, 4vw, 3rem);
line-height: 1.08;
}

.bt-packages-local__header p {
margin: 1rem auto 0;
color: #475569;
font-size: clamp(1rem, 2vw, 1.15rem);
line-height: 1.75;
}

.bt-packages-local__grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1rem;
align-items: stretch;
}

.bt-packages-local__card {
position: relative;
display: flex;
min-height: 390px;
flex-direction: column;
padding: 1.35rem;
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: 26px;
background: rgba(255, 255, 255, 0.92);
box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bt-packages-local__card:hover {
transform: translateY(-4px);
border-color: rgba(14, 165, 233, 0.22);
box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.bt-packages-local__card--featured {
border-color: rgba(34, 197, 94, 0.30);
background:
linear-gradient(180deg, rgba(240, 253, 244, 0.78), rgba(255, 255, 255, 0.96));
}

.bt-packages-local__tag {
display: inline-flex;
width: fit-content;
margin-bottom: 1rem;
padding: 0.36rem 0.72rem;
border-radius: 999px;
background: rgba(15, 23, 42, 0.06);
color: #0f172a;
font-size: 0.76rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.04em;
}

.bt-packages-local__card--featured .bt-packages-local__tag {
background: rgba(34, 197, 94, 0.14);
color: #166534;
}

.bt-packages-local__card h3 {
margin: 0 0 0.7rem;
color: #0f172a;
font-size: 1.35rem;
}

.bt-packages-local__card p {
margin: 0;
color: #475569;
font-size: 0.98rem;
line-height: 1.65;
}

.bt-packages-local__card ul {
display: grid;
gap: 0.55rem;
margin: 1.2rem 0 1.4rem;
padding: 0;
list-style: none;
}

.bt-packages-local__card li {
position: relative;
padding-left: 1.35rem;
color: #334155;
font-size: 0.95rem;
line-height: 1.45;
}

.bt-packages-local__card li::before {
content: "✓";
position: absolute;
left: 0;
top: 0;
color: #16a34a;
font-weight: 900;
}

.bt-packages-local__link {
display: inline-flex;
justify-content: center;
align-items: center;
min-height: 44px;
margin-top: auto;
padding: 0.75rem 1rem;
border-radius: 999px;
background: #0f172a;
color: #ffffff;
font-weight: 800;
text-decoration: none;
transition: transform 180ms ease, background 180ms ease;
}

.bt-packages-local__link:hover {
transform: translateY(-2px);
background: #0369a1;
}

.bt-packages-local__footer {
display: flex;
gap: 1rem;
align-items: center;
justify-content: space-between;
margin-top: 1.25rem;
padding: 1.2rem;
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: 24px;
background: #f8fafc;
}

.bt-packages-local__footer p {
margin: 0;
color: #475569;
line-height: 1.6;
}

.bt-packages-local__cta {
display: inline-flex;
flex-shrink: 0;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0.8rem 1.1rem;
border-radius: 999px;
background: linear-gradient(135deg, #86efac, #22c55e);
color: #052e16;
font-weight: 900;
text-decoration: none;
box-shadow: 0 16px 32px rgba(34, 197, 94, 0.22);
}

@media (max-width: 980px) {
.bt-packages-local__grid {
grid-template-columns: 1fr;
}

.bt-packages-local__card {
min-height: auto;
}

.bt-packages-local__footer {
flex-direction: column;
align-items: flex-start;
}

.bt-packages-local__cta {
width: 100%;
}
}
/* FIM COMPONENTE 08 — PACOTES / OFERTAS COMERCIAIS BRUMATECH */


/* FRENTE 47 / ETAPA 47A.1 — Imagem principal da Hero BrumaTECH */
.bt-hero-local,
.hero,
.home-hero,
.bt-hero {
  background-image:
    linear-gradient(90deg, rgba(3, 8, 18, 0.88) 0%, rgba(3, 8, 18, 0.60) 42%, rgba(3, 8, 18, 0.22) 100%),
    url("/assets/img/hero/brumatech-hero-codex.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}




/* FRENTE 47 / ETAPA 47A.12 — Segunda seção sem imagem repetida, com fundo cinza */
section.bt-placeholder-gray-section {
  background: #d9dde1 !important;
  background-image: none !important;
}

/* remove fundo repetido apenas dentro da segunda seção marcada */
section.bt-placeholder-gray-section,
section.bt-placeholder-gray-section .hero,
section.bt-placeholder-gray-section .home-hero,
section.bt-placeholder-gray-section .bt-hero,
section.bt-placeholder-gray-section .bt-hero-local {
  background-image: none !important;
  background-color: #d9dde1 !important;
}

/* pseudo-elementos comuns que podem estar carregando a imagem */
section.bt-placeholder-gray-section::before,
section.bt-placeholder-gray-section::after,
section.bt-placeholder-gray-section .hero::before,
section.bt-placeholder-gray-section .hero::after,
section.bt-placeholder-gray-section .home-hero::before,
section.bt-placeholder-gray-section .home-hero::after,
section.bt-placeholder-gray-section .bt-hero::before,
section.bt-placeholder-gray-section .bt-hero::after,
section.bt-placeholder-gray-section .bt-hero-local::before,
section.bt-placeholder-gray-section .bt-hero-local::after {
  background-image: none !important;
}

/* garante um placeholder limpo e neutro */
section.bt-placeholder-gray-section {
  min-height: 520px !important;
}


/* FRENTE 47 / ETAPA 47A.13 — Organização premium dos textos da Hero */
.bt-hero-text-left-premium {
  position: relative;
}

/* Reorganiza o conteúdo textual da primeira Hero para o lado esquerdo */
.bt-hero-text-left-premium .bt-hero-local__content,
.bt-hero-text-left-premium .bt-hero-content,
.bt-hero-text-left-premium .hero-content,
.bt-hero-text-left-premium .home-hero-content,
.bt-hero-text-left-premium .container,
.bt-hero-text-left-premium .wrapper {
  margin-left: 6% !important;
  margin-right: auto !important;
  max-width: 620px !important;
  text-align: left !important;
  align-items: flex-start !important;
}

/* Título principal: muda lado e cor, mas não aumenta tamanho */
.bt-hero-text-left-premium h1.bt-hero-title-bronze,
.bt-hero-text-left-premium .bt-hero-title-bronze {
  color: #c49a4a !important;
  text-align: left !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.58) !important;
  margin-top: 1.1rem !important;
  margin-bottom: 1.2rem !important;
  max-width: 620px !important;
}

/* Remove fundos azuis/brancos internos do título, se houver spans */
.bt-hero-text-left-premium h1.bt-hero-title-bronze span,
.bt-hero-text-left-premium h1.bt-hero-title-bronze strong,
.bt-hero-text-left-premium h1.bt-hero-title-bronze mark,
.bt-hero-text-left-premium h1.bt-hero-title-bronze em {
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Selo BT — Presença Digital Estratégica: fica acima do título e sem sobreposição */
.bt-hero-text-left-premium .bt-hero-local__eyebrow,
.bt-hero-text-left-premium .eyebrow,
.bt-hero-text-left-premium .badge,
.bt-hero-text-left-premium .pill {
  margin-bottom: 1.15rem !important;
  color: #d7b36a !important;
  border-color: rgba(196, 154, 74, 0.42) !important;
  background: rgba(8, 18, 24, 0.54) !important;
}

/* Textos secundários: marrom/dourado, maiores e mais legíveis */
.bt-hero-text-left-premium p,
.bt-hero-text-left-premium .bt-hero-local__lead,
.bt-hero-text-left-premium .lead,
.bt-hero-text-left-premium .subtitle {
  color: #d7b36a !important;
  font-size: clamp(1rem, 1.15vw, 1.18rem) !important;
  line-height: 1.58 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55) !important;
  max-width: 620px !important;
}

/* Lista de serviços: mais distribuída e legível */
.bt-hero-text-left-premium .bt-hero-local__features,
.bt-hero-text-left-premium .features,
.bt-hero-text-left-premium .tags,
.bt-hero-text-left-premium ul {
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 0.75rem !important;
  color: #d7b36a !important;
  font-size: 1rem !important;
}

/* Botões/links inferiores: mantidos à esquerda com respiro */
.bt-hero-text-left-premium .bt-hero-local__actions,
.bt-hero-text-left-premium .actions,
.bt-hero-text-left-premium .buttons,
.bt-hero-text-left-premium .cta-group {
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 0.85rem !important;
  margin-top: 1.25rem !important;
}

/* Frase estratégica inferior: mais legível e em tom premium */
.bt-hero-text-left-premium small,
.bt-hero-text-left-premium .note,
.bt-hero-text-left-premium .microcopy {
  color: #b8863b !important;
  font-size: 0.98rem !important;
  line-height: 1.45 !important;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.55) !important;
}

/* Evita que o conteúdo invada demais telas menores */
@media (max-width: 980px) {
  .bt-hero-text-left-premium .bt-hero-local__content,
  .bt-hero-text-left-premium .bt-hero-content,
  .bt-hero-text-left-premium .hero-content,
  .bt-hero-text-left-premium .home-hero-content,
  .bt-hero-text-left-premium .container,
  .bt-hero-text-left-premium .wrapper {
    margin-left: 5% !important;
    max-width: 88vw !important;
  }

  .bt-hero-text-left-premium h1.bt-hero-title-bronze,
  .bt-hero-text-left-premium .bt-hero-title-bronze {
    max-width: 88vw !important;
  }
}




/* FRENTE 47 / ETAPA 47B.1 — Remove nuvem fantasma do Showroom */
section.bt-showroom-bg-techdesk {
  background-image:
    linear-gradient(180deg, rgba(10, 16, 24, 0.18) 0%, rgba(10, 16, 24, 0.10) 38%, rgba(10, 16, 24, 0.16) 100%),
    url("/assets/img/showroom/brumatech-showroom-bg-techdesk.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

section.bt-showroom-bg-techdesk::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

section.bt-showroom-bg-techdesk::after {
  background: none !important;
}

section.bt-showroom-bg-techdesk > * {
  position: relative;
  z-index: 1;
}



/* FRENTE 47 / ETAPA 47B.2 — Textos premium do Showroom à esquerda */
section.bt-showroom-text-left-premium {
  position: relative;
}

/* Move somente o cabeçalho textual do Showroom para a esquerda */
section.bt-showroom-text-left-premium .section-header,
section.bt-showroom-text-left-premium .showroom-header,
section.bt-showroom-text-left-premium .bt-section-header,
section.bt-showroom-text-left-premium header {
  max-width: 650px !important;
  margin-left: 6% !important;
  margin-right: auto !important;
  text-align: left !important;
  align-items: flex-start !important;
}

/* Selo Showroom BrumaTech */
section.bt-showroom-text-left-premium .badge,
section.bt-showroom-text-left-premium .pill,
section.bt-showroom-text-left-premium .eyebrow,
section.bt-showroom-text-left-premium small {
  color: #d7b36a !important;
  background: rgba(8, 18, 24, 0.52) !important;
  border-color: rgba(196, 154, 74, 0.45) !important;
  box-shadow: none !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55) !important;
}

/* Título principal do Showroom */
section.bt-showroom-text-left-premium .bt-showroom-title-bronze,
section.bt-showroom-text-left-premium h1,
section.bt-showroom-text-left-premium h2 {
  color: #c49a4a !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  text-align: left !important;
  max-width: 650px !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.62) !important;
  line-height: 1.08 !important;
}

/* Remove fundo azul/branco interno dos textos, caso existam spans */
section.bt-showroom-text-left-premium h1 span,
section.bt-showroom-text-left-premium h2 span,
section.bt-showroom-text-left-premium h1 strong,
section.bt-showroom-text-left-premium h2 strong,
section.bt-showroom-text-left-premium h1 mark,
section.bt-showroom-text-left-premium h2 mark {
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Subtítulo do Showroom */
section.bt-showroom-text-left-premium p,
section.bt-showroom-text-left-premium .section-subtitle,
section.bt-showroom-text-left-premium .subtitle,
section.bt-showroom-text-left-premium .lead {
  color: #d7b36a !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  text-align: left !important;
  max-width: 620px !important;
  font-size: clamp(1rem, 1.08vw, 1.16rem) !important;
  line-height: 1.55 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.58) !important;
}

/* Mantém o carrossel centralizado, sem deslocar os cards */
section.bt-showroom-text-left-premium .coverflow,
section.bt-showroom-text-left-premium .carousel,
section.bt-showroom-text-left-premium .showroom-carousel,
section.bt-showroom-text-left-premium .cards,
section.bt-showroom-text-left-premium .modelos,
section.bt-showroom-text-left-premium .tabs,
section.bt-showroom-text-left-premium nav {
  text-align: center;
}

/* Responsivo */
@media (max-width: 980px) {
  section.bt-showroom-text-left-premium .section-header,
  section.bt-showroom-text-left-premium .showroom-header,
  section.bt-showroom-text-left-premium .bt-section-header,
  section.bt-showroom-text-left-premium header {
    margin-left: 5% !important;
    max-width: 88vw !important;
  }

  section.bt-showroom-text-left-premium .bt-showroom-title-bronze,
  section.bt-showroom-text-left-premium h1,
  section.bt-showroom-text-left-premium h2,
  section.bt-showroom-text-left-premium p {
    max-width: 88vw !important;
  }
}
