/* ------------------------------------------------------------
   Global Styles & Dark Reset
   ------------------------------------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #070a13;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

.section-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

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

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #070a13;
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #22c55e;
}

/* ------------------------------------------------------------
   Promo Banner
   ------------------------------------------------------------ */
.promo-banner {
  background: linear-gradient(90deg, #ff0055 0%, #22c55e 35%, #ff0055 70%, #22c55e 100%);
  background-size: 300% 100%;
  animation: bannerGlow 4s linear infinite;
  color: #ffffff;
  text-align: center;
  padding: 1rem 1rem;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(255, 0, 85, 0.4);
  z-index: 1100;
  position: relative;
  letter-spacing: 0.5px;
}

@keyframes bannerGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.promo-banner strong {
  text-transform: uppercase;
  color: #ffffff;
  background: #ff0055;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.6);
  display: inline-block;
  margin-left: 5px;
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
  background: rgba(7, 10, 19, 0.95);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.whatsapp-top {
  background-color: #22c55e;
  color: #070a13;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-top:hover {
  background-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* ------------------------------------------------------------
   Hero Section & Raining Icons
   ------------------------------------------------------------ */
.hero {
  background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.1) 0%, rgba(7, 10, 19, 0) 60%), #070a13;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.03);
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

/* Raining Icons Layer */
.raining-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.falling-icon {
  position: absolute;
  opacity: 0;
  animation: fall linear infinite;
  color: rgba(34, 197, 94, 0.15); /* Neon green faint color */
}

@keyframes fall {
  0% {
    transform: translateY(-80px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

.badge-hero {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
}

/* Prominent Speed Highlights */
.speed-highlights {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.speed-tag {
  font-size: 2.2rem;
  font-weight: 900;
  color: #475569;
  letter-spacing: -0.5px;
}

.speed-tag.highlight-speed {
  color: #22c55e;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  font-size: 2.6rem;
}

.speed-separator {
  color: #334155;
  font-size: 1.8rem;
}

.hero-frase {
  font-size: 1.1rem;
  color: #94a3b8;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.hero-offer-box {
  background: rgba(13, 19, 33, 0.85);
  border: 2px solid #22c55e;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
  animation: offerPulse 2.5s infinite ease-in-out;
  max-width: 500px;
}

@keyframes offerPulse {
  0%, 100% { border-color: #22c55e; box-shadow: 0 0 20px rgba(34, 197, 94, 0.2); }
  50% { border-color: #ff0055; box-shadow: 0 0 30px rgba(255, 0, 85, 0.4); }
}

.offer-title {
  font-size: 0.85rem;
  font-weight: 850;
  color: #22c55e;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.offer-price-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.offer-main-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.offer-value {
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.offer-subtext {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.btn-primary {
  background-color: #22c55e;
  color: #070a13;
  padding: 1.2rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #10b981;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5);
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image .hero-flyer {
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.25);
  border: 4px solid #22c55e;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: all 0.3s ease;
}

.hero-image .hero-flyer:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(34, 197, 94, 0.45);
}

/* ------------------------------------------------------------
   Installation Highlight
   ------------------------------------------------------------ */
.installation-highlight {
  background: #0d1321;
  padding: 5rem 0;
  text-align: center;
}

.installation-highlight h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.map-wrapper {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.map-container {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.map-container img.brazil-map {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(34, 197, 94, 0.1)) invert(1) opacity(0.85);
}

/* Wifi Ping points on map */
.wifi-ping {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #22c55e;
  border-radius: 50%;
}

.wifi-ping span {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  border: 2px solid #22c55e;
  border-radius: 50%;
  animation: ping 2s infinite ease-out;
  opacity: 0;
}

.ping-1 { top: 40%; left: 35%; }
.ping-2 { top: 65%; left: 62%; }
.ping-3 { top: 75%; left: 55%; }
.ping-4 { top: 25%; left: 45%; }

@keyframes ping {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* ------------------------------------------------------------
   Pricing Section
   ------------------------------------------------------------ */
.pricing {
  background-color: #070a13;
  padding: 6rem 0;
}

.pricing h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 4rem;
}

.card {
  background: #0d1321;
  border-radius: 20px;
  padding: 3rem 2rem;
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(226, 232, 240, 0.05);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.08);
}

.card .badge, .card .badge-premium {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: #070a13;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.card .badge {
  background-color: #475569;
  color: #ffffff;
}

.card h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.card .price {
  font-size: 3.2rem;
  font-weight: 900;
  color: #22c55e;
  margin-bottom: 1.5rem;
}

.card .price .currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
}

.card .price .period {
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
}

.speed-bold {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.card ul.features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.card ul.features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #94a3b8;
}

.card ul.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 800;
}

.card ul.features li.info-note {
  font-size: 0.8rem;
  opacity: 0.7;
}

.card ul.features li.info-note::before {
  content: 'ℹ';
  color: #94a3b8;
}

.btn-plan {
  background-color: #1e293b;
  color: #ffffff;
  width: 100%;
  font-size: 1rem;
  border-radius: 50px;
}

.btn-plan:hover {
  background-color: #22c55e;
  color: #070a13;
  box-shadow: 0 6px 15px rgba(34, 197, 94, 0.2);
}

/* Highlight styles for Plano 100 Mega (PRO) */
.plan-pro {
  border: 2px solid #22c55e;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.12);
}

.plan-pro:hover {
  transform: scale(1.06) translateY(-5px);
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.2);
}

.plan-pro .badge-accent {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #22c55e;
  color: #070a13;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.plan-pro h3 {
  color: #22c55e;
}

.plan-pro .btn-plan {
  background-color: #22c55e;
  color: #070a13;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

.plan-pro .btn-plan:hover {
  background-color: #10b981;
}

.card-header-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Animated Fire Icon next to Plano 100 Mega */
.fire-icon-container {
  display: inline-flex;
  align-items: center;
}

.fire-svg {
  filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.6));
}

@keyframes flame-pulse {
  0%, 100% {
    transform: scale(1) rotate(-1deg);
  }
  50% {
    transform: scale(1.1) rotate(1deg);
  }
}

.flame-back {
  animation: flame-pulse 1.2s infinite ease-in-out;
  transform-origin: bottom center;
}

.flame-mid {
  animation: flame-pulse 0.9s infinite ease-in-out alternate;
  transform-origin: bottom center;
}

.flame-front {
  animation: flame-pulse 0.6s infinite ease-in-out alternate-reverse;
  transform-origin: bottom center;
}

/* Premium Ultra 200 Mega style */
.plan-premium {
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.05) 0%, rgba(13, 19, 33, 0) 80%), #0d1321;
}

.plan-premium .badge-premium {
  background-color: #ffd700;
  color: #070a13;
}

.plan-premium h3 {
  color: #ffd700;
}

.plan-premium .price {
  color: #ffd700;
}

.plan-premium .btn-plan {
  background-color: #ffd700;
  color: #070a13;
  font-weight: 800;
}

.plan-premium .btn-plan:hover {
  background-color: #22c55e;
  box-shadow: 0 6px 15px rgba(34, 197, 94, 0.2);
}

/* ------------------------------------------------------------
   Speed Comparison Section
   ------------------------------------------------------------ */
.speed-comparison {
  background: #0d1321;
  padding: 5rem 0;
}

.speed-comparison h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

.comparison-bars {
  max-width: 800px;
  margin: 3rem auto 2.5rem;
}

.comp-bar-item {
  margin-bottom: 2rem;
}

.comp-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.comp-speed {
  font-weight: 800;
  color: #ffffff;
}

.comp-use {
  color: #94a3b8;
}

.progress-track {
  width: 100%;
  height: 12px;
  background-color: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1s ease-out;
}

.fill-50 {
  width: 25%;
  background: #64748b;
}

.fill-100 {
  width: 50%;
  background: linear-gradient(90deg, #64748b 0%, #22c55e 100%);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

.fill-200 {
  width: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #ffd700 100%);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.relation-arrow {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 3rem;
  color: #475569;
}

.relation-arrow span {
  margin: 0 0.5rem;
}

.relation-arrow .arrow-symbol {
  color: #334155;
}

.relation-arrow .highlight-arrow {
  color: #22c55e;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* ------------------------------------------------------------
   Ideal Plan Breakdown Section
   ------------------------------------------------------------ */
.ideal-plan {
  background-color: #070a13;
  padding: 5rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.02);
}

.ideal-plan h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.ideal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.ideal-item {
  background: #0d1321;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  flex: 1 1 300px;
  max-width: 360px;
  border-top: 4px solid #22c55e;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ideal-item:last-child {
  border-top-color: #ffd700;
}

.ideal-item h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.ideal-item p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* ------------------------------------------------------------
   Online Stats
   ------------------------------------------------------------ */
.online-stats {
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08) 0%, rgba(13, 19, 33, 0) 70%), #0d1321;
  padding: 5rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.02);
}

.edit-disclaimer {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
}

.stat-item {
  background: #070a13;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  flex: 1 1 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.stat-item .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item .value {
  font-size: 2.2rem;
  font-weight: 900;
  color: #22c55e;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.stat-item .label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
}

/* ------------------------------------------------------------
   Testimonials Section
   ------------------------------------------------------------ */
.testimonials {
  background-color: #070a13;
  padding: 5rem 0;
}

.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding: 2rem 1rem;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 350px;
  background: #0d1321;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.02);
  cursor: grab;
}

.testimonial-card:active {
  cursor: grabbing;
}

.testimonial-card .stars {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.testimonial-card .review {
  font-style: italic;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-card .author {
  font-weight: 700;
  color: #22c55e;
  font-size: 0.9rem;
}

/* ------------------------------------------------------------
   Final CTA
   ------------------------------------------------------------ */
.final-cta {
  background: linear-gradient(135deg, #070a13 0%, #0d1321 100%);
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(226, 232, 240, 0.02);
  border-bottom: 1px solid rgba(226, 232, 240, 0.02);
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.final-cta p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: #020617;
  color: #64748b;
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-desc {
  font-size: 0.95rem;
  text-align: center;
}

.footer-desc a {
  color: #22c55e;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #22c55e;
}

.copy {
  margin-top: 2rem;
  font-size: 0.8rem;
  border-top: 1px solid rgba(226, 232, 240, 0.02);
  padding-top: 1.5rem;
  width: 100%;
  text-align: center;
}

/* ------------------------------------------------------------
   Floating WhatsApp Button
   ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #22c55e;
  color: #070a13;
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #10b981;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
}

.whatsapp-float span {
  font-weight: 800;
  font-size: 0.95rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ------------------------------------------------------------
   Responsive Styles
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    flex: none;
    width: 100%;
  }

  .hero-image {
    flex: none;
    width: 100%;
  }

  .hero-image img {
    max-width: 80%;
  }

  .speed-highlights {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .plan-cards {
    flex-direction: column;
    align-items: center;
  }

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

  .plan-pro {
    transform: none;
  }
  
  .plan-pro:hover {
    transform: translateY(-5px);
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 1rem;
    border-radius: 50%;
  }
}
