/* ============================================= */
/*   HiperNet Fibra - Estilo Premium             */
/*   Tema: Dark | Glassmorphism | Animações      */
/* ============================================= */

/* ---------- VARIÁVEIS ---------- */
:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #1A1A1A;
  --primary: #ff6900;
  --primary-dark: #cc5500;
  --secondary: #ff8c00;
  --success: #2ECC71;
  --text-primary: #FFFFFF;
  --text-secondary: #C8D0D9;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --font-primary: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 16px;
  --section-padding: 100px 0;
  --bs-primary: #ff6900;
  --bs-primary-rgb: 255, 105, 0;
}

/* ---------- RESET / BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary);
}

/* ---------- UTILITÁRIOS ---------- */
.section-padding {
  padding: var(--section-padding);
}

.text-secondary-light {
  color: var(--text-secondary) !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(25, 181, 254, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(25, 181, 254, 0.2);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  max-width: 600px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  .section-padding {
    padding: 60px 0;
  }
}

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.05), transparent);
  pointer-events: none;
  border-radius: inherit;
}

.glass-card:hover {
  border-color: rgba(15, 98, 254, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(15, 98, 254, 0.1);
}

/* ---------- GLOW BUTTON ---------- */
.btn-glow {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 32px;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  border-radius: 14px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  z-index: -1;
}

.btn-glow:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(15, 98, 254, 0.5), 0 0 60px rgba(15, 98, 254, 0.2);
}

.btn-glow:hover::before {
  opacity: 1;
}

.btn-glow:active {
  transform: scale(0.98);
}

.btn-outline-orange {
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  transition: var(--transition);
}
.btn-outline-orange:hover {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 0 20px rgba(255, 105, 0, 0.3);
}

/* ---------- NAVBAR ---------- */
#mainNav {
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
  z-index: 1000;
}

#mainNav.navbar-scrolled {
  background: rgba(7, 26, 47, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(7, 26, 47, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 16px;
    margin-top: 12px;
    border: 1px solid var(--card-border);
  }
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

/* ---------- HERO ---------- */
.hero-section {
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(15, 98, 254, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(25, 181, 254, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(46, 204, 113, 0.05), transparent);
  pointer-events: none;
}

.particles-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-illustration {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.hero-badge {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--success);
  background: rgba(46, 204, 113, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 10px;
  background: var(--primary);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-stats .stat-number {
    font-size: 1.2rem;
  }
}

/* ---------- DIFERENCIAIS ---------- */
#diferenciais {
  position: relative;
}

.card-diferencial {
  padding: 36px 28px;
  text-align: center;
}

.card-diferencial .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.15), rgba(25, 181, 254, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.card-diferencial:hover .card-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.card-diferencial h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-diferencial p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ---------- COUNTERS ---------- */
.counters-section {
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.05), rgba(25, 181, 254, 0.02));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.counter-card {
  padding: 24px 16px;
}

.counter-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 12px;
  opacity: 0.8;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: 700;
  display: inline;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-plus,
.counter-percent,
.counter-hours {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-left: 2px;
}

.counter-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 400;
}

@media (max-width: 576px) {
  .counter-number {
    font-size: 2rem;
  }
}

/* ---------- PLANOS ---------- */
.card-plano {
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}

.card-plano.featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(15, 98, 254, 0.15);
}

.card-plano.featured:hover {
  transform: scale(1.05);
}

.plano-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  z-index: 2;
}

.plano-header {
  padding: 36px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.plano-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.plano-speed {
  margin-bottom: 16px;
}

.speed-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.speed-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 4px;
}

.plano-price {
  margin-top: 8px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 500;
  vertical-align: top;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price-cents {
  font-size: 1rem;
  font-weight: 500;
  vertical-align: super;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: block;
  margin-top: 4px;
}

.plano-body {
  padding: 24px 32px 32px;
}

.plano-beneficios {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.plano-beneficios li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plano-beneficios li i {
  font-size: 1rem;
  flex-shrink: 0;
}

.plano-cta {
  border-radius: 12px !important;
  font-weight: 600;
}

@media (max-width: 991px) {
  .card-plano.featured {
    transform: none;
  }
  .card-plano.featured:hover {
    transform: translateY(-4px);
  }
}

/* ---------- COBERTURA ---------- */
#cobertura {
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.03), transparent);
}



.coverage-form .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.coverage-form .form-control,
.coverage-form .input-group-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: #fff;
  border-radius: 12px;
}

.coverage-form .form-control:focus,
.coverage-form .input-group-text:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.15);
  color: #fff;
}

.coverage-form .input-group-text {
  border-right: none;
}

.coverage-form .form-control {
  border-left: none;
}

.coverage-form .input-group > :first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.coverage-form .input-group > :last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* ---------- EMPRESAS ---------- */
.card-empresa {
  padding: 36px 28px;
  text-align: center;
}

.card-empresa i {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.card-empresa:hover i {
  color: var(--primary);
  transform: scale(1.15);
}

.card-empresa h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-empresa p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ---------- CLIENTE ---------- */
.card-cliente {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  text-align: center;
  color: var(--text-primary);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.card-cliente i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 12px;
  transition: var(--transition);
}

.card-cliente span {
  font-size: 0.85rem;
  font-weight: 500;
}

.card-cliente:hover {
  color: #fff;
  border-color: rgba(15, 98, 254, 0.4);
  transform: translateY(-6px);
}

.card-cliente:hover i {
  color: var(--primary);
  transform: scale(1.15);
}



/* ---------- DEPOIMENTOS ---------- */
.testimonial-card {
  max-width: 600px;
  padding: 48px 36px;
}

.testimonial-avatar {
  margin-bottom: 16px;
}

.testimonial-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  object-fit: cover;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.3rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

#testimonialCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

#testimonialCarousel .carousel-indicators button.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  opacity: 0.7;
}

#testimonialCarousel .carousel-control-prev { left: -20px; }
#testimonialCarousel .carousel-control-next { right: -20px; }

@media (max-width: 768px) {
  .testimonial-card { padding: 32px 20px; }
  #testimonialCarousel .carousel-control-prev,
  #testimonialCarousel .carousel-control-next { display: none; }
}

/* ---------- PLANOS CAROUSEL ---------- */
#planosCarousel .carousel-control-prev,
#planosCarousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  opacity: 0.8;
}
#planosCarousel .carousel-control-prev { left: 0; }
#planosCarousel .carousel-control-next { right: 0; }
#planosCarousel .carousel-control-prev-icon,
#planosCarousel .carousel-control-next-icon {
  filter: invert(1) brightness(2);
}
#planosCarousel .carousel-indicators {
  position: static;
  margin-top: 24px;
}
#planosCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-secondary);
  opacity: 0.4;
  border: none;
  margin: 0 4px;
}
#planosCarousel .carousel-indicators button.active {
  opacity: 1;
  background: var(--primary);
}
@media (max-width: 768px) {
  #planosCarousel .carousel-control-prev,
  #planosCarousel .carousel-control-next { display: none; }
}

/* ---------- FAQ ---------- */
.accordion-item {
  margin-bottom: 12px;
  border: 1px solid var(--card-border) !important;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  background: var(--card-bg);
}

.accordion-button {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  background: transparent;
  padding: 20px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(15, 98, 254, 0.1);
  color: var(--secondary);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff8c00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CONTATO ---------- */
.contact-form .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.15);
  color: #fff;
}

.contact-form .form-select option {
  background: var(--bg-primary);
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--card-border);
  background: rgba(0, 0, 0, 0.2);
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

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

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social .social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: var(--card-border);
  opacity: 0.5;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: #fff;
  color: #333;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: whatsapp-pulse 2s infinite;
}

/* ---------- AOS OVERRIDES ---------- */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .plano-header,
  .plano-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .speed-number {
    font-size: 2.5rem;
  }
  .price-value {
    font-size: 2.2rem;
  }
}

/* ---------- ACESSIBILIDADE ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ---------- BOOTSTRAP OVERRIDES ---------- */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 30px var(--bg-primary) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* ---------- ANIMAÇÕES ADICIONAIS ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(15, 98, 254, 0.2); }
  50% { box-shadow: 0 0 40px rgba(15, 98, 254, 0.4); }
}

.glow-pulse {
  animation: glow-pulse 3s ease-in-out infinite;
}
