/* ============================================ */
/* CSS DEDICADO PARA PÁGINA CORPORATIVA       */
/* ============================================ */

/* ============================================ */
/* RESET E CONFIGURAÇÕES GLOBAIS               */
/* ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #0a0a0a;
  --primary-blue: #1e40af;
  --accent-blue: #3b82f6;
  --accent-orange: #f59e0b;
  --neon-orange: #ff6b35;
  --neon-blue: #00d4ff;
  --text-light: #e2e8f0;
  --text-white: #ffffff;
  --cyber-bg: rgba(0, 0, 0, 0.9);
  --glass-border: rgba(59, 130, 246, 0.3);
  --glow-blue: rgba(59, 130, 246, 0.8);
  --glow-orange: rgba(245, 158, 11, 0.8);
  --glass-bg: rgba(0, 0, 0, 0.3);
}

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  background: #000000;
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  padding-top: 80px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(59, 130, 246, 0.03) 2px,
      rgba(59, 130, 246, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(245, 158, 11, 0.03) 2px,
      rgba(245, 158, 11, 0.03) 4px
    );
  pointer-events: none;
  z-index: -10;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: -5;
}

/* ============================================ */
/* HEADER / CABEÇALHO                          */
/* ============================================ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--cyber-bg);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent-blue);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(59, 130, 246, 0.3),
    inset 0 0 120px rgba(59, 130, 246, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  min-height: 80px;
  overflow: visible;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 40px;
  min-height: 60px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(59, 130, 246, 0.4),
    inset 0 0 60px rgba(59, 130, 246, 0.08);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--accent-orange),
    var(--accent-blue),
    var(--accent-orange),
    transparent);
  animation: cyberpunkScan 4s linear infinite;
}

header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--neon-blue),
    var(--accent-orange),
    transparent);
  animation: glowLine 3s ease-in-out infinite;
  filter: blur(2px);
}

@keyframes glowLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes cyberpunkScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ---------- Logo ---------- */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  min-width: 120px;
  position: relative;
  overflow: visible;
}

.logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.6) 45%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.6) 55%,
    rgba(255, 255, 255, 0) 70%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: left 0.8s ease;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.logo:hover::before {
  left: 100%;
  animation: shine 0.8s ease;
}

.logo.auto-shine::before {
  animation: shine 0.8s ease forwards;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
  transition: filter 0.3s ease;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo:hover img {
  filter: brightness(1.1) contrast(1.2);
  box-shadow:
    0 0 20px rgba(245, 158, 11, 0.6),
    0 0 40px rgba(59, 130, 246, 0.4),
    0 2px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-orange);
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============================================ */
/* NAVEGAÇÃO PRINCIPAL                         */
/* ============================================ */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 20000;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10001;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 20px;
  border-radius: 6px;
  transition: all 0.4s ease;
  position: relative;
  background: var(--glass-bg);
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 44px;
  gap: 6px;
}

nav ul li a.active {
  color: var(--text-white);
  background: linear-gradient(135deg, var(--accent-orange), var(--neon-orange));
  border-color: var(--accent-orange);
  box-shadow:
    0 0 30px var(--glow-orange),
    0 0 60px rgba(245, 158, 11, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

nav ul li a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

nav ul li a:hover::before {
  width: 80%;
}

nav ul li a:hover {
  color: var(--text-white);
  background: linear-gradient(135deg, var(--accent-orange), var(--neon-orange));
  border-color: var(--accent-orange);
  box-shadow:
    0 0 30px var(--glow-orange),
    0 0 60px rgba(245, 158, 11, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) skewX(-2deg);
  text-shadow: 0 0 10px var(--neon-orange);
}

nav ul li:hover > a i {
  transform: rotate(180deg);
}

/* ============================================ */
/* DROPDOWN / SUBMENU                          */
/* ============================================ */
nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid var(--accent-blue);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(59, 130, 246, 0.3),
    inset 0 0 40px rgba(59, 130, 246, 0.1);
  padding: 20px 0;
  min-width: 220px;
  border-radius: 8px;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
}

nav ul li ul::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 12px;
  background: transparent;
}

nav ul li:hover ul {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

nav ul li ul li {
  display: block;
  padding: 0;
  margin: 0;
}

nav ul li ul li a {
  font-size: 13px;
  color: var(--text-light);
  padding: 12px 30px;
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

nav ul li ul li a::before {
  display: none;
}

nav ul li ul li a:hover {
  color: var(--neon-orange);
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  padding-left: 40px;
  text-shadow: 0 0 10px var(--glow-orange);
  border-left: 3px solid var(--accent-orange);
}

nav ul li ul li a.active {
  color: var(--neon-orange);
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  border-left: 3px solid var(--accent-orange);
}

/* ============================================ */
/* AÇÕES DO HEADER (BUSCA E CTA)               */
/* ============================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
  min-width: 120px;
  justify-content: flex-end;
  max-width: 250px;
  overflow: hidden;
}

.search-icon {
  cursor: pointer;
  color: #1e40af;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: rgba(30, 64, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
}

.search-icon i {
  font-size: 16px;
}

.search-icon:hover {
  color: #f59e0b;
  background-color: rgba(245, 158, 11, 0.1);
  transform: scale(1.1);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-orange), var(--neon-orange));
  color: var(--text-white);
  padding: 12px 24px;
  border: 2px solid var(--accent-orange);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow:
    0 0 20px rgba(245, 158, 11, 0.5),
    0 4px 15px rgba(245, 158, 11, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  min-width: 120px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--neon-orange), var(--accent-orange));
  box-shadow:
    0 0 30px var(--glow-orange),
    0 6px 20px rgba(245, 158, 11, 0.4);
  border-color: var(--neon-orange);
}

.cta-button:hover::before {
  left: 100%;
}

/* ============================================ */
/* MENU MOBILE TOGGLE                          */
/* ============================================ */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1e40af;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ============================================ */
/* HERO SECTION                                */
/* ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.2) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.85) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: white;
}

.hero-left {
  text-align: left;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-badge i {
  color: var(--accent-blue);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.title-main {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  display: block;
}

.title-highlight {
  background: linear-gradient(135deg, var(--accent-orange), var(--neon-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  display: block;
  animation: highlightPulse 3s ease-in-out infinite;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--neon-orange));
  border-radius: 2px;
  animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes highlightPulse {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.1);
    transform: scale(1.01);
  }
}

@keyframes underlineGlow {
  0% {
    opacity: 0.7;
    box-shadow: 0 0 10px var(--accent-orange);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 20px var(--neon-orange);
  }
}

.hero-features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.feature-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.feature-item i {
  color: var(--accent-blue);
  font-size: 16px;
}

.feature-item:nth-child(2) i {
  color: var(--accent-orange);
}

.feature-item:nth-child(2):hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent-orange);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.feature-item:nth-child(3) i {
  color: var(--neon-blue);
}

.feature-item:nth-child(3):hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--neon-blue);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ============================================ */
/* FORMULÁRIO DE CONTATO NO HERO               */
/* ============================================ */
.hero-contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  max-width: 350px;
  width: 100%;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(59, 130, 246, 0.2);
}

.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
}

.hero-contact-form {
  margin-bottom: 20px;
}

.hero-contact-form .form-group {
  margin-bottom: 15px;
}

.hero-contact-form input,
.hero-contact-form select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hero-contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-contact-form input:focus,
.hero-contact-form select:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

/* ============================================ */
/* SEÇÃO WHATSAPP                              */
/* ============================================ */
.whatsapp-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #25d366, #20ba5a);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #20ba5a, #25d366);
}

.whatsapp-btn i {
  font-size: 18px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  text-decoration: none;
  min-width: 200px;
  justify-content: center;
}

.btn-primary {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
}

.btn-primary:hover {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--glow-blue);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.btn-secondary:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--glow-orange);
}

/* ============================================ */
/* SEÇÕES GERAIS                               */
/* ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  color: var(--accent-orange);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================ */
/* SEÇÃO DE PLANOS                             */
/* ============================================ */
.plans-section {
  padding: 60px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, rgba(0, 10, 20, 0.3) 0%, rgba(10, 15, 30, 0.5) 50%, rgba(0, 10, 20, 0.3) 100%);
  position: relative;
  overflow: hidden;
}

.plans-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(59, 130, 246, 0.02) 100px,
      rgba(59, 130, 246, 0.02) 102px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 100px,
      rgba(245, 158, 11, 0.02) 100px,
      rgba(245, 158, 11, 0.02) 102px
    );
  pointer-events: none;
  animation: gridMove 20s linear infinite;
}

.plans-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
    radial-gradient(circle, rgba(245, 158, 11, 0.1) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
  background-position: 0 0, 40px 60px;
  animation: floatingDots 30s linear infinite;
  pointer-events: none;
  opacity: 0.3;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(102px, 102px);
  }
}

@keyframes floatingDots {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-40px, -60px) rotate(360deg);
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-blue);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.plan-card.featured {
  border-color: var(--accent-orange);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}

.plan-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.4);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-orange), var(--neon-orange));
  color: white;
  padding: 8px 20px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.plan-header {
  margin-bottom: 30px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 15px;
}

.plan-speed {
  margin-bottom: 10px;
}

.speed-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
}

.speed-unit {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-left: 5px;
}

.plan-upload {
  color: var(--text-light);
  font-size: 0.95rem;
}

.plan-features {
  margin-bottom: 30px;
}

.plan-features ul {
  list-style: none;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-light);
}

.plan-features li i {
  color: var(--accent-blue);
  width: 16px;
  font-size: 14px;
}

.plan-price {
  margin-bottom: 20px;
}

.currency {
  font-size: 1.2rem;
  color: var(--text-light);
  vertical-align: top;
}

.value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
}

.cents {
  font-size: 1.5rem;
  color: var(--text-light);
}

.period {
  font-size: 1rem;
  color: var(--text-light);
  margin-left: 5px;
}

.plan-description {
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
}

.plan-cta {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.plan-cta:hover {
  background: linear-gradient(135deg, var(--neon-blue), var(--accent-blue));
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.plan-card.featured .plan-cta {
  background: linear-gradient(135deg, var(--accent-orange), var(--neon-orange));
}

.plan-card.featured .plan-cta:hover {
  background: linear-gradient(135deg, var(--neon-orange), var(--accent-orange));
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
}

/* ============================================ */
/* SEÇÃO DE VANTAGENS                          */
/* ============================================ */
.advantages-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 60%, rgba(245, 158, 11, 0.04) 0%, transparent 40%);
  animation: orangeGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.advantages-section::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background:
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(245, 158, 11, 0.03) 45deg,
      transparent 90deg,
      rgba(245, 158, 11, 0.05) 135deg,
      transparent 180deg,
      rgba(245, 158, 11, 0.02) 225deg,
      transparent 270deg,
      rgba(245, 158, 11, 0.04) 315deg,
      transparent 360deg
    );
  animation: orangeRotate 25s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes orangeGlow {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.95) rotate(-1deg);
    opacity: 0.4;
  }
}

@keyframes orangeRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.05);
  }
  50% {
    transform: rotate(180deg) scale(0.95);
  }
  75% {
    transform: rotate(270deg) scale(1.02);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.3);
}

.advantage-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--accent-orange), var(--neon-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.advantage-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.advantage-card p {
  color: var(--text-light);
  line-height: 1.4;
  font-size: 0.85rem;
}

/* ============================================ */
/* SEÇÃO DE CONTATO                            */
/* ============================================ */
.contact-section {
  padding: 60px 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 45% 10%, rgba(245, 158, 11, 0.04) 0%, transparent 35%),
    linear-gradient(135deg, #1a1f2e 0%, #0a0f1c 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg,
      transparent 40%,
      rgba(59, 130, 246, 0.02) 45%,
      rgba(59, 130, 246, 0.04) 50%,
      rgba(59, 130, 246, 0.02) 55%,
      transparent 60%
    ),
    linear-gradient(-45deg,
      transparent 30%,
      rgba(245, 158, 11, 0.02) 35%,
      rgba(245, 158, 11, 0.03) 40%,
      rgba(245, 158, 11, 0.02) 45%,
      transparent 50%
    );
  background-size: 200px 200px, 150px 150px;
  animation: diagonalFlow 15s linear infinite;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background:
    radial-gradient(circle, rgba(59, 130, 246, 0.02) 2px, transparent 2px),
    radial-gradient(circle, rgba(245, 158, 11, 0.02) 1px, transparent 1px);
  background-size: 120px 120px, 80px 80px;
  background-position: 0 0, 60px 40px;
  animation: floatingParticles 20s linear infinite reverse;
  pointer-events: none;
  opacity: 0.4;
}

@keyframes diagonalFlow {
  0% {
    transform: translate(0, 0) skew(0deg);
  }
  100% {
    transform: translate(200px, 150px) skew(2deg);
  }
}

@keyframes floatingParticles {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-60px, -40px) rotate(-360deg);
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-methods {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--accent-blue);
  transform: translateX(10px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-details span {
  color: var(--neon-blue);
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.contact-details small {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.2;
}

.contact-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-actions .btn-primary,
.contact-actions .btn-secondary {
  flex: 1;
  min-width: 180px;
}

/* ============================================ */
/* MAPA DE LOCALIZAÇÃO                         */
/* ============================================ */
.contact-map {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-map:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.contact-map h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-map h4 i {
  color: var(--accent-orange);
  font-size: 16px;
}

.map-address {
  margin-bottom: 15px;
}

.map-address p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 3px;
  opacity: 0.8;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  filter: grayscale(0.3) brightness(0.8);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0) brightness(1);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.map-link:hover {
  color: var(--neon-blue);
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.map-link i {
  font-size: 12px;
}

/* ============================================ */
/* FORMULÁRIO DE CONTATO                       */
/* ============================================ */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
  border-radius: 20px 20px 0 0;
}

.contact-form h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

/* ============================================ */
/* RODAPÉ                                      */
/* ============================================ */
.footer-section {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-column h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--neon-orange));
  border-radius: 1px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
}

.footer-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-column ul li a:hover {
  color: var(--accent-orange);
  opacity: 1;
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-info-item i {
  color: var(--accent-orange);
  width: 16px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
  opacity: 1;
}

.footer-links span {
  color: var(--text-light);
  opacity: 0.3;
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.7;
}

.developer-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.developer-link:hover {
  color: var(--neon-orange);
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.developer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.developer-link:hover::after {
  width: 100%;
}

/* ============================================ */
/* RESPONSIVIDADE                              */
/* ============================================ */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    justify-content: center;
    gap: 15px;
  }

  .feature-item {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .hero-contact-card {
    max-width: 100%;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-actions {
    flex-direction: column;
  }

  .contact-map {
    margin-top: 20px;
    padding: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-credits {
    order: -1;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .feature-item {
    width: fit-content;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}