/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.loader-logo-img {
  width: 80%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input,
select,
textarea {
  font-family: inherit;
}

.loader-logo-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
:root {
  --neon: #00b7ff;
  --neon-dark: #0090cc;
  --neon-glow: rgba(0, 183, 255, 0.35);
  --dark: #07142b;
  --dark2: #0d1b3d;
  --white: #ffffff;
  --orange: #ffa500;
  --gray: #b8c0cc;
  --gray-light: rgba(184, 192, 204, 0.15);
  --glass: rgba(13, 27, 61, 0.6);
  --glass-border: rgba(0, 183, 255, 0.2);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-neon: 0 0 30px rgba(0, 183, 255, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --azul: #00b7ff;
  --laranja: #ffa500;
  --dark: #07142b;
  --dark2: #0d1b3d;
  --text: #fefeff;
  --dark-bg: #07142b;
  --dark-surface:  #0d1b3d;
  --accent-color: #ffa500; /* Mantendo a paleta do código anterior */
  --text-main: #f8f5ee;
  --text-secondary: #c09577;
  --white: #ffffff;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--neon);
  border-radius: 3px;
}

.logo-img {
  width: 130%;
  height: auto;
  object-fit: contain;
  margin-left: -50px;
}

.logo img {
  width: 80%;
  height: auto;
  object-fit: contain;
  margin-left: -50px;
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}


.section-title h2 {
  font-family: var(--font-head);
  margin-top: -3rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 560px;
}
.highlight {
  color: var(--neon);
}
.highlight-orange {
  color: var(--orange);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: var(--dark);
  box-shadow: 0 4px 24px var(--neon-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--neon-glow);
}
.btn-secondary {
  margin-top: -30px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 183, 255, 0.08);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp-top {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), #ff8c00);
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(255, 165, 0, 0.35);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 165, 0, 0.5);
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

/* -- SOBRE --*/

.about-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.about-container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-content h1 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--white);
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-align: justify;
}

.company-details {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.detail-item {
  background: var(--dark-surface);
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  transition: transform 0.3s ease;
}

.detail-item:hover {
  transform: translateX(10px);
}

.detail-item strong {
  display: block;
  color: var(--accent-color);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-stats img{
  margin-top: -70px;
  height: 95%;
  border-radius: 5px;
  width: 100%;
}
.stat-card {
  background: var(--dark-surface);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
}


.videos-section {
  max-width: 900px;
  align-items: center;
  margin: 0px auto;
  margin-top: 80px;
}

.videos-section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-muted);
}

.video-bubble {
  width: 200px;
  height: 280px;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--green-pastel);
  overflow: visible; /* Mudei de hidden para visible */
  box-shadow:
    0 8px 40px rgba(181, 140, 109, 0.15),
    0 0 60px rgba(103, 145, 107, 0.1);
  position: relative;
  display: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.video-bubble video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videos-grid {
  margin-left: 70px;
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 30px;
  align-items: center;
}

.videos-side-text {
  max-width: 280px;
  text-align: center;
}

.videos-side-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-lilac);
  margin-bottom: 15px;
}

.videos-side-text p {
  font-size: 0.9rem;
  color: var(--marron);
  line-height: 1.6;
  margin-bottom: 12px;
}

.videos-side-text .highlight {
  color: var(--green-muted);
  font-weight: 600;
}

.videos-side-text .seo-tag {
  display: inline-block;
  background: var(--green-pastel);
  border: 1px solid var(--green-muted);
  color: var(--marron-medio);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 5px 3px;
}

.videos-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px;
}

.video-bubble {
  width: 380px;
  height: 450px;
  border-radius: 5px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--green-pastel);
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(181, 140, 109, 0.15),
    0 0 60px rgba(103, 145, 107, 0.1);
  position: relative;
  display: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.video-bubble.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.video-bubble video {
  width: 380px;
  height: 450px;
  object-fit: cover;
}

.video-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--verde);
  border: 2px solid var(--primary-lilac);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-indicator.active {
  background: var(--primary-lilac);
  box-shadow: 0 0 15px rgba(181, 140, 109, 0.6);
}

.videos-container {
  background: var(--secondary-lilac);
  border-radius: 30px;
  position: relative;
  padding: 40px 20px 120px 20px;
  border: 2px solid var(--green-pastel);
  backdrop-filter: blur(10px);
}

.video {
  pointer-events: auto;
}

.video:not([controls]) {
  pointer-events: none;
}
.stat-value {
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  text-transform: uppercase;
}

.contact-info {
  margin-top: 40px;
  padding: 20px;
  border: 1px dashed var(--accent-color);
  border-radius: 10px;
}

.contact-info h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 15px;
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.contact-link:hover {
  opacity: 0.8;
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-content h2 {
    font-size: 28px;
  }
}

/* Animação simples de fade-in */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  margin-top: auto;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(7, 20, 43, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  height: 100px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  box-shadow: 0 0 20px var(--neon-glow);
  flex-shrink: 0;
}
.logo-text {
  color: var(--white);
}
.logo-text span {
  color: var(--neon);
}
.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap; /* ADICIONE — garante que fique em uma linha */
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
  position: relative;
  white-space: nowrap; /* ADICIONE ESTA LINHA — impede "Indique &\nGanhe" */
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
  
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 20, 43, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}
.mobile-menu a:hover {
  color: var(--neon);
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
}
.hero-bg-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark2) 0%, #0a2040 100%);
  overflow: hidden;
}
.hero-bg-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(0, 183, 255, 0.15) 0%,
      transparent 70%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(0, 183, 255, 0.04) 40px,
      rgba(0, 183, 255, 0.04) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(0, 183, 255, 0.04) 40px,
      rgba(0, 183, 255, 0.04) 41px
    );
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 183, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 183, 255, 0.12);
  border: 1px solid rgba(0, 183, 255, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.2rem;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.speed-ring {
  position: relative;
  margin-top: 4rem;
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speed-ring svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.speed-ring-inner {
  text-align: center;
  z-index: 1;
}
.speed-ring-inner .speed-val {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
  display: block;
}
.speed-ring-inner .speed-unit {
  font-size: 0.85rem;
  color: var(--gray);
}
.speed-ring-inner .speed-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.2rem;
}
.hero-cards-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-mini-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.hero-mini-card .icon {
  color: var(--neon);
  font-size: 1rem;
}
@keyframes ring-fill {
  from {
    stroke-dashoffset: 628;
  }
  to {
    stroke-dashoffset: 100;
  }
}
.ring-circle {
  animation: ring-fill 2s ease-out forwards;
}

.img-top {
  margin-top: 90px;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
  box-shadow: 0 0 25px rgba(0, 140, 255, 0.6);
  animation: none; /* Remove float no desktop — fica fixo para não tremer */
}

.img-familia {
  width: 100%;
  border-radius: 10px;
  height: auto;
  box-shadow: 0 0 25px rgba(0, 140, 255, 0.6);
  filter: drop-shadow(0 0 20px rgba(0, 183, 255, 0.2));
}

/* ===== DIFERENCIAIS ===== */
#diferenciais {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
 
}
.diferencial-card {
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.diferencial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon), transparent);
  opacity: 0;
  transition: var(--transition);
}
.diferencial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 183, 255, 0.4);
  box-shadow: var(--shadow-neon);
}
.diferencial-card:hover::before {
  opacity: 1;
}
.diferencial-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(0, 183, 255, 0.2),
    rgba(0, 183, 255, 0.05)
  );
  border: 1px solid rgba(0, 183, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.diferencial-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.diferencial-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.problem-card h3 {
  color: #fff;
  display: inline-block;
  padding: 5px 12px;
}

#diferenciaisGrid .card h3 {
  color: #ff9800;
  font-weight: 700;
}

#diferenciaisGrid .card p {
  color: #ffffff;
}

#diferenciaisGrid .card i {
  color: #ff9800;
}
/* ===== DOR / SOLUÇÃO ===== */
#dor {
  position: relative;
  overflow: hidden;
}
.dor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pain-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 80, 80, 0.06);
  border: 1px solid rgba(255, 80, 80, 0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: var(--transition);
}
.pain-item:hover {
  background: rgba(255, 80, 80, 0.1);
}
.pain-item .x {
  color: #ff5555;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.solution-box {
  padding: 2.5rem;
  position: relative;
}
.solution-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--neon), transparent, transparent);
  border-radius: calc(var(--radius) + 1px);
  z-index: -1;
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
}
.solution-item .check {
  color: var(--neon);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.solution-item div strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.solution-item div span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===== PLANOS ===== */
#planos {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
  background-size: cover;
  background-position: center;
}
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.plano-card {
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.plano-card:hover {
  transform: translateY(-6px);
}
.plano-card.featured {
  background: linear-gradient(145deg, rgb(8, 0, 28), rgba(13, 27, 61, 0.8));
  border: 1px solid rgba(0, 183, 255, 0.5);
  box-shadow: 0 0 40px rgba(0, 183, 255, 0.2);
  transform: scale(1.03);
  border-radius: var(--radius-lg);
}
.plano-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.badge-recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
  font-family: var(--font-head);
}
.plano-name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.plano-speed {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plano-speed span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray);
}
.plano-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1.2rem 0;
}
.plano-price .from {
  font-size: 0.85rem;
  color: var(--gray);
}
.plano-price .value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}
.plano-price .period {
  font-size: 0.85rem;
  color: var(--gray);
}
.plano-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 1.2rem 0;
}
.plano-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.plano-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.plano-feature .ck {
  color: var(--neon);
}
.plano-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn-agendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-agendar:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 183, 255, 0.08);
}

/* ===== MODAL AGENDAMENTO ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 520px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.modal-close:hover {
  background: rgba(255, 80, 80, 0.2);
  border-color: #ff5555;
  color: #ff5555;
}
.modal-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.modal-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.8rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon);
  background: rgba(0, 183, 255, 0.06);
}
.form-group select option {
  background: var(--dark2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.payment-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.payment-btn {
  flex: 1;
  min-width: 90px;
  padding: 0.65rem;
  border-radius: 10px;
  border: 2px solid var(--glass-border);
  background: transparent;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.payment-btn.selected {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 183, 255, 0.1);
}
.payment-btn:hover {
  border-color: rgba(0, 183, 255, 0.5);
  color: var(--white);
}
.plan-info-badge {
  background: rgba(0, 183, 255, 0.1);
  border: 1px solid rgba(0, 183, 255, 0.25);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ===== PARA QUEM ===== */
#para-quem {
  background: #07142b;
  background-size: cover;
}
.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}
.para-quem-card {
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.para-quem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 183, 255, 0.4);
}
.para-quem-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.para-quem-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== NÚMEROS ===== */
#numeros {
  background: linear-gradient(
    135deg,
    rgba(0, 183, 255, 0.08),
    rgba(13, 27, 61, 0.95)
  );
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.numero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.numero-val {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
  display: block;
}
.numero-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* ===== DEPOIMENTOS ===== */
/* ============================================================
   RRNET — CAROUSEL RESPONSIVO (3 desktop / 2 tablet / 1 mobile)
   Adicione após style.css
   ============================================================ */

/* Wrapper sem overflow para o track poder transladar */
#depoimentos{
  background-color: #0d1b3d;
  margin-top: -150px;
  
}

.carousel-wrap {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}

/* Track: flex sem gap fixo — gap controlado por CSS var */
.carousel-track {
  display: flex;
  gap: var(--car-gap, 1.5rem);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Card: largura calculada por JS via --car-card-w */
.depo-card {
  flex: 0 0 var(--car-card-w, calc(33.333% - 1rem));
  min-width: 0;
  width: var(--car-card-w, calc(33.333% - 1rem));
  box-sizing: border-box;
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) and (min-width: 769px) {
  .depo-card {
    flex: 0 0 var(--car-card-w, calc(50% - 0.75rem));
    width: var(--car-card-w, calc(50% - 0.75rem));
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* era 3rem — muito espaçado, reduza */
    flex-wrap: nowrap; /* ADICIONE — garante que fique em uma linha */
  }
  .nav-links a {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
    white-space: nowrap; /* ADICIONE ESTA LINHA — impede "Indique &\nGanhe" */
  }
}

/* Mobile: 1 card */
@media (max-width: 768px) {
  .depo-card {
    flex: 0 0 var(--car-card-w, 100%);
    width: var(--car-card-w, 100%);
    flex-direction: column;
    gap: 1rem;
  }
  .depo-avatar {
    width: 60px;
    height: 72px;
  }
  .hero-cards-row {
    margin-top: -70px;
  }
}

/* Controles e dots — sem mudança */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: rgba(0, 183, 255, 0.2);
  border-color: var(--neon);
  color: var(--neon);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--neon);
  width: 24px;
  border-radius: 4px;
}
.stars {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.depo-avatar-placeholder {
  background: linear-gradient(135deg, #07bede, #edc605);
  color: var(--orange);
  color: #07142b;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}
/* ===== EMPRESARIAL ===== */
#empresarial {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}
.empresarial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.empresarial-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1rem;
  flex: 1;
}
.empresarial-features {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.empresarial-features .ck {
  color: var(--neon);
}
.emp-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  transition: var(--transition);
}
.emp-feature:hover {
  border-color: rgba(0, 183, 255, 0.3);
  transform: translateX(4px);
}
.emp-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(0, 183, 255, 0.2),
    rgba(0, 183, 255, 0.05)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.emp-feature h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.emp-feature p {
  font-size: 0.85rem;
  color: var(--gray);
}
.empresarial-cta-box {
  padding: 2.5rem;
  text-align: center;
}
.empresarial-cta-box h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.empresarial-cta-box p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}
/* ===== SEÇÃO CÂMERAS ===== */
.cam-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 3rem;
}

/* Coluna da imagem */
.cam-image-col {
  flex: 0 0 320px;
  position: relative;
  font-size: 2rem;
}

.cam-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.cam-headline {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  line-height: 1.15;
}

.cam-line1,
.cam-line2 {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cam-line3 {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 12px rgba(0, 183, 255, 0.7);
}

/* Coluna de conteúdo */
.cam-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Lista de benefícios */
.cam-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cam-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(0, 183, 255, 0.05);
  border: 1px solid rgba(0, 183, 255, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.cam-benefit-item:hover {
  background: rgba(0, 183, 255, 0.1);
  border-color: rgba(0, 183, 255, 0.35);
}

/* Ícone neon */
.cam-icon-wrap {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(0, 183, 255, 0.12);
  border: 1px solid rgba(0, 183, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  box-shadow: 0 0 12px rgba(0, 183, 255, 0.25);
}

.cam-benefit-title {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--neon);
  margin-bottom: 0.2rem;
}

.cam-benefit-desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.75));
  line-height: 1.4;
}

/* Barra de specs técnicas */
.cam-specs-bar {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 183, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.cam-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  flex: 1;
}

.cam-spec + .cam-spec {
  border-left: 1px solid rgba(0, 183, 255, 0.15);
  padding-left: 0.75rem;
}

.cam-spec-icon {
  color: var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 6px rgba(0, 183, 255, 0.5));
}

.cam-spec-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.3;
}

.cam-spec-label small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--neon);
  letter-spacing: 0;
  text-transform: none;
}

/* CTA */
.cam-cta {
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 40%;
  font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .cam-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .cam-image-col {
    flex: unset;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .cam-specs-bar {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cam-spec + .cam-spec {
    border-left: none;
    padding-left: 0;
  }

  .cam-spec {
    flex: 1 1 40%;
  }
}

/* ===== COBERTURA ===== */
#cobertura {
  background: var(--dark2);
}
.cobertura-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-neon);
  aspect-ratio: 4/3;
  position: relative;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.85) saturate(0.7) hue-rotate(180deg);
}
.bairros-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bairro-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(0, 183, 255, 0.06);
  border: 1px solid rgba(0, 183, 255, 0.12);
  font-size: 0.9rem;
  transition: var(--transition);
}
.bairro-item:hover {
  background: rgba(0, 183, 255, 0.12);
  border-color: rgba(0, 183, 255, 0.3);
}
.bairro-dot {
  width: 8px;
  height: 8px;
  background: var(--neon);
  border-radius: 50%;
  flex-shrink: 0;
}
.cobertura-cta {
  margin-top: 1.5rem;
}

/* ===== FAQ ===== */ /* ===== FAQ — FIX: layout com imagem à esquerda ===== */
#faq {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

/* Layout com imagem + perguntas lado a lado */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

/* Coluna da imagem */
.faq-image-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-img-wrapper {
  position: relative;
  width: 100%;
}
.faq-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 30px rgba(0, 183, 255, 0.2));
  animation: float-up 4s ease-in-out infinite;
}

/* Badges flutuantes sobre a imagem FAQ */
.faq-img-badge {
  position: absolute;
  left: -1rem;
  top: 2rem;
  background: rgba(7, 20, 43, 0.92);
  border: 1px solid rgba(0, 183, 255, 0.35);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 183, 255, 0.15);
  animation: badge-in 0.6s ease forwards;
}
.faq-img-badge--bottom {
  top: auto;
  bottom: 2rem;
  left: auto;
  right: -1rem;
}
.faq-badge-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.faq-img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.faq-img-badge span {
  font-size: 0.75rem;
  color: var(--neon);
}
@keyframes badge-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Lista de perguntas */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Remove o max-width e margin auto do layout antigo */
  max-width: none;
  margin: 0;
}
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  gap: 1rem;
}
.faq-question:hover {
  color: var(--neon);
}
.faq-chevron {
  color: var(--neon);
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== CTA FINAL ===== */
#cta-final {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
}
.cta-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 183, 255, 0.12) 0%,
    transparent 70%
  );
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-final-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.cta-final-inner p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray);
}
.trust-badge .icon {
  color: var(--neon);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 1.5rem;
}
.footer-end {
  margin-top: -70px;
  margin-left: -30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(0, 183, 255, 0.2);
  border-color: var(--neon);
  color: var(--neon);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-left: -30px;
}
.footer-contato {
  display: flex;
  flex-direction: column;
  margin-left: -30px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--neon);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== FLOATING CTA ===== */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.float-wa-bubble {
  background: rgba(7, 20, 43, 0.9);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #25d366;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.float-whatsapp:hover .float-wa-bubble {
  opacity: 1;
  transform: translateY(0);
}
.float-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.float-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.float-wa-pulse {
  position: absolute;
  inset: -4px;
  animation: wa-pulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
  text-decoration: none;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-top:hover {
  background: rgba(0, 183, 255, 0.2);
  border-color: var(--neon);
  color: var(--neon);
}

.img-top-left {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 120%;
  height: auto;
  object-fit: contain;
}
/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .logo-img {
    width: 80%;
    height: auto;
  }
  .btn-whatsapp-top {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    gap: 2rem;
  }
  .empresarial-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE — 768px (mobile principal) ===== */
@media (max-width: 768px) {
  #navbar {
    height: 90px; /* Altura fixa de 80px para mobile */
    padding: 0.5rem 0; /* Ajustar padding para a nova altura */
    background: rgba(7, 20, 43, 0.95); /* Manter background do estado scrolled */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  #navbar.scrolled {
    height: 90px; /* Garantir que a altura seja 80px mesmo com a classe scrolled */
  }

  /* 2. Garantir que a logo não diminua e sobreponha */
  .logo-img {
    width: 130%; /* Manter a largura original para que ela ultrapasse */
    max-width: none; /* Remover qualquer restrição de largura máxima */
    margin-left: -50px; /* Manter o posicionamento para fora do container */
     margin-top: -40px; /* Manter o posicionamento para fora do container */ 
    position: relative; /* Garantir que o z-index funcione corretamente */
    z-index: 1001; /* Um z-index ligeiramente maior que a navbar para sobrepor */
  }

  /* Ajustes para o container da navbar para acomodar a logo maior */
  .nav-inner {
    overflow: visible; /* Permitir que a logo transborde */
  }

  /* Esconder elementos que podem colidir com a logo em mobile */
  .nav-links,
  .nav-cta {
    display: none; /* Esconder links e CTA em mobile para evitar colisão com a logo */
  }

  .nav-cta .btn-secondary {
    display: none;
  }
  .btn-whatsapp-top {
    display: none;
  }
  .hamburger {
    margin-top: -40px; /* Manter o posicionamento para fora do container */ 
      display: flex;
    margin-right: 4px;
  }

  /* FIX: Hero — grid vira coluna única, imagem aparece ABAIXO do texto */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 1rem;
    gap: 1rem;
  }
  /* Garante que hero-text vem primeiro, hero-visual segundo */
  .hero-text {
    order: 1;
  }
  .hero-visual {
    order: 2;
    display: flex !important; /* mostra no mobile */
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bg-right {
    width: 100%;
  }
  .hero-bg-left {
    width: 0%;
  }

  .img-top {
    width: 100%;
    height: auto;
    margin-top: 10px;
    animation: float-up 3s ease-in-out infinite;
  }

  .speed-ring-inner {
    display: none;
  }

  /* Speed ring proporcional ao mobile */
  .speed-ring {
    margin-top: 1.5rem;
    max-width: 280px;
  }

  /* FIX: Carousel mobile — 1 card com ~90% da largura visível */
  .depo-card {
    width: calc(90vw - 3rem);
    min-width: calc(90vw - 3rem);
  }

  .cobertura-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .section-sub {
    max-width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .planos-grid {
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .plano-card.featured {
    transform: none;
  }
  .plano-card.featured:hover {
    transform: translateY(-6px);
  }

  /* FAQ mobile */
  .faq-image-col {
    max-width: 280px;
  }
  .faq-item.open .faq-answer {
  max-height: 780px;
  padding: 0 1.5rem 1.2rem;  
  }
  .problems-grid,
  .cards-grid,
  .plans-grid {
    display: grid;
    gap: 15px;
    width: 90%;
    grid-template-columns: 1fr;
  }
  .container {
    width: 90%;
    margin: 10px;
  }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  .section {
    padding: 1.5rem 0;
  }
  .container {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }
  .hero-mini-card {
    font-size: 0.78rem;
    padding: 0.6rem 0.8rem;
  }

  /* Carousel — 1 card quase full width */
  .depo-card {
    width: calc(90vw - 3rem);
    min-width: calc(90vw - 3rem);
    padding: 1.5rem 1.2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .depo-avatar {
    width: 56px;
    height: 68px;
  }

  /* Solution box padding menor */
  .solution-box {
    padding: 24px 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-brand p {
    max-width: 100%;
  }

  /* Modal */
  .modal-box {
    padding: 1.5rem 1rem;
  }
}

/* ===== EXTRA: garante que elementos com position absolute não causem overflow ===== */
.hero-bg,
.cta-bg,
.pain-points,
#cta-final,
#hero {
  overflow: hidden;
}

/* ===== Badges do FAQ ficam contidos no wrapper ===== */
.faq-img-wrapper {
  overflow: visible;
}
@media (max-width: 480px) {
  .faq-img-badge {
    position: static;
    margin-bottom: 0.5rem;
    border-radius: 10px;
  }
  .faq-img-badge--bottom {
    margin-top: 0.5rem;
  }
  .faq-img-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .faq-image-col {
    max-width: 280px;
  }
  .problems-grid,
  .cards-grid,
  .plans-grid {
    display: grid;
    gap: 15px;
    width: 90%;
    grid-template-columns: 1fr;
  }
  .container {
    width: 90%;
    margin: 10px;
  }
}

/* ===== TABLET (769px – 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links {
    margin-top: 20px;
  }
  #hero {
    padding-top: 80px;
    padding-bottom: 2rem;
    width: 100%;
    min-height: auto;
  }
  .speed-ring-inner {
    display: none;
  }
  /* Hero 2 colunas mantidas, mas proporções ajustadas */
  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
  }

  /* Fundo direito cobre 100% no tablet */
  .hero-bg-left {
    width: 0;
    display: none;
  }
  .hero-bg-right {
    width: 100%;
    left: 0;
    background: linear-gradient(
      135deg,
      var(--dark) 0%,
      var(--dark2) 60%,
      #0a2040 100%
    );
  }
  .hero-bg-right::before {
    background:
      radial-gradient(
        ellipse at 50% 40%,
        rgba(0, 183, 255, 0.15) 0%,
        transparent 70%
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40px,
        rgba(0, 183, 255, 0.04) 40px,
        rgba(0, 183, 255, 0.04) 41px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(0, 183, 255, 0.04) 40px,
        rgba(0, 183, 255, 0.04) 41px
      );
  }
  .hero-divider {
    display: none;
  }

  /* Speed ring proporcional ao tablet */
  .speed-ring {
    width: clamp(180px, 32vw, 320px);
    height: clamp(180px, 32vw, 320px);
    margin-top: 0;
  }

  /* Títulos e textos menores no tablet */
  .hero-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }
  .hero-sub {
    font-size: 0.9rem;
  }
  .hero-badge {
    font-size: 0.72rem;
  }

  .hero-stat strong {
    font-size: 1.3rem;
  }
  .hero-stat span {
    font-size: 0.72rem;
  }
  .hero-stats {
    gap: 1.2rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.3rem;
  }
  .hero-btns {
    gap: 0.6rem;
  }

  /* Mini cards menores */
  .hero-mini-card {
    font-size: 0.72rem;
    padding: 0.5rem 0.7rem;
  }

  /* Navbar tablet */
  .nav-links {
    gap: 1rem;
    font-size: 0.82rem;
  }
  .nav-cta .btn-secondary {
    display: none;
  }

  /* speed-ring-inner visível no tablet */
  .speed-ring-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .speed-ring-inner .speed-val {
    font-size: clamp(1.4rem, 3vw, 2.5rem);
  }
  .speed-ring-inner .speed-unit {
    font-size: 0.75rem;
  }
  .speed-ring-inner .speed-label {
    font-size: 0.65rem;
  }
  .faq-image-col {
    max-width: 280px;
  }
  .problems-grid,
  .cards-grid,
  .plans-grid {
    display: grid;
    gap: 15px;
    width: 90%;
    grid-template-columns: 1fr;
  }
  .container {
    width: 90%;
    margin: 10px;
  }
}

.loader-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(0, 194, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ===== LOADING ANIMATION ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.5s ease;
}
#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 30px var(--neon-glow);
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(0, 183, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--neon-dark));
  border-radius: 3px;
  animation: load-bar 1.2s ease forwards;
}
@keyframes load-bar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

section {
  padding: 100px 0;
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.text-h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fffefe;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text);
  font-size: 20px;
}

.pain-points {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.bg-image {
  position: absolute;
  inset: 0;
  background: url("./img/internet-background.png") center/cover;
  opacity: 0.15;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #0d1b3d,
    rgba(13, 27, 61, 0.9),
    #07142b
  );
}

.problems-grid,
.cards-grid,
.plans-grid {
  display: grid;
  gap: 25px;
}

.problems-grid,
.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: rgba(7, 20, 43, 0.8);
  border: 1px solid rgba(0, 183, 255, 0.25);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--azul);
}

.card i {
  font-size: 50px;
  color: var(--azul);
  margin-bottom: 20px;
}

.problem-card i {
  color: var(--laranja);
}

.solution-box {
  margin-top: 50px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(0, 183, 255, 0.15),
    rgba(255, 165, 0, 0.15)
  );
  border: 1px solid rgba(0, 183, 255, 0.3);
  border-radius: 15px;
  padding: 40px;
}

.solution-box h3 {
  font-size: 32px;
  color: white;
}

.solution-box p {
  color: var(--text);
  margin: 20px 0;
}

.btn-orange {
  background: var(--laranja);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn-orange:hover {
  background: #ff8c00;
}

.plan-card {
  position: relative;
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--laranja);
  color: black;
  padding: 10px 20px;
  font-weight: 700;
}
/* ===== INDIQUE UM AMIGO ===== */
#indique {
  background: linear-gradient(135deg, #07142b 0%, #0d1b3d 100%);
  position: relative;
  overflow: hidden;
}
#indique::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 165, 0, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.indique-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.indique-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 165, 0, 0.12);
  border: 1px solid rgba(255, 165, 0, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1.2rem;
  width: fit-content;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.indique-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.indique-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.indique-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--gray);
}
.indique-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--dark);
  flex-shrink: 0;
}
.indique-form-box {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.indique-form-box h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.indique-form-box p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.indique-bonus {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
}
.indique-bonus i {
  font-size: 1.3rem;
}
.btn-orange-indique {
  background: linear-gradient(135deg, var(--orange), #ff8c00);
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(255, 165, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}
.btn-orange-indique:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 165, 0, 0.5);
}
@media (max-width: 768px) {
  #indique {
    overflow-x: hidden;
  }
  #indique .container {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .indique-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
  }
  .indique-inner > * {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .indique-title {
    font-size: 1.4rem;
    word-break: break-word;
  }
  .indique-form-box {
    padding: 1.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .indique-form-box h3 {
    font-size: 1rem;
    word-break: break-word;
  }
  .indique-form-box p {
    font-size: 0.82rem;
    word-break: break-word;
  }
  .indique-bonus {
    font-size: 0.8rem;
    flex-wrap: wrap;
    word-break: break-word;
  }
  .indique-form-box .form-group input {
    width: 100%;
    box-sizing: border-box;
  }
  .btn-orange-indique {
    width: 100%;
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
  .indique-steps {
    gap: 0.7rem;
  }
  .indique-step {
    font-size: 0.88rem;
    word-break: break-word;
  }
}

/* ===== MODAL MELHORADO ===== */
.modal-section-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--neon);
  text-transform: uppercase;
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--glass-border);
}
.radio-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.radio-btn {
  flex: 1;
  min-width: 100px;
  padding: 0.7rem 0.5rem;
  border-radius: 10px;
  border: 2px solid var(--glass-border);
  background: transparent;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.radio-btn.selected {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 183, 255, 0.1);
}
.radio-btn:hover {
  border-color: rgba(0, 183, 255, 0.5);
  color: var(--white);
}
.vencimento-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.venc-btn {
  padding: 0.55rem 0.2rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.venc-btn.selected {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(0, 183, 255, 0.1);
}
.venc-btn:hover {
  border-color: rgba(0, 183, 255, 0.4);
  color: var(--white);
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(0, 183, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-top: 1.2rem;
  cursor: pointer;
}
.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--neon);
  margin-top: 2px;
  cursor: pointer;
}
.privacy-check label {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
}
.privacy-check label strong {
  color: var(--white);
}
.modal-success-msg {
  text-align: center;
  padding: 1rem 0.5rem 0;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}
.modal-success-msg strong {
  color: var(--neon);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.footer-dev {
  text-align: center;
  padding: 0.85rem 0 0.25rem;
  font-size: 0.78rem;
  color: var(--gray);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.75rem;
}

.footer-dev-link {
  color: var(--neon);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-dev-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}
@media (min-width: 769px) {
  #navbar.scrolled {
    height: 100px; /* Altura original para desktop */
  }
}