/* ============================================================
   QUIERO! — Landing Page Styles
   Premium dark theme with green (#43A047) accent
   ============================================================ */

/* ====== RESET & BASE ====== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --bg-card: #0f0f0f;
  --bg-card2: #141414;
  --bg-elev: #1a1a1a;
  --green: #43A047;
  --green-l: #66BB6A;
  --green-d: #2E7D32;
  --green-glow: rgba(67, 160, 71, 0.25);
  --text: #f5f5f7;
  --text-dim: #bdbdbd;
  --text-muted: #757575;
  --border: rgba(255, 255, 255, 0.08);
  --border-l: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== GRADIENTS ====== */
.gradient-text {
  background: linear-gradient(135deg, var(--green-l), var(--green), #81C784);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====== SECTION COMMON ====== */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(67, 160, 71, 0.08);
  border: 1px solid rgba(67, 160, 71, 0.2);
  color: var(--green-l);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px 0;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.4rem;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-text {
  color: var(--text);
}

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

.nav-link {
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background: var(--green) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--green-l) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(67, 160, 71, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(67, 160, 71, 0.1);
  border: 1px solid rgba(67, 160, 71, 0.25);
  color: var(--green-l);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--border-l);
  transition: all var(--transition);
  cursor: pointer;
}

.store-btn:hover {
  background: var(--bg-card2);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(67, 160, 71, 0.15);
}

.store-btn i {
  font-size: 1.6rem;
  color: var(--green-l);
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1;
}

.store-btn strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  font-weight: 800;
}

.store-btn.large {
  padding: 16px 32px;
}

.store-btn.large i {
  font-size: 1.8rem;
}

.store-btn.large strong {
  font-size: 1.1rem;
}

/* Coming Soon Animated Badge */
.coming-soon-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 40px;
  background: rgba(67, 160, 71, 0.03);
  border: 1px solid rgba(67, 160, 71, 0.4);
  border-radius: 100px;
  box-shadow: 0 0 40px rgba(67, 160, 71, 0.2), inset 0 0 20px rgba(67, 160, 71, 0.1);
  position: relative;
  overflow: hidden;
  animation: pulseGlowBtn 3s infinite alternate;
  user-select: none;
}

.coming-soon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: shine 3s infinite;
}

.coming-soon-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #a5d6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.coming-soon-icon {
  font-size: 1.6rem;
  color: var(--green-l);
  animation: floatIcon 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes pulseGlowBtn {
  0% { box-shadow: 0 0 20px rgba(67, 160, 71, 0.15), inset 0 0 10px rgba(67, 160, 71, 0.05); border-color: rgba(67, 160, 71, 0.3); }
  100% { box-shadow: 0 0 50px rgba(67, 160, 71, 0.4), inset 0 0 30px rgba(67, 160, 71, 0.2); border-color: rgba(67, 160, 71, 0.8); }
}

@keyframes shine {
  0% { left: -100%; }
  25% { left: 200%; }
  100% { left: 200%; }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-l);
}

.stat-plus {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--green-l);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone mockup */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  background: var(--bg-card);
  border-radius: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.phone-frame.large-phone {
  width: 300px;
  height: 610px;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--bg);
  border-radius: 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding-top: 44px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 200px;
  background: radial-gradient(ellipse, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}

.phone-glow.green {
  background: radial-gradient(ellipse, rgba(67, 160, 71, 0.3) 0%, transparent 70%);
}

/* Screenshot placeholders */
.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}

.screenshot-placeholder i {
  font-size: 3rem;
  color: var(--green);
  opacity: 0.5;
}

.screenshot-placeholder span {
  font-weight: 700;
  font-size: 0.95rem;
}

.screenshot-placeholder small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.screenshot-placeholder.small i {
  font-size: 2rem;
}

.screenshot-placeholder.small span {
  font-size: 0.85rem;
}

.screenshot-placeholder.large {
  min-height: 400px;
  border-radius: var(--radius-lg);
}

.screenshot-placeholder.gallery-ph i {
  font-size: 1.5rem;
}

.screenshot-placeholder.gallery-ph span {
  font-size: 0.75rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ====== FEATURES ====== */
.features {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}

.feature-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(67, 160, 71, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--icon-color, var(--green)) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 1.4rem;
  color: var(--icon-color, var(--green));
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ====== HOW IT WORKS ====== */
.how-it-works {
  background: var(--bg-card);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.step.reverse {
  direction: rtl;
}

.step.reverse>* {
  direction: ltr;
}

.step-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(67, 160, 71, 0.1);
  line-height: 1;
  min-width: 120px;
  text-align: center;
}

.step-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 400px;
}

.step-phone {
  width: 180px;
  height: 360px;
  background: var(--bg);
  border-radius: 30px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.step-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== SERVICES ====== */
.services {
  background: var(--bg);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse>* {
  direction: ltr;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.service-badge.ride {
  background: rgba(67, 160, 71, 0.1);
  color: var(--green-l);
  border: 1px solid rgba(67, 160, 71, 0.2);
}

.service-badge.food {
  background: rgba(255, 112, 67, 0.1);
  color: #FF7043;
  border: 1px solid rgba(255, 112, 67, 0.2);
}

.service-info h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.service-info>p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.service-features li i {
  color: var(--green);
  font-size: 0.85rem;
}

.service-screenshot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-screenshot img {
  width: 100%;
  height: auto;
}

/* ====== SAFETY ====== */
.safety {
  background: var(--bg-card);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.safety-card {
  padding: 36px 28px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.safety-card:hover {
  border-color: rgba(67, 160, 71, 0.3);
  box-shadow: 0 8px 30px rgba(67, 160, 71, 0.05);
}

.safety-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(67, 160, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.safety-icon i {
  font-size: 1.3rem;
  color: var(--green-l);
}

.safety-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.safety-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ====== GALLERY ====== */
.gallery {
  background: var(--bg);
}

.gallery-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 20px 4px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: center;
}

.gallery-phone {
  width: 200px;
  height: 400px;
  background: var(--bg-card);
  border-radius: 32px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
}

.gallery-phone:hover {
  border-color: rgba(67, 160, 71, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(67, 160, 71, 0.08);
}

.gallery-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ====== JOIN US (SÉ PARTE) ====== */
.join-us {
  background: var(--bg-card);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.join-card {
  position: relative;
  padding: 44px 36px;
  background: var(--bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.join-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.join-card.driver-card:hover {
  border-color: rgba(67, 160, 71, 0.4);
}

.join-card.business-card:hover {
  border-color: rgba(255, 152, 0, 0.4);
}

.join-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 160, 71, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.join-card-glow.orange {
  background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
}

.join-card-icon {
  margin-bottom: 24px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(67, 160, 71, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 1.6rem;
  color: var(--green-l);
}

.icon-circle.orange {
  background: rgba(255, 152, 0, 0.12);
}

.icon-circle.orange i {
  color: #FFB300;
}

.join-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.join-card-desc {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}

.join-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.join-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.join-benefits li i {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.business-card .join-benefits li i {
  color: #FFB300;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  transition: all var(--transition);
  text-align: center;
}

.join-btn i {
  font-size: 1.3rem;
}

.driver-btn {
  background: var(--green);
  color: white;
}

.driver-btn:hover {
  background: var(--green-l);
  box-shadow: 0 8px 30px rgba(67, 160, 71, 0.3);
  transform: translateY(-2px);
}

.business-btn {
  background: linear-gradient(135deg, #FFB300, #FF8F00);
  color: #1a1a1a;
}

.business-btn:hover {
  box-shadow: 0 8px 30px rgba(255, 179, 0, 0.3);
  transform: translateY(-2px);
}

/* ====== ADVANTAGES ====== */
.advantages {
  background: var(--bg);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.advantage-card:hover {
  border-color: rgba(67, 160, 71, 0.3);
  transform: translateY(-4px);
}

.advantage-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(67, 160, 71, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.advantage-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  background: var(--bg-card);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(67, 160, 71, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #FFB300;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(67, 160, 71, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--green-l);
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ====== FAQ ====== */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(67, 160, 71, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ====== DOWNLOAD CTA ====== */
.download {
  background: var(--bg-card);
  padding: 120px 0;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.download-text p {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 0.95rem;
}

.footer-socials a:hover {
  background: rgba(67, 160, 71, 0.1);
  border-color: var(--green);
  color: var(--green-l);
}

.footer-links-group h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-links-group a:hover {
  color: var(--green-l);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--green-l);
}

/* ====== WHATSAPP BUTTON ====== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
  font-size: 1.6rem;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-elev);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-grid {
    grid-template-columns: 1fr 1fr;
  }

  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-phone {
    margin-top: 40px;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step.reverse {
    direction: ltr;
  }

  .step-number {
    min-width: auto;
  }

  .step-content p {
    max-width: 100%;
    margin: 0 auto;
  }

  .step-visual {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block.reverse {
    direction: ltr;
  }

  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-text p {
    margin: 0 auto 36px;
  }

  .download-buttons {
    justify-content: center;
  }

  .download-phone {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .join-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .plan-card.popular:hover {
    transform: translateY(-4px);
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
    z-index: 100;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: block;
    z-index: 200;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .store-btn {
    justify-content: center;
    width: 100%;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-buttons .store-btn {
    width: 100%;
    justify-content: center;
  }
}