/* TriadePay - Landing Page */
:root {
  --color-bg: #0a0a0f;
  --color-bg-elevated: #12121a;
  --color-surface: #1a1a24;
  --color-border: #2a2a38;
  --color-text: #f5f5f7;
  --color-text-muted: #8e8e99;
  --color-primary: #00A6FF;
  --color-primary-hover: #33B8FF;
  --color-accent: #22c55e;
  --color-accent-muted: #16a34a;
  --color-warning: #f59e0b;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Bolinhas subindo - fundo em movimento */
.bubbles-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 8px;
  height: 8px;
  background: rgba(0, 166, 255, 0.4);
  border-radius: 50%;
  animation: bubble-rise 15s ease-in-out infinite;
}

.bubble:nth-child(1) { left: 5%; width: 6px; height: 6px; animation-duration: 12s; animation-delay: 0s; opacity: 0.6; }
.bubble:nth-child(2) { left: 12%; width: 10px; height: 10px; animation-duration: 18s; animation-delay: -2s; opacity: 0.35; }
.bubble:nth-child(3) { left: 22%; width: 5px; height: 5px; animation-duration: 14s; animation-delay: -4s; opacity: 0.5; }
.bubble:nth-child(4) { left: 35%; width: 12px; height: 12px; animation-duration: 20s; animation-delay: -1s; opacity: 0.25; }
.bubble:nth-child(5) { left: 45%; width: 7px; height: 7px; animation-duration: 16s; animation-delay: -6s; opacity: 0.45; }
.bubble:nth-child(6) { left: 55%; width: 9px; height: 9px; animation-duration: 13s; animation-delay: -3s; opacity: 0.4; }
.bubble:nth-child(7) { left: 65%; width: 6px; height: 6px; animation-duration: 19s; animation-delay: -8s; opacity: 0.55; }
.bubble:nth-child(8) { left: 72%; width: 11px; height: 11px; animation-duration: 17s; animation-delay: -5s; opacity: 0.3; }
.bubble:nth-child(9) { left: 82%; width: 5px; height: 5px; animation-duration: 11s; animation-delay: -7s; opacity: 0.65; }
.bubble:nth-child(10) { left: 90%; width: 8px; height: 8px; animation-duration: 15s; animation-delay: -1s; opacity: 0.4; }
.bubble:nth-child(11) { left: 8%; width: 7px; height: 7px; animation-duration: 21s; animation-delay: -10s; opacity: 0.35; }
.bubble:nth-child(12) { left: 28%; width: 4px; height: 4px; animation-duration: 10s; animation-delay: -2s; opacity: 0.7; }
.bubble:nth-child(13) { left: 38%; width: 9px; height: 9px; animation-duration: 16s; animation-delay: -9s; opacity: 0.3; }
.bubble:nth-child(14) { left: 52%; width: 6px; height: 6px; animation-duration: 14s; animation-delay: -4s; opacity: 0.5; }
.bubble:nth-child(15) { left: 68%; width: 10px; height: 10px; animation-duration: 22s; animation-delay: -6s; opacity: 0.28; }
.bubble:nth-child(16) { left: 78%; width: 5px; height: 5px; animation-duration: 12s; animation-delay: -3s; opacity: 0.6; }
.bubble:nth-child(17) { left: 18%; width: 8px; height: 8px; animation-duration: 15s; animation-delay: -7s; opacity: 0.4; background: rgba(34, 197, 94, 0.35); }
.bubble:nth-child(18) { left: 48%; width: 6px; height: 6px; animation-duration: 13s; animation-delay: -5s; opacity: 0.45; background: rgba(34, 197, 94, 0.3); }
.bubble:nth-child(19) { left: 88%; width: 7px; height: 7px; animation-duration: 18s; animation-delay: -11s; opacity: 0.38; }
.bubble:nth-child(20) { left: 58%; width: 4px; height: 4px; animation-duration: 9s; animation-delay: -2s; opacity: 0.65; background: rgba(34, 197, 94, 0.4); }

@keyframes bubble-rise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  50% {
    transform: translateY(-50vh) translateX(12px) scale(1.05);
  }
  92% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(-8px) scale(0.95);
    opacity: 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-footer .logo-img {
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #00A6FF;
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
}

.btn-ghost:hover {
  color: var(--color-text);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Grid sutil de fundo */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 166, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 166, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: hero-grid-pulse 8s ease-in-out infinite;
}

@keyframes hero-grid-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Orbes animados - fundo dinâmico */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}

.hero-bg-blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 166, 255, 0.35);
  top: -20%;
  left: -10%;
  animation: hero-blob-float 20s ease-in-out infinite;
}

.hero-bg-blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(0, 166, 255, 0.2);
  top: 30%;
  right: -15%;
  animation: hero-blob-float 25s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.hero-bg-blob-3 {
  width: 400px;
  height: 400px;
  background: rgba(34, 197, 94, 0.2);
  bottom: -10%;
  left: 20%;
  animation: hero-blob-float 22s ease-in-out infinite;
  animation-delay: -10s;
}

.hero-bg-blob-4 {
  width: 350px;
  height: 350px;
  background: rgba(0, 166, 255, 0.15);
  top: 50%;
  left: 50%;
  animation: hero-blob-float-center 18s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes hero-blob-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, -5%) scale(1.05);
  }
  50% {
    transform: translate(-5%, 5%) scale(0.98);
  }
  75% {
    transform: translate(3%, 3%) scale(1.02);
  }
}

@keyframes hero-blob-float-center {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    transform: translate(calc(-50% + 3%), calc(-50% - 2%)) scale(1.05);
  }
  50% {
    transform: translate(calc(-50% - 2%), calc(-50% + 3%)) scale(0.98);
  }
  75% {
    transform: translate(calc(-50% + 2%), calc(-50% + 2%)) scale(1.02);
  }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge-regulado {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.2);
  color: var(--color-accent);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges span {
  padding: 8px 16px;
  background: var(--color-surface);
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Section defaults */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.2);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Platform Preview / Dashboard Mockup */
.platform-preview {
  padding: 120px 0;
  background: var(--color-bg-elevated);
}

.dashboard-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* Taxas */
.taxas {
  padding: 120px 0;
}

.taxas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  justify-content: center;
}

.taxas-grid .taxa-card:only-child {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
}

.taxa-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.2s;
}

.taxa-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.taxa-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(0, 166, 255, 0.08) 0%, transparent 100%);
  text-align: center;
}

.taxa-card.featured .taxa-features {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
}

.taxa-card.featured .taxa-features li {
  display: inline-block;
  margin: 0 4px;
}

.taxa-card.featured .taxa-features li::before {
  content: '• ';
  margin-right: 2px;
}

.taxa-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.taxa-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.taxa-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.taxa-price {
  margin-bottom: 24px;
}

.taxa-valor {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.taxa-por {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.taxa-features {
  list-style: none;
}

.taxa-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}

.taxa-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.taxas-cta {
  text-align: center;
  color: var(--color-text-muted);
}

.taxas-cta a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.taxas-cta a:hover {
  text-decoration: underline;
}

/* Por que escolher a TriadePay */
.por-que-triadepay {
  padding: 80px 0;
  background: var(--color-bg-elevated);
}

.por-que-triadepay-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .por-que-triadepay-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .por-que-triadepay-img-wrap {
    order: -1;
  }
}

.por-que-triadepay-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.por-que-triadepay-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 16px;
  line-height: 1.5;
}

.por-que-triadepay-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 540px;
}

.por-que-triadepay-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.por-que-triadepay-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

/* Benefícios */
.beneficios {
  padding: 120px 0;
  background: var(--color-bg-elevated);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.beneficio-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
}

.beneficio-card:hover {
  border-color: var(--color-primary);
}

.beneficio-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.beneficio-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.beneficio-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.beneficios-cta {
  text-align: center;
}

/* Integrações */
.integracoes {
  padding: 120px 0;
}

.integracoes-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .integracoes-hero {
    grid-template-columns: 1fr;
  }
}

.integracoes-text {
  padding-right: 24px;
}

.integracoes-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.integracoes-desc {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.integracoes-text .btn {
  margin-bottom: 20px;
}

.integracoes-conheca {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.integracoes-conheca a {
  color: var(--color-primary);
  text-decoration: none;
}

.integracoes-conheca a:hover {
  text-decoration: underline;
}

.integracoes-code-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.integracoes-code-tabs {
  display: flex;
  padding: 12px 16px;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
}

.integracoes-code-tab {
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: var(--radius);
  color: var(--color-text-muted);
}

.integracoes-code-tab.active {
  background: var(--color-primary);
  color: white;
}

.integracoes-code {
  position: relative;
  padding: 20px;
  overflow-x: auto;
}

.integracoes-code-copy {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  font-size: 0.8rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.integracoes-code-copy:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.integracoes-code pre {
  margin: 0;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text);
  white-space: pre;
}

.integracoes-code code {
  font-family: inherit;
}

/* Segurança */
.seguranca {
  padding: 120px 0;
  background: var(--color-bg-elevated);
}

.seguranca-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.seguranca-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.seguranca-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 8px;
}

.seguranca-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Áreas que operamos */
.areas-operamos {
  padding: 120px 0;
  background: var(--color-bg);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.area-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 166, 255, 0.15);
}

.area-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.area-card:hover .area-card-bg {
  transform: scale(1.08);
}

.area-bg-gateway {
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1a5e 40%, #00A6FF 100%);
}

.area-bg-igaming {
  background: linear-gradient(135deg, #1a0a2e 0%, #3a1a5e 40%, #8b5cf6 100%);
}

.area-bg-saas {
  background: linear-gradient(135deg, #0a1a1e 0%, #0a3a3e 40%, #22c55e 100%);
}

.area-bg-rifas {
  background: linear-gradient(135deg, #2a0a0a 0%, #5e1a2a 40%, #f43f5e 100%);
}

.area-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  padding: 24px;
  text-align: center;
  z-index: 1;
}

.area-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.area-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .areas-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Suporte */
.suporte {
  padding: 80px 0;
}

.suporte-content {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.suporte-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
}

.suporte-content p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--color-text);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .taxas-grid {
    grid-template-columns: 1fr;
  }
  
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .seguranca-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
}
