@font-face {
  font-family: "SamsungSharp";
  src: url("fonts/samsungsharpsans-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  height: 56px;
  opacity: 0;
  animation: preloaderLogoIn 1.1s cubic-bezier(0.2, 0.8, 0.3, 1) forwards,
    preloaderPulse 1.6s ease-in-out infinite 1.1s;
}

/* ============ PRELOADER: LOGO VAZADA COM CONTORNO BRILHANTE ============ */
.preloader-logo-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  opacity: 0;
  animation: preloaderLogoIn 1s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}
.preloader-logo-glow {
  position: absolute;
  inset: -26px;
  -webkit-mask-image: url("https://i.supaimg.com/770984fb-f838-4d3c-9aa6-54f2368b85fe/763ac140-254d-495c-baf7-ba4725c67427.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("https://i.supaimg.com/770984fb-f838-4d3c-9aa6-54f2368b85fe/763ac140-254d-495c-baf7-ba4725c67427.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background: var(--accent-orange);
  filter: blur(20px);
  opacity: 0.4;
  animation: preloaderGlowPulse 1.8s ease-in-out infinite;
}
.preloader-logo-base {
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("https://i.supaimg.com/770984fb-f838-4d3c-9aa6-54f2368b85fe/763ac140-254d-495c-baf7-ba4725c67427.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background: rgba(255, 217, 61, 0.32);
}
.preloader-logo-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: url("https://i.supaimg.com/770984fb-f838-4d3c-9aa6-54f2368b85fe/763ac140-254d-495c-baf7-ba4725c67427.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("https://i.supaimg.com/770984fb-f838-4d3c-9aa6-54f2368b85fe/763ac140-254d-495c-baf7-ba4725c67427.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.preloader-logo-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260%;
  height: 260%;
  margin-top: -130%;
  margin-left: -130%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 250deg,
    var(--accent-magenta) 278deg,
    #fffbe0 300deg,
    var(--accent-orange) 322deg,
    transparent 355deg,
    transparent 360deg
  );
  animation: preloaderSpin 2.2s linear infinite;
}
@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloaderGlowPulse {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.65;
  }
}
.preloader-progress {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--text-muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  display: none;
}
@keyframes preloaderLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  60% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* ============ ENTRADA DO HERO ============ */
.hero-in {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-in-1 {
  animation-delay: 1.3s;
}
.hero-in-2 {
  animation-delay: 1.45s;
}
.hero-in-3 {
  animation-delay: 1.6s;
}
.hero-in-4 {
  animation-delay: 1.75s;
}
.hero-in-5 {
  animation-delay: 1.9s;
}
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  --bg-deep: #000;
  --bg-panel: #14121f;
  --bg-panel-2: #1b1830;
  --accent-magenta: #ffd93d;
  --accent-orange: #ffea00;
  --accent-violet: #ffd400;
  --text-light: #f5f3ff;
  --text-muted: #fff;
  --border-soft: rgba(245, 243, 255, 0.09);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-deep);
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
}
h1,
h2,
h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
  text-transform: uppercase;
}
.gradient-text {
  background: linear-gradient(
    100deg,
    var(--accent-magenta),
    var(--accent-orange) 55%,
    var(--accent-violet)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* NAV */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(11, 10, 20, 0.9),
    rgba(11, 10, 20, 0)
  );
  padding: 14px 0;
  transition: background 0.3s ease;
}
header.scrolled {
  background: rgba(11, 10, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
}
.logo span {
  color: var(--accent-magenta);
}
.logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-light);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(
    100deg,
    var(--accent-magenta),
    var(--accent-orange)
  );
  color: #140a10;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(233, 69, 132, 0.55);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-light);
}
.btn-ghost:hover {
  border-color: var(--accent-orange);
  box-shadow: none;
}
.btn-fatura-rapida {
  background: #0b0a12;
  border: 1.5px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: 10px 20px;
  font-size: 12.5px;
}
.btn-fatura-rapida:hover {
  background: rgba(255, 234, 0, 0.08);
  box-shadow: none;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .btn-fatura-rapida {
    padding: 8px 14px;
    font-size: 11.5px;
  }
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  max-height: 400px;
  opacity: 1;
  padding: 14px 32px 22px;
  background: rgba(11, 10, 20, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .btn {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

/* HERO (agora vive dentro da seção fixa do vídeo, como camada) */
.hero-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 32px;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  pointer-events: none;
}
.hero-text-col {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: calc((100% - 1240px + 64px) / 2);
}
.hero-layer h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.12;
  max-width: 760px;
}
.hero-layer p.sub {
  margin-top: 24px;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

@media (max-width: 1240px) {
  .hero-text-col {
    margin-left: 0;
  }
}

/* SCROLL VIDEO (hero + vídeo + cards, tudo na mesma seção fixa) */
.scroll-video-section {
  position: relative;
  height: 420vh; /* mais alto = cada fase (hero/video/cards) tem mais "tempo" de scroll */
}
.scroll-video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-deep);
}
.scroll-video-sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg-deep);
  z-index: 1;
}

/* painel que "sobe" por cima do vídeo fixo */
.scroll-cards-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 60px 80px 70px;
  background: linear-gradient(
    to top,
    rgba(11, 10, 20, 0.97) 40%,
    rgba(11, 10, 20, 0.85) 80%,
    transparent
  );
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  will-change: transform;
}
.scroll-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px;
  flex: 1;
  min-width: 220px;
  opacity: 0;
  transform: translateY(30px);
}
.scroll-cards-panel .btn {
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(30px);
}
.scroll-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: none;
  margin-bottom: 8px;
}
.scroll-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.scroll-card-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 22px;
}
.scroll-card-clickable {
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.scroll-card-clickable:hover {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .scroll-video-section {
    height: 340vh;
  }
  .hero-layer {
    padding: 0 24px;
  }
  .hero-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      100deg,
      rgba(11, 10, 20, 0.92) 0%,
      rgba(11, 10, 20, 0.75) 55%,
      rgba(11, 10, 20, 0.35) 85%
    );
    pointer-events: none;
  }
  .scroll-cards-panel {
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* LOGO STRIP: ver bloco de carrossel mais abaixo */

/* SECTIONS */
section {
  padding: 120px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 26px;
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-top: 14px;
}
.section-head p {
  color: var(--text-muted);
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--accent-magenta),
    var(--accent-violet)
  );
  margin-bottom: 22px;
}

/* FIBRA CARD (estilo Rockstar: texto sobreposto à imagem de fundo) */
.fibra-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.fibra-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.fibra-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(11, 10, 20, 0.94) 0%,
      rgba(11, 10, 20, 0.8) 32%,
      transparent 62%
    ),
    linear-gradient(to top, rgba(11, 10, 20, 0.9), transparent 50%);
  z-index: 1;
}
.fibra-card-overlay {
  position: relative;
  z-index: 2;
  padding: 56px;
  max-width: 620px;
}
.fibra-card-overlay h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  color: #ffffff;
}
.fibra-card-overlay p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 243, 255, 0.88);
  font-family: "Inter", sans-serif;
}

@media (max-width: 900px) {
  .fibra-card {
    min-height: 420px;
  }
  .fibra-card-overlay {
    padding: 32px;
  }
  .fibra-card-overlay p {
    font-size: 15px;
  }
}

/* CINEMATIC */
.cinematic {
  background: var(--bg-panel);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(233, 69, 132, 0.18),
    transparent 55%
  );
  pointer-events: none;
}
.cinematic-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(
    150deg,
    #2b1e4f,
    #7b5cff 40%,
    #e94584 80%,
    #ff8a5b
  );
}
.cinematic h2 {
  font-size: clamp(28px, 3.6vw, 44px);
}
.cinematic p {
  color: var(--text-muted);
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: "Anton", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
}
.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

/* PLAN TABS */
.plan-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
.plan-tabs {
  display: inline-flex;
  gap: 6px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 6px;
}
.plan-tab {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.plan-tab.active {
  background: linear-gradient(
    100deg,
    var(--accent-magenta),
    var(--accent-orange)
  );
  color: #140a10;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: linear-gradient(160deg, var(--bg-panel-2), var(--bg-panel));
  border-color: var(--accent-magenta);
  position: relative;
}
.price-card.featured::before {
  content: "MAIS POPULAR";
  position: absolute;
  top: -13px;
  left: 36px;
  background: linear-gradient(
    100deg,
    var(--accent-magenta),
    var(--accent-orange)
  );
  color: #140a10;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
}
.price-card h3 {
  color: #ffd60a;
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 18px;
  font-weight: 700;
}
.price-amount {
  font-family: "Anton", sans-serif;
  font-size: 44px;
  margin: 18px 0 6px;
}
.price-amount span {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}
.price-list {
  list-style: none;
  margin: 26px 0 30px;
  flex: 1;
}
.price-list li {
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 14px;
}

/* ===================================================
 CTA FINAL
=================================================== */

.cta-band {
  position: relative;
  overflow: hidden;

  padding: 80px 45px;

  border-radius: 26px;

  background: #111118;

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
}

.cta-band::before {
  content: "";

  position: absolute;

  top: -180px;
  left: 50%;

  transform: translateX(-50%);

  width: 700px;
  height: 700px;

  background: radial-gradient(
    circle,
    rgba(255, 214, 10, 0.18) 0%,
    rgba(255, 214, 10, 0.08) 35%,
    transparent 70%
  );

  pointer-events: none;
}

.cta-band h2 {
  position: relative;

  font-size: clamp(36px, 5vw, 60px);

  margin-bottom: 18px;

  z-index: 2;
}

.cta-band p {
  position: relative;

  max-width: 760px;

  margin: 0 auto 55px;

  color: var(--text-muted);

  font-size: 17px;

  line-height: 1.7;

  z-index: 2;
}

/* ========= FEATURES ========= */

.cta-features {
  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;

  z-index: 2;
}

.cta-feature {
  display: flex;

  flex-direction: column;

  align-items: center;

  transition: 0.35s ease;
}

.cta-icon {
  width: 105px;
  height: 105px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #181823;

  border: 1px solid rgba(255, 214, 10, 0.12);

  position: relative;

  transition: 0.35s ease;
}

.cta-icon::before {
  content: "";

  position: absolute;

  inset: -12px;

  border-radius: 50%;

  background: #ffd60a;

  filter: blur(28px);

  opacity: 0;

  transition: 0.35s ease;

  z-index: -1;
}

.cta-icon img {
  width: 48px;

  transition: 0.35s ease;
}

.cta-feature h3 {
  margin-top: 32px;
  font-family: "SamsungSharp", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: none;
  color: #fff;

  transition: 0.35s ease;
}

/* ========================= */
/* HOVER                     */
/* ========================= */

.cta-feature:hover {
  transform: translateY(-8px);
}

.cta-feature:hover .cta-icon {
  border-color: #ffd60a;

  box-shadow: 0 0 18px rgba(255, 214, 10, 0.25),
    0 0 45px rgba(255, 214, 10, 0.2);
}

.cta-feature:hover .cta-icon::before {
  opacity: 0.55;
}

.cta-feature:hover img {
  transform: scale(1.12);
}

.cta-feature:hover h3 {
  color: #ffd60a;
}

/* RESPONSIVO */

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

@media (max-width: 600px) {
  .cta-band {
    padding: 60px 24px;
  }

  .cta-features {
    grid-template-columns: 1fr;

    gap: 40px;
  }
}

/* FAIXA DE LOGOS (estática, sem animação) */
.logo-strip {
  padding: 28px 0;
  background: var(--text-light);
  border-top: 1px solid rgba(11, 10, 20, 0.08);
  border-bottom: 1px solid rgba(11, 10, 20, 0.08);
}
.logo-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 40px;
}
.logo-strip-row img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 1;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .logo-strip-row {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .logo-strip-row img {
    height: 30px;
    max-width: 110px;
  }
  .logo-strip-row {
    gap: 20px 28px;
  }
}

/* CARDS LADO A LADO (2ª Via da Fatura + Speed Test) */
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.speedtest-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
.speedtest-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 12px;
}
.speedtest-card h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 6px;
}
.speedtest-card p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
}
.speedtest-card .btn {
  margin-top: 24px;
}

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

/* MODAIS PEQUENOS (Quem Somos Nós / Contato) */
.modal-card-small {
  max-width: 520px;
  height: auto;
  max-height: 82vh;
}
.modal-body-text {
  padding: 8px 48px 48px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 48px 48px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-panel-2);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-item:hover {
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}
.contact-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .modal-card-small {
    max-height: 88vh;
  }
}

/* INSTAGRAM (rodapé) */
.instagram-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.instagram-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* BOTÃO FLUTUANTE DO WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}
@media (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

footer {
  border-top: 1px solid var(--border-soft);
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-grid h4 {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-grid a {
  display: block;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.85;
}
.footer-grid a:hover {
  color: var(--accent-orange);
}
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}
.footer-dev {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 11px;
  opacity: 0.55;
}
@media (max-width: 700px) {
  .footer-dev {
    position: static;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 10, 20, 0.8);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  width: 100%;
  max-width: 960px;
  height: 88vh;
  border-radius: 20px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
  transform: scale(0.92) translateY(24px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.35s ease;
}
.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: 1px solid var(--border-soft);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.modal-close:hover {
  background: var(--accent-magenta);
}

/* modal header (replaces old banner) */
.modal-header {
  padding: 48px 48px 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    rgba(233, 69, 132, 0.18),
    transparent 70%
  );
}
.modal-header img {
  height: 38px;
  margin-bottom: 18px;
}
.modal-header h2 {
  font-size: clamp(26px, 4vw, 36px);
}
.modal-header p {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 14px;
}

/* form */
#cadastroForm {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 48px 60px;
}
#cadastroForm label {
  font-weight: 600;
  margin-top: 18px;
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
#cadastroForm .linha-campos label {
  margin-top: 0;
}
#cadastroForm input,
#cadastroForm select {
  padding: 13px 14px;
  width: 100%;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background-color: var(--bg-panel-2);
  color: var(--text-light);
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
#cadastroForm select option {
  background: var(--bg-panel-2);
  color: var(--text-light);
}
#cadastroForm input::placeholder {
  color: var(--text-muted);
}
#cadastroForm input:focus,
#cadastroForm select:focus {
  outline: none;
  border-color: var(--accent-orange);
}
.linha-campos {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
.linha-campos > div {
  min-width: 0;
}

#cadastroForm button[type="submit"] {
  margin-top: 32px;
  padding: 16px;
  width: 100%;
  font-size: 16px;
}

#info-instalacao {
  background-color: rgba(255, 138, 91, 0.08);
  padding: 14px;
  border: 1px solid rgba(255, 138, 91, 0.25);
  border-radius: 10px;
  margin-top: 20px;
  white-space: pre-line;
  display: none;
  color: var(--text-light);
  font-size: 14px;
}

#tipoPlanoContainer {
  display: none;
  margin-top: 15px;
}

#parcelamentoContainer {
  display: flex !important;
  align-items: center;
  gap: 25px;
  margin-top: 12px;
}
#parcelamentoContainer label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
  text-transform: none;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 0;
}

#mapa {
  margin-top: 22px;
  height: 280px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  filter: invert(92%) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}

.loading-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.spinner {
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top: 3px solid #140a10;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#turboContainer {
  display: none;
  margin-top: 22px;
}
.turbo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 10px;
}
.turbo-card {
  background: var(--bg-panel-2);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border-soft);
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.15s ease;
}
.turbo-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-orange);
}
.turbo-card.selected {
  border-color: var(--accent-magenta);
  background: rgba(233, 69, 132, 0.12);
}
.turbo-card.incluso {
  box-shadow: 0 0 0 1px rgba(76, 191, 140, 0.4) inset;
}
.turbo-card.locked {
  opacity: 0.6;
  cursor: default;
}
.turbo-logo {
  width: 60px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.turbo-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.turbo-info {
  flex: 1;
  min-width: 0;
}
.turbo-nome {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
}
.turbo-valor {
  font-size: 13px;
  color: var(--text-muted);
}
.turbo-total {
  margin-top: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-align: right;
}

#mensagemPlano {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(76, 191, 140, 0.12);
  color: #8fe3bd;
  font-weight: 700;
  border: 1px solid rgba(76, 191, 140, 0.35);
  font-size: 14px;
}

#resumoMensalidade {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-panel-2);
  border: 1px solid var(--accent-orange);
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  color: var(--text-light);
  display: none;
}

.form-footnote {
  text-align: center;
  padding: 24px 0 44px;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 110px);
  }
  .tile:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .tile:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .tile:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .tile:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .tile:nth-child(5) {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .cinematic {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  #cadastroForm {
    padding: 30px 22px 40px;
  }
  .modal-header {
    padding: 36px 24px 24px;
  }
  .linha-campos {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  header .wrap {
    padding: 0 20px;
  }
  .logo-img {
    height: 26px;
    max-width: 100px;
  }
  header .btn {
    padding: 9px 16px;
    font-size: 12.5px;
  }
  .nav-actions {
    gap: 8px;
  }
  .menu-toggle {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .modal-card {
    height: 92vh;
    border-radius: 14px;
  }
  .modal-overlay {
    padding: 10px;
  }
  .hero-layer {
    align-items: center;
    padding: 0 24px;
  }
  .hero-text-col {
    max-width: 100%;
  }
  .hero-layer h1 {
    font-size: clamp(30px, 9vw, 40px);
  }
  .hero-layer p.sub {
    font-size: 14px;
    margin-top: 14px;
  }
  .hero-ctas {
    margin-top: 22px;
  }
}

/* ============ MODAL: 2ª VIA DA FATURA (boleto) ============ */
.boleto-body {
  max-width: 420px;
  margin: 0 auto;
  padding: 8px 40px 44px;
}
.boleto-campo {
  text-align: left;
  margin-bottom: 16px;
}
.boleto-campo label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.boleto-campo input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background-color: var(--bg-panel-2);
  color: var(--text-light);
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.boleto-campo input:focus {
  outline: none;
  border-color: var(--accent-orange);
}
.boleto-btn-consultar {
  width: 100%;
  margin-top: 4px;
}
.boleto-loading,
.boleto-erro {
  display: none;
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
}
.boleto-loading {
  color: var(--text-muted);
}
.boleto-erro {
  color: #f87171;
}
.boleto-resultado {
  display: none;
  margin-top: 26px;
  text-align: left;
}
.boleto-linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--text-light);
}
.boleto-linha span {
  color: var(--text-muted);
}
.boleto-pix {
  text-align: center;
  margin-top: 26px;
}
.boleto-pix h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text-light);
}
.boleto-pix img {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: none;
}
.boleto-copia {
  margin-top: 18px;
}
.boleto-copia textarea {
  width: 100%;
  height: 56px;
  resize: none;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background-color: var(--bg-panel-2);
  color: var(--text-light);
  padding: 10px;
  font-size: 12px;
  margin-bottom: 10px;
  font-family: "JetBrains Mono", monospace;
}
.boleto-btn-copiar {
  width: 100%;
}

/*=========================
    STATUS PAGAMENTO
==========================*/

.status-sucesso,
.status-dia {
  margin-top: 20px;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.status-sucesso {
  background: #166534;
}

.status-dia {
  background: #14532d;
}

.status-sucesso h2,
.status-dia h2 {
  margin: 10px 0;
  font-size: 20px;
}

.status-sucesso p,
.status-dia p {
  color: #dcfce7;
  font-size: 14px;
  line-height: 1.5;
}

.status-icone {
  font-size: 45px;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .boleto-body {
    padding: 8px 24px 32px;
  }
}

/* ============ MODAL: CONSULTE SUA REGIÃO ============ */
.regiao-body {
  max-width: 460px;
  margin: 0 auto;
  padding: 8px 40px 44px;
}
.regiao-campo {
  display: flex;
  gap: 10px;
}
.regiao-campo input {
  flex: 1;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background-color: var(--bg-panel-2);
  color: var(--text-light);
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.regiao-campo input:focus {
  outline: none;
  border-color: var(--accent-orange);
}
.regiao-btn-buscar {
  flex-shrink: 0;
  padding: 13px 22px;
}

.regiao-resultado {
  display: none;
  margin-top: 26px;
  text-align: left;
  background: var(--bg-panel-2);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px;
}
.regiao-resultado.show {
  display: block;
}
.regiao-resultado h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: none;
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.regiao-resultado p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.regiao-resultado strong {
  color: var(--text-light);
}
.regiao-planos-list {
  list-style: none;
  margin-bottom: 14px;
}
.regiao-planos-list li {
  padding: 9px 0;
  border-top: 1px solid var(--border-soft);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
}
.regiao-btn-imprimir {
  display: none;
  width: 100%;
  margin-top: 18px;
}

@media (max-width: 600px) {
  .regiao-body {
    padding: 8px 24px 32px;
  }
  .regiao-campo {
    flex-direction: column;
  }
}

/* ============ FAIXA DE NOMES DE REGIÃO (carrossel infinito) ============ */
.regiao-strip {
  background: var(--text-light);
  border-top: 1px solid rgba(11, 10, 20, 0.08);
  border-bottom: 1px solid rgba(11, 10, 20, 0.08);
  padding: 22px 0;
  overflow: hidden;
}
.regiao-strip .marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
}
.regiao-strip .marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: regiaoMarqueeScroll 40s linear infinite;
}
.regiao-strip .marquee:hover .marquee-track {
  animation-play-state: paused;
}
.regiao-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1.5px solid #0b0a14;
  border-radius: 100px;
  color: #0b0a14;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes regiaoMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.3333%);
  }
}
@media (max-width: 600px) {
  .regiao-pill {
    padding: 8px 16px;
    font-size: 12.5px;
  }
  .regiao-strip {
    padding: 16px 0;
  }
}

/* ============ MODAL: TESTE DE VELOCIDADE ============ */

.speed-body {
  background: #fff;
  width: 100%;
  height: calc(100% - 90px);
  overflow: hidden;
}

.speed-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.speed-modal-card {
  background: #fff;
  max-width: 1100px;
  height: 85vh;
}

@media (max-width: 600px) {
  .speed-modal-card {
    height: 90vh;
  }
}

.speed-loading {
  position: absolute;
  inset: 0;

  background: #050505;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  z-index: 5;
}

.speed-loading img {
  width: 130px;

  animation: pulseLogo 1.5s infinite;
}

.speed-loading h3 {
  margin-top: 25px;

  color: white;

  font-family: Inter;
}

.speed-loader {
  width: 45px;
  height: 45px;

  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: white;

  border-radius: 50%;

  animation: spin 0.8s linear infinite;

  margin-top: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseLogo {
  50% {
    transform: scale(1.08);
  }
}

/* ==========================================
 ANIMAÇÃO DOS CARDS DA CTA
========================================== */

.cta-feature {
  opacity: 0;

  transform: translateY(35px);
}

.cta-feature.visible {
  opacity: 1;

  transform: translateY(0);
}

.cta-feature {
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease;
}

.cta-feature:nth-child(1) {
  transition-delay: 0.1s;
}

.cta-feature:nth-child(2) {
  transition-delay: 0.25s;
}

.cta-feature:nth-child(3) {
  transition-delay: 0.4s;
}

.cta-feature:nth-child(4) {
  transition-delay: 0.55s;
}

.price-amount {
  font-family: "SamsungSharp", sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

/* ============ FOOTER (estilo Rockstar) ============ */
.footer-logo-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.footer-logo-row img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.footer-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  padding: 14px 28px;
  margin: 0 auto 56px;
  max-width: 780px;
  width: fit-content;
}
.footer-band-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 214, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-band-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer-band-text {
  flex: none;
}
.footer-band-text p {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.footer-band-hours {
  display: flex;
  gap: 20px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  flex-shrink: 0;
  padding-left: 20px;
  border-left: 1px solid var(--border-soft);
}

.footer-social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 44px 0;
}
.footer-social-row a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.footer-social-row a:hover {
  border-color: var(--accent-orange);
  transform: translateY(-3px);
}
.footer-social-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-curriculo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto 44px;
  transition: transform 0.2s ease;
}
.footer-curriculo-link:hover {
  transform: translateY(-3px);
}
.footer-curriculo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}
.footer-curriculo-link:hover .footer-curriculo-icon {
  border-color: var(--accent-orange);
}
.footer-curriculo-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.footer-curriculo-texto {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .footer-band {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    border-radius: 24px;
    width: auto;
  }
  .footer-band-hours {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border-soft);
    padding-top: 12px;
  }
}

/* ============================================================
   MODAL: COMO FUNCIONA A INSTALAÇÃO
============================================================ */
.modal-card-instalacao {
  max-width: 900px;
  height: auto;
  max-height: 90vh;
  padding: 40px 40px 34px;
}

.instalacao-header {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 26px;
}
.instalacao-mascote {
  width: 148px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.instalacao-titulo-block h2 {
  font-size: clamp(22px, 3.2vw, 32px);
  color: #ffffff;
  line-height: 1.08;
}
.instalacao-titulo-block h2 .gradient-text {
  display: inline-block;
  font-size: 1.2em;
}
.instalacao-subtitulo {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
}
.instalacao-subtitulo strong {
  color: var(--text-light);
}

.instalacao-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-panel-2);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 26px;
}
.instalacao-info-icone {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.instalacao-info-banner p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
}
.instalacao-info-banner strong {
  color: var(--accent-orange);
}

.instalacao-comparativo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 26px;
}
.instalacao-plano-card {
  background: var(--bg-panel-2);
  border-radius: 16px;
  padding: 26px 26px 22px;
  border: 1.5px solid var(--border-soft);
}
.instalacao-plano-card.com-fidelidade {
  border-color: rgba(76, 191, 140, 0.5);
}
.instalacao-plano-card.sem-fidelidade {
  border-color: rgba(255, 214, 10, 0.5);
}

.instalacao-plano-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.instalacao-plano-selo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.com-fidelidade .instalacao-plano-selo {
  background: rgba(76, 191, 140, 0.15);
}
.sem-fidelidade .instalacao-plano-selo {
  background: rgba(255, 214, 10, 0.15);
}
.instalacao-plano-header h3 {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}
.com-fidelidade .instalacao-plano-header h3 span {
  color: #4cbf8c;
}
.sem-fidelidade .instalacao-plano-header h3 span {
  color: var(--accent-orange);
}
.instalacao-plano-header p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
}

.instalacao-plano-preco {
  font-family: "SamsungSharp", sans-serif;
  font-weight: 700;
  font-size: 30px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.com-fidelidade .instalacao-plano-preco {
  color: #4cbf8c;
}
.sem-fidelidade .instalacao-plano-preco {
  color: var(--accent-orange);
}
.instalacao-plano-preco span {
  display: block;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
}

.instalacao-plano-lista {
  list-style: none;
}
.instalacao-plano-lista li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
}

.instalacao-incluso {
  background: var(--bg-panel-2);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 22px;
}
.instalacao-incluso-titulo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--accent-orange);
  margin-bottom: 24px;
}
.instalacao-incluso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.instalacao-incluso-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.instalacao-incluso-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.instalacao-incluso-item p {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}

.instalacao-agendamento {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 22px;
}
.instalacao-agendamento-icone {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #7c5cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.instalacao-agendamento p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-light);
  font-family: "Inter", sans-serif;
}
.instalacao-agendamento a {
  color: var(--accent-orange);
  font-weight: 700;
}

.instalacao-footer {
  text-align: center;
  padding-top: 4px;
}
.instalacao-footer p {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
}
.instalacao-footer span {
  font-size: 12px;
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
}

@media (max-width: 700px) {
  .modal-card-instalacao {
    padding: 26px 22px 26px;
  }
  .instalacao-header {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .instalacao-comparativo {
    grid-template-columns: 1fr;
  }
  .instalacao-incluso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ MODAL: TRABALHE CONOSCO (currículo) ============ */
.curriculo-body {
  max-width: 460px;
  margin: 0 auto;
  padding: 8px 40px 44px;
  text-align: left;
}
.curriculo-campo {
  margin-bottom: 18px;
}
.curriculo-campo label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.curriculo-campo input,
.curriculo-campo select,
.curriculo-campo textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background-color: var(--bg-panel-2);
  color: var(--text-light);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  resize: none;
}
.curriculo-campo select option {
  background: var(--bg-panel-2);
  color: var(--text-light);
}
.curriculo-campo input:focus,
.curriculo-campo select:focus,
.curriculo-campo textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.curriculo-anexo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.curriculo-anexo-nome {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background-color: var(--bg-panel-2);
  color: var(--text-muted);
  font-size: 13px;
}
.curriculo-btn-anexo {
  flex-shrink: 0;
  padding: 13px 20px;
}
.curriculo-anexo-erro {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #f87171;
}

.curriculo-consentimento {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}
.curriculo-consentimento input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.curriculo-btn-enviar {
  width: 100%;
}

.curriculo-sucesso-box {
  max-width: 460px;
  margin: 0 auto 44px;
  padding: 25px 40px;
}

@media (max-width: 600px) {
  .curriculo-body {
    padding: 8px 24px 32px;
  }
  .curriculo-anexo-row {
    flex-direction: column;
    align-items: stretch;
  }
}
