/* ===========================================
   PagoTech - Dark Theme with Red Accents
   =========================================== */

/* Nueva paleta de colores: fondo oscuro, acentos rojos, bordes blancos */
:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --primary-light: rgba(230, 57, 70, 0.15);
  --secondary: #06d6a0;
  --background: #0a0a0b;
  --surface: #111113;
  --surface-elevated: #1a1a1d;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================================
   HEADER
   =========================================== */
/* Header oscuro con borde blanco */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-strong);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--primary);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo con gradiente rojo */
.logo-icon {
  width: 90px;
  height: 60px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 32px;
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--text-primary);
}

/* Indicador de navegación rojo */
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
/* Botones con estilo oscuro y rojo */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--surface-elevated);
  border-color: var(--text-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--surface-elevated);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   HERO SECTION
   =========================================== */
/* Hero con fondo oscuro y efecto glow */
.hero {
  padding: 160px 0 100px;
  background: var(--background);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Badge con estilo oscuro y borde */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-wrap: balance;
}

/* Gradiente de texto rojo */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

/* Stats con bordes blancos */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 48px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  max-width: fit-content;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

/* Tarjetas flotantes con tema oscuro y bordes blancos */
.hero-visual {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
}

.payment-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  border: 1px solid var(--border-strong);
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 15rem;
  right: -37rem;
  width: 280px;
}

.card-2 {
  bottom: 80px;
  right: 250px;
  width: 200px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.card-header-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-logo {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.card-badge {
  font-size: 10px;
  padding: 4px 8px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
}

.card-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-description {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card-options {
  display: flex;
  gap: 8px;
}

.card-options .option {
  font-size: 11px;
  padding: 6px 10px;
  background: var(--surface-elevated);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.card-options .option.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.card-success {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-mini-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: float 4s ease-in-out infinite;
}

.element{
  bottom: 150px;
  right: 439px;
  color: #eb001b;;
  animation-delay: -3s;
}


/* ===========================================
   LOGOS SECTION
   =========================================== */
/* Logos section con fondo oscuro y bordes */
.logos-section {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}

.logos-title {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
  transition: var(--transition);
}

.logo-item:hover {
  opacity: 1;
  color: var(--text-primary);
}

.logo-item i {
  font-size: 28px;
}

/* ===========================================
   SECTION STYLES
   =========================================== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

/* Tag de sección con color rojo */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ===========================================
   FEATURES SECTION
   =========================================== */
/* Features con fondo oscuro */
.features-section {
  padding: 120px 0;
  background: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Feature cards con bordes blancos */
.feature-card {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary);
}

/* Feature destacada con gradiente rojo */
.feature-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card.featured * {
  color: white;
}

.feature-card.featured .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===========================================
   HOW IT WORKS SECTION
   =========================================== */
/* How section con fondo surface */
.how-section {
  padding: 120px 0;
  background: var(--surface);
}

.steps-container {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

/* Step cards con bordes blancos */
.step-card {
  flex: 1;
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-strong);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary);
}

/* Números de paso con color rojo tenue */
.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.step-visual {
  margin-top: auto;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-strong);
  font-size: 24px;
}

/* Mini form con fondo oscuro */
.mini-form {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border);
}

.form-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.form-row:last-child {
  border-bottom: none;
}

.form-label {
  font-size: 12px;
  color: var(--text-muted);
}

.form-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Share Icons */
.share-icons {
  display: flex;
  gap: 12px;
}

.share-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  transition: var(--transition);
}

.share-icon:hover {
  transform: scale(1.1);
}

.share-icon.whatsapp {
  background: #25d366;
}

.share-icon.email {
  background: var(--primary);
}

.share-icon.copy {
  background: var(--text-muted);
}

/* Success indicator con fondo oscuro */
.success-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(6, 214, 160, 0.1);
  border: 1px solid rgba(6, 214, 160, 0.3);
  border-radius: var(--radius-md);
  color: var(--secondary);
  font-weight: 600;
}

.success-indicator i {
  font-size: 24px;
}

/* ===========================================
   PRICING SECTION
   =========================================== */
/* Pricing con fondo oscuro */
.pricing-section {
  padding: 120px 0;
  background: var(--background);
}

/* Pricing card con borde rojo y blanco */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.pricing-header {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.pricing-header h3 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount .currency {
  font-size: 24px;
  font-weight: 600;
}

.pricing-amount .price {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.pricing-amount .per {
  font-size: 18px;
  opacity: 0.8;
}

.pricing-header p {
  font-size: 14px;
  opacity: 0.8;
}

.pricing-features {
  padding: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--secondary);
  font-size: 16px;
}

.pricing-card .btn {
  margin: 0 40px 24px;
  width: calc(100% - 80px);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 32px;
}

/* ===========================================
   CTA SECTION
   =========================================== */
/* CTA: imagen de fondo SIN tinte rojo + capa oscura para legibilidad */
.cta-section {
  padding: 120px 0;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://imagenes.eleconomista.com.mx/files/webp_768_768/uploads/2023/10/24/66e485b6a8238.jpeg") no-repeat center/cover;
  background-size: cover;
  background-position: center;
  filter: none;
  opacity: 1;
  z-index: 0;
}

/* Capa oscura sobre la imagen para que el texto sea legible (puedes ajustar la opacidad) */
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(102, 5, 5, 0.52);
  z-index: 0;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-wrap: balance;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ===========================================
   FOOTER
   =========================================== */
/* Footer con fondo oscuro y bordes */
.footer {
  padding: 80px 0 40px;
  background: var(--surface);
  border-top: 1px solid var(--border-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ===========================================
   MOBILE NAVIGATION - Menú móvil mejorado
   =========================================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: var(--background);
  border-top: 1px solid var(--border-strong);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-list a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

.mobile-nav-list a:hover {
  color: var(--primary);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-strong);
  margin-top: auto;
}

/* ===========================================
   RESPONSIVE STYLES - Media queries completos
   =========================================== */

/* Tablet Large */
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Ocultar nav desktop, mostrar toggle */
  .nav-list,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-wrapper {
    height: 64px;
  }

  /* Hero responsive */
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  /* Features responsive */
  .features-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  /* How section responsive */
  .how-section {
    padding: 80px 0;
  }

  .step-card {
    padding: 24px;
  }

  .step-number {
    font-size: 36px;
  }

  /* Pricing responsive */
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-card {
    margin: 0 -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .pricing-header {
    padding: 32px 24px;
  }

  .pricing-features {
    padding: 32px 24px;
  }

  .pricing-card .btn {
    margin: 0 24px 20px;
    width: calc(100% - 48px);
  }

  /* CTA responsive */
  .cta-section {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* Footer responsive */
  .footer {
    padding: 60px 0 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* Logos responsive */
  .logos-section {
    padding: 40px 0;
  }

  .logos-grid {
    gap: 32px;
  }

  .logo-item {
    font-size: 14px;
  }

  .logo-item i {
    font-size: 24px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .logos-grid {
    flex-direction: column;
    gap: 20px;
  }

  .share-icons {
    justify-content: center;
  }
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}
