/* ===== SMARTPOS CLOUD - LANDING IMPROVED CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #941b80;
  --primary-dark: #941b80;
  --primary-light: #ede9fe;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --dark: #111f3b;
  --dark-2: #1e1b4b;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8f7ff;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(148,27,128,0.10);
  --shadow-lg: 0 8px 48px rgba(148,27,128,0.18);
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== HEADER STICKY ===== */
header {
  position: absolute !important; /* Start as absolute or fixed transparent */
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent !important;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 80px !important;
  min-height: 80px !important;
  padding: 0 24px !important;
}

header.scrolled {
  position: fixed !important;
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(148,27,128,0.12);
  border-bottom: 1px solid transparent;
  animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

header img.hidden { display: none !important; }
header img.logo-main { 
  display: block !important; 
  width: 160px !important; 
  height: auto; 
  transition: var(--transition);
  filter: brightness(0) invert(1); /* Default to white logo */
}

header.scrolled img.logo-main {
  filter: none; /* Return to original colors when scrolled */
}

/* Nav links */
.sasup-desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .sasup-desktop-nav {
    display: block;
  }
}

.sasup-desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.sasup-desktop-nav ul li a {
  font-size: 0.95rem;
  font-weight: 600;
  color: white; /* Start white */
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

header.scrolled .sasup-desktop-nav ul li a {
  color: var(--text); /* Dark when scrolled */
}

.sasup-desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.sasup-desktop-nav ul li a:hover {
  color: var(--accent) !important;
}

.sasup-desktop-nav ul li a:hover::after {
  width: 100%;
}

header.scrolled .sasup-desktop-nav ul li a:hover {
  color: var(--primary) !important;
}

header.scrolled .sasup-desktop-nav ul li a::after {
  background: var(--primary);
}

/* Mobile Menu Styles */
.sasup-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 9999;
  padding: 100px 24px 40px;
  overflow-y: auto;
  animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.sasup-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.sasup-mobile-menu ul li a {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s;
}

.sasup-mobile-menu ul li a:active {
  color: var(--primary);
}

/* CTA links in header */
.header-login {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
header.scrolled .header-login {
  color: var(--text);
}
.header-login:hover { opacity: 0.8; }

.btn-header-join {
  background: white !important;
  color: var(--text) !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  border: none;
  cursor: pointer;
  transition: var(--transition) !important;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center;
}
.btn-header-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
}
header.scrolled .btn-header-join {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: white !important;
  box-shadow: 0 4px 16px rgba(148,27,128,0.2) !important;
}

/* Spacer for fixed header */
body > div > div { padding-top: 0px; /* removed because header is absolute initially */ }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.hero-container {
  padding-top: 140px;
  padding-bottom: 120px;
  gap: 48px;
}

#inicio {
  background: linear-gradient(135deg, #111f3b 0%, #941b80 100%) !important;
  min-height: 100vh !important;
  position: relative;
  overflow: hidden;
}

#inicio::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(148,27,128,0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
#inicio::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

#inicio h1 {
  color: white !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em;
}

#inicio h1 span.gradient-text {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#inicio h2 {
  color: rgba(255,255,255,0.75) !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  margin-top: 8px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

/* Hero bullets */
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  list-style: none;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Trusted by strip */
.trusted-strip {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trusted-strip span {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION DEFAULTS ===== */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 12px auto 0;
}

/* ===== NOSOTROS CARDS ===== */
.why-card {
  background: white;
  border: 1px solid rgba(148,27,128,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(148,27,128,0.25);
}
.why-card:hover::before { transform: scaleX(1); }

.why-card .icon-wrap {
  width: 72px; height: 72px;
  background: var(--primary-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* ===== BENEFIT ITEMS ===== */
.benefit-item {
  background: white;
  border: 1px solid rgba(148,27,128,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 500;
}
.benefit-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(245,158,11,0.1);
  transform: translateX(4px);
}
.benefit-item svg { flex-shrink: 0; }

/* ===== MODULES TABS ===== */
.modules-section { background: white; }

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  min-width: 220px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  text-align: left;
  width: 100%;
}
.tab-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(148,27,128,0.3);
  border-color: transparent;
}

.tab-content { display: none; animation: fadeIn 0.35s ease; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

.module-img-wrap {
  background: #f1f0f8;
  border-radius: var(--radius-lg);
  padding: 12px;
  overflow: hidden;
}
.module-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 100%);
  padding: 64px 24px;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.stat-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #f59e0b;
  line-height: 1;
}
.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border: 1px solid rgba(148,27,128,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary-light);
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
  font-family: serif;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info strong { font-size: 0.9rem; font-weight: 700; display: block; }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 4px; }

/* ===== PRICING ===== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.toggle-label { font-weight: 600; color: var(--text-muted); font-size: 0.95rem; }
.toggle-label.active { color: var(--primary); }
.toggle-switch {
  position: relative;
  width: 52px; height: 28px;
  background: var(--primary);
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-switch.yearly::after { transform: translateX(24px); }
.annual-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

.price-card {
  background: white;
  border: 2px solid rgba(148,27,128,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.price-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: white;
}
.price-card.featured .price-amount { color: white; }
.price-card.featured .price-period { color: rgba(255,255,255,0.7); }
.price-card.featured .price-feature { color: rgba(255,255,255,0.85); }
.price-card.featured .price-feature svg { fill: #fbbf24 !important; }

.price-badge {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 40px;
  transform: rotate(35deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-name { font-size: 1.1rem; font-weight: 800; }
.price-desc { font-size: 0.85rem; opacity: 0.7; margin-top: -12px; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1; }
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.price-divider { border: none; border-top: 1px solid rgba(148,27,128,0.1); }
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.2); }
.price-features { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #111f3b 0%, #941b80 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(148,27,128,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  background: #111f3b !important;
  color: rgba(255,255,255,0.7) !important;
}
footer .footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }
footer span.font-bold { color: rgba(255,255,255,0.9) !important; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
footer ul li a:hover { color: #f59e0b !important; }
footer ul li { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ===== WHATSAPP FLOATING ===== */
.fixed.right-5.bottom-5 {
  flex-direction: row !important;
  align-items: center !important;
}
.fixed.right-5.bottom-5 > div:first-child {
  border-radius: 12px !important;
  padding: 10px 14px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
  animation: slideInRight 0.5s ease;
}
@keyframes slideInRight {
  from { opacity:0; transform: translateX(20px); }
  to { opacity:1; transform: translateX(0); }
}

/* ===== CONTACT FORM ===== */
#contactForm input,
#contactForm textarea {
  border-radius: 12px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  font-family: 'Inter', sans-serif !important;
}
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(148,27,128,0.12) !important;
  outline: none !important;
}

#contacto { scroll-margin-top: 80px; }
#nosotros { scroll-margin-top: 80px; }
#beneficios { scroll-margin-top: 80px; }
#modulos { scroll-margin-top: 80px; }
#planes { scroll-margin-top: 80px; }

/* ===== AOS OVERRIDE ===== */
[data-aos] { transition-duration: 600ms !important; }

/* ===== TRUST STRIP ===== */
.sasup-trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  z-index: 20;
}

.sasup-trust-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sasup-trust-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sasup-trust-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sasup-trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.sasup-trust-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
  color: white;
}

.sasup-trust-icon {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .sasup-trust-container {
    flex-direction: column;
    gap: 16px;
  }
  .sasup-trust-items {
    justify-content: center;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header { height: 70px !important; min-height: 70px !important; padding: 0 20px !important; }
  header img.logo-main { width: 130px !important; }
  .sasup-mobile-toggle { width: 40px; height: 40px; }
  
  body > div > div { padding-top: 0; }

  /* Hero Adjustments */
  #inicio { min-height: auto !important; padding-bottom: 60px !important; padding-top: 80px !important; }
  .hero-container { padding-top: 20px !important; padding-bottom: 40px !important; gap: 24px !important; }
  #inicio h1 { font-size: 2rem !important; line-height: 1.2 !important; margin-top: 0; margin-bottom: 24px !important; }
  .hero-content { gap: 20px !important; padding: 0 24px !important; }
  .hero-bullets { flex-direction: column; gap: 12px; align-items: flex-start; text-align: left; max-width: 320px; margin: 0 auto; }
  .hero-bullets li { font-size: 0.95rem; }
  
  /* Mockup Container & Screen */
  .mockup-container { margin-top: 30px !important; padding: 0 16px; width: 100% !important; }
  .mockup-screen { height: 280px !important; }
  .hero-label-rd { top: -30px !important; right: 20px !important; font-size: 1rem !important; }
  
  /* Section Spacing */
  section { padding: 60px 20px !important; }
  .section-title { font-size: 1.8rem !important; }
  .section-subtitle { font-size: 0.95rem !important; }

  /* Why Grid */
  .why-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .why-grid > div { padding: 32px 24px !important; }

  /* Tabs for Modules (Scrollable) */
  .tab-list { 
    flex-direction: row !important; 
    overflow-x: auto; 
    padding-bottom: 12px;
    width: 100vw;
    margin-left: -20px;
    padding-left: 20px;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    gap: 8px !important;
  }
  .tab-btn { white-space: nowrap; flex-shrink: 0; padding: 10px 16px; font-size: 0.85rem !important; }

  /* Pricing */
  .sasup-pricing-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .sasup-card { max-width: 100% !important; }
  .sasup-pricing-header { margin-bottom: 40px !important; }
  .sasup-toggle-wrap { margin-top: 30px !important; }

  /* CTA */
  .sasup-cta-wrapper { transform: translateY(60px) !important; padding: 0 16px !important; }
  .sasup-cta-box { padding: 50px 24px !important; border-radius: 20px !important; }
  .sasup-cta-title { font-size: 1.8rem !important; margin-bottom: 24px !important; }
  .sasup-cta-buttons { flex-direction: column; width: 100%; gap: 12px !important; }
  .sasup-cta-buttons a { width: 100%; justify-content: center; padding: 16px !important; }

  /* Trust Strip */
  .sasup-trust-strip { padding: 30px 16px !important; }
  .sasup-trust-label { text-align: center; margin-bottom: 12px; width: 100%; }
  .sasup-trust-items { justify-content: center; gap: 8px !important; }
  .sasup-trust-pill { padding: 6px 12px !important; font-size: 0.8rem !important; }
}

@media (max-width: 480px) {
  #inicio h1 { font-size: 1.8rem !important; }
  .btn-header-join { display: none !important; }
}
