/* RapidFibra - Design Moderno */
:root {
  --primary: #0a6cf1;
  --secondary: #00c896;
  --accent: #b6e900;
  --background: #f8fafc;
  --surface: #fff;
  --text: #1a202c;
  --text-muted: #718096;
  --border: #e2e8f0;
  --radius: 16px;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: 'Inter', 'system-ui', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

/* Header Styles */
.rider-superior {
  background: #1a202c;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #2d3748;
}

.rider-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.rider-contatos {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.rider-whatsapp, .rider-fone {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.rider-whatsapp:hover, .rider-fone:hover {
  color: #fff;
}

.rider-central {
  color: var(--text);
  background: var(--accent);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 2rem;
}

.rider-central:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-1px);
}

.main-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: relative;
}

.logo img {
  height: 48px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-space {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(10, 108, 241, 0.1), transparent);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(182, 233, 0, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(0, 200, 150, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(10, 108, 241, 0.3), transparent);
  background-repeat: repeat;
  background-size: 100px 100px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-10px) translateX(5px); }
  100% { transform: translateY(0px) translateX(0px); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(182, 233, 0, 0.1);
  border: 1px solid rgba(182, 233, 0, 0.3);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-space h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-space p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #cbd5e0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.hero-btn.primary {
  background: var(--accent);
  color: var(--text);
}

.hero-btn.primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #cbd5e0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Plans Section */
.plans-section {
  background: #fff;
  padding: 6rem 0;
  position: relative;
}

.plans-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--background), #fff);
}

.plans-grid.space-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.plan-card.space-plan {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.plan-card.space-plan:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.plan-card.space-plan.destaque {
  border-color: #ff6b35;
  transform: scale(1.08);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.25);
  position: relative;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  border: 3px solid transparent;
  background-clip: padding-box;
  overflow: visible;
  color: #fff;
}

.plan-card.space-plan.destaque::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 24px;
  z-index: -1;
}

/* Estilos especiais para o card em destaque */
.plan-card.space-plan.destaque .plan-mb {
  color: #ffa726;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(255, 167, 38, 0.4);
}

.plan-card.space-plan.destaque .plan-label {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plan-card.space-plan.destaque .plan-preco {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plan-card.space-plan.destaque .plan-preco .cifrao,
.plan-card.space-plan.destaque .plan-preco .mes {
  color: #ffa726;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plan-card.space-plan.destaque .plan-info {
  color: #cbd5e0;
  font-weight: 500;
}

.plan-card.space-plan.destaque .feature-item {
  color: #fff;
  font-weight: 600;
}

.plan-card.space-plan.destaque .feature-item i {
  color: #00d4aa;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 50%;
  padding: 2px;
}

.plan-card.space-plan.destaque .plan-btn.space-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.plan-card.space-plan.destaque .plan-btn.space-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e6831a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.plan-card.space-plan.destaque:hover {
  transform: scale(1.1);
  box-shadow: 0 30px 60px rgba(255, 107, 53, 0.3);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  border: 2px solid #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-mb {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.plan-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-pricing {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-preco {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.plan-preco .cifrao {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.plan-preco .mes {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-info {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.4;
}

.plan-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.feature-item i {
  color: var(--secondary);
  font-size: 1rem;
  width: 16px;
}

.plan-selo {
  background: none;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  position: relative;
}

.plan-card.space-plan.destaque .plan-selo {
  background: none;
  color: #00d4aa;
  font-weight: 600;
  text-shadow: none;
  box-shadow: none;
  border: none;
}

/* Business Plans Styles */
.business-plans {
  background: var(--background);
}

.business-plans::before {
  background: linear-gradient(180deg, #fff, var(--background));
}

.plan-card.business-card {
  border: 2px solid #e2e8f0;
  background: #fff;
}

.plan-card.business-card:hover {
  border-color: #667eea;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.plan-card.business-card .plan-mb {
  color: #667eea;
}

.plan-card.business-card .plan-label {
  color: #4a5568;
}

.plan-card.business-card .plan-preco .cifrao,
.plan-card.business-card .plan-preco .mes {
  color: #667eea;
}

.plan-card.business-card .plan-btn.space-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-card.business-card .plan-btn.space-btn:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.plan-card.business-card .plan-btn.space-btn:hover {
  background: #5a67d8;
}

.plan-card.business-card .feature-item i {
  color: #667eea;
}

/* Business Card Destaque */
.plan-card.destaque-business {
  border-color: #667eea;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
  position: relative;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  border: 3px solid transparent;
  background-clip: padding-box;
  color: #fff;
}

.plan-card.destaque-business::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 24px;
  z-index: -1;
}

.business-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.plan-card.destaque-business .plan-mb {
  color: #a78bfa;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(167, 139, 250, 0.3);
}

.plan-card.destaque-business .plan-label {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plan-card.destaque-business .plan-preco {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plan-card.destaque-business .plan-preco .cifrao,
.plan-card.destaque-business .plan-preco .mes {
  color: #a78bfa;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.plan-card.destaque-business .plan-info {
  color: #cbd5e0;
  font-weight: 500;
}

.plan-card.destaque-business .feature-item {
  color: #fff;
  font-weight: 600;
}

.plan-card.destaque-business .feature-item i {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 50%;
  padding: 2px;
}

.plan-card.destaque-business .plan-btn.space-btn {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.4);
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.plan-card.destaque-business .plan-btn.space-btn:hover {
  background: linear-gradient(135deg, #9f7aea, #805ad5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.5);
}

.plan-card.destaque-business:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

/* Advantages Section */
.advantages-section {
  background: var(--background);
  padding: 6rem 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

.advantage-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.advantage-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Streaming Section */
.streaming-section {
  background: #fff;
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.streaming-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.streaming-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.streaming-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.streaming-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.streaming-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.streaming-feature i {
  color: var(--secondary);
  font-size: 1.25rem;
  width: 20px;
}

.streaming-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.streaming-logo {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.streaming-logo:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.streaming-logo img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--background);
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-content p {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.cta-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.cta-benefit i {
  color: var(--accent);
  font-size: 1.25rem;
  width: 20px;
}

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

.cta-contact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1.125rem;
}

.contact-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.contact-btn.whatsapp:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-btn.phone {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-btn.phone:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-note {
  opacity: 0.8;
  font-size: 0.875rem;
}

/* Footer */
.footer-space {
  background: #1a202c;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.footer-contatos {
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.footer-fone {
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1rem;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.footer-social-icon {
  color: var(--accent);
  font-size: 1.5rem;
  transition: all 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(182, 233, 0, 0.1);
}

.footer-social-icon:hover {
  color: #fff;
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  text-align: center;
  color: #718096;
  font-size: 0.875rem;
  border-top: 1px solid #2d3748;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  transition: transform 0.2s;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.whatsapp-float:hover {  transform: scale(1.1);
}

/* ========================================
   NOVO MENU MOBILE - SISTEMA COMPLETO
   ======================================== */

/* Botão do menu mobile (hambúrguer) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animação do hambúrguer quando ativo */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu mobile */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  padding: 100px 0 0 0;
  margin: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid #eee;
}

.mobile-nav-links a {
  display: block;
  padding: 15px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.mobile-nav-links a:hover {
  background: #f5f5f5;
  color: var(--primary);
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Media queries para mobile */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Responsiveness Improvements */

/* Ensure images are always responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Improve overflow on small elements */
.plan-features {
  overflow-x: auto;
}

/* Ensure cards do not break on very small screens */
.plan-card.space-plan,
.advantage-card,
.testimonial-card {
  min-width: 0;
  word-wrap: break-word;
}

/* Improve spacing in feature lists */
.feature-item {
  flex-wrap: wrap;
  min-height: 24px;
}

/* Ensure badges do not break the layout */
.popular-badge,
.business-badge {
  white-space: nowrap;
  min-width: max-content;
}

/* Improve accessibility on small buttons */
.plan-btn.space-btn,
.hero-btn,
.contact-btn {
  min-height: 44px; /* Recommended minimum size for touch */
  touch-action: manipulation;
}

/* Improve mobile navigation */
.nav-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
}

/* Improve readability on small screens */
@media (max-width: 768px) {
  /* Correções gerais */
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
    /* Header superior mobile - Simplificado em linha única */
  .rider-superior {
    padding: 0.5rem 0;
    font-size: 0.75rem;
  }
  
  .rider-container {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .rider-contatos {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .rider-whatsapp {
    display: none; /* Manter apenas um telefone no mobile */
  }  .rider-fone, .rider-central {
    font-size: 0.75rem;
    white-space: nowrap;
    margin: 0;
    padding: 0.25rem 0.5rem;
  }
  
  /* Streaming mobile - Cards menores e sem hover */
  .streaming-section {
    padding: 4rem 0;
  }
  
  .streaming-content {
    padding: 0 1rem;
  }
  
  .streaming-logos {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
    max-width: 100%;
  }
  
  .streaming-logo {
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }
  
  /* Remover hover dos cards de streaming no mobile */
  .streaming-logo:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
  }
  
  .streaming-text h2 {
    font-size: 2rem;
  }
  
  .streaming-text {
    margin-bottom: 2rem;
  }
  
  /* Outras correções mobile */
  .plan-info,
  .testimonial-content p,
  .advantage-card p {
    line-height: 1.6;
  }
    .plans-grid.space-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Remover hover de aumento dos cards no mobile */
  .plan-card.space-plan:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm);
  }
  
  .plan-card.space-plan.destaque {
    transform: none;
    margin: 1rem 0;
  }
  
  .plan-card.space-plan.destaque:hover {
    transform: none !important;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
  }
  
  .plan-card.destaque-business {
    transform: none;
    margin: 1rem 0;
  }
  
  .plan-card.destaque-business:hover {
    transform: none !important;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
  }
  
  .plan-card.business-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm);
  }
  
  /* Remover hover dos cards de vantagens no mobile */
  .advantage-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm);
  }
  
  /* Remover hover dos cards de depoimentos no mobile */
  .testimonial-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm);
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Garantir que os cards de streaming não sejam cortados */
@media (max-width: 768px) {
  .streaming-section .container {
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .streaming-content {
    max-width: 100%;
    overflow: hidden;
  }
  
  .streaming-logos {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  
  .streaming-logo {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
}

/* Melhorar layout do header superior mobile */
@media (max-width: 480px) {
  .rider-container {
    padding: 0 0.5rem;
    gap: 0.25rem;
  }
  
  .rider-contatos {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .rider-fone, .rider-central {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
    /* Cards de streaming ainda menores em telas muito pequenas */
  .streaming-logo {
    max-width: 150px;
    padding: 0.75rem;
  }
}

/* Improve contrast on interactive elements */
@media (prefers-contrast: high) {
  .plan-btn.space-btn,
  .hero-btn,
  .contact-btn {
    border: 2px solid currentColor;
  }
  
  .footer-social-icon {
    border: 1px solid currentColor;
  }
}

/* Optimize for motion preferences */
@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;
  }
  
  .hero-particles {
    animation: none;
  }
}
