:root {
  --bg-color: #020617;
  --bg-color-alt: #0b1120;
  
  --surface: rgba(15, 23, 42, 0.4);
  --surface-hover: rgba(30, 41, 59, 0.6);
  --surface-solid: #0f172a;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(52, 211, 153, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --primary: #10b981; /* Emerald 500 */
  --primary-hover: #059669;
  --primary-glow: rgba(16, 185, 129, 0.2);
  --primary-gradient: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
  
  --container-max: 1200px;
  --font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

.ambient-glow.primary {
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
  animation: float 20s ease-in-out infinite alternate;
}

.ambient-glow.secondary {
  bottom: 0%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
  100% { transform: translate(20px, -40px); }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.container {
  width: min(100% - 40px, var(--container-max));
  margin: 0 auto;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.w-full { width: 100%; }

/* Typography Extras */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  white-space: nowrap;
}

/* Base Components & Classes */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.hover-scale:hover {
  transform: translateY(-4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.btn-primary {
  background: var(--primary-gradient);
  color: #022c22;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

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

.btn-large {
  min-height: 60px;
  padding: 0 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
}

/* Sections */
.section {
  padding: 110px 0;
  position: relative;
  z-index: 10;
}

.section-dark {
  background: rgba(4, 9, 20, 0.6);
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag.inline { margin-bottom: 0; }

.section-head {
  margin-bottom: 50px;
  max-width: 800px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Topbar Components */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  color: #022c22;
}

.brand-badge.small {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-main);
  padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  opacity: 0;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  gap: 20px;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-cta {
  color: var(--primary) !important;
  font-weight: 600;
  margin-top: 10px;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Cards */
.hero-card-area {
  display: grid;
  gap: 24px;
  position: relative;
}

.hero-card-area::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: -1;
}

.mini-card, .status-card {
  padding: 32px;
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 16px;
}

.mini-label {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.mini-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.mini-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  font-weight: 600;
}

.status-indicator {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary);
}

.status-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.status-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.status-card li svg {
  color: var(--primary);
}

.divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
  margin: 0 auto;
}

/* Steps (Como Funciona) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 30px 0;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  z-index: 2;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.featured {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: inset 0 0 40px rgba(16, 185, 129, 0.05);
}

.featured-banner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-gradient);
  color: #022c22;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-icon {
  color: var(--primary);
  margin-bottom: 24px;
}

.service-icon.muted {
  color: var(--text-muted);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.check-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.notice-box {
  padding: 24px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.border-accent {
  border-left: 4px solid var(--primary);
}

.notice-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.notice-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.notice-text strong {
  color: var(--text-main);
}

.mt-4 { margin-top: 40px; }
.mt-neg { margin-top: -60px; position: relative; z-index: 20; }
.mt-6 { margin-top: 80px; }

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Coverage Area / Action Call */
.coverage-card {
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(2, 6, 23, 0.9) 100%);
}

.coverage-content h2 {
  font-size: 2.4rem;
  margin: 16px 0;
  font-weight: 700;
}

.coverage-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item summary {
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Footer area */
.cta-box {
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), 
              linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(2, 6, 23, 0.8) 100%);
  border-radius: var(--radius-lg);
  position: relative;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(16,185,129,0.3) 0%, rgba(255,255,255,0.02) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-box-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-box-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Footer */
.footer {
  background: #020617;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
}

.footer-desc {
  color: var(--text-muted);
  margin: 20px 0 30px;
  max-width: 300px;
}

.copyright {
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--text-main);
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text-main);
  transform: translateX(4px);
}

/* Media Queries */
@media (max-width: 1080px) {
  .hero-grid, .coverage-card, .cta-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav, .nav-cta {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .services-grid, .benefits-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card {
    text-align: center;
  }
  
  .step-icon {
    margin: 0 auto 20px;
  }
  
  .step-number {
    right: 50%;
    transform: translateX(50%);
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .coverage-card, .cta-box {
    padding: 32px;
    text-align: center;
  }
  
  .cta-actions {
    margin-top: 20px;
  }
}
