@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== DESIGN SYSTEM ===== */
:root {
  --navy:        #060D1F;
  --navy-mid:    #0D1B38;
  --navy-light:  #1A2E58;
  --blue:        #2563EB;
  --blue-hover:  #1D4ED8;
  --cyan:        #00D4FF;
  --orange:      #F97316;
  --orange-hover:#EA6C0A;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --slate-100:   #F1F5F9;
  --slate-200:   #E2E8F0;
  --slate-400:   #94A3B8;
  --slate-500:   #64748B;
  --slate-600:   #475569;
  --text:        #0F172A;

  --gradient-brand: linear-gradient(135deg, #2563EB 0%, #00D4FF 100%);
  --gradient-hero:  linear-gradient(160deg, #060D1F 0%, #0D1B38 100%);
  --gradient-card:  linear-gradient(135deg, rgba(37,99,235,.1) 0%, rgba(0,212,255,.05) 100%);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-py: 96px;
  --max-w: 1200px;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.12);
  --shadow-md:   0 4px 24px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.15);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.28);
  --shadow-orange: 0 8px 32px rgba(249,115,22,.28);

  --ease: all .2s ease;
  --ease-md: all .3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

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

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-weight:700; line-height:1.15; }

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--ease-md);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(37,99,235,.4);
}
.btn-cta {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(249,115,22,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-footer {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,13,31,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.4px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gradient-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-links a {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  font-weight: 500;
  transition: var(--ease);
  position: relative;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--white); }
.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-login {
  color: rgba(255,255,255,.65);
  font-size: 15px;
  font-weight: 500;
  transition: var(--ease);
}
.navbar-login:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease-md);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--ease);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .btn { margin-top: 12px; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  background: var(--gradient-hero);
  padding: 112px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,212,255,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: .3px;
}
.hero-badge span { color: rgba(255,255,255,.5); }
.hero h1 {
  font-size: clamp(40px,6vw,72px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  line-height: 1.02;
}
.hero-desc {
  font-size: 19px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .stat-n {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stats .stat-l {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:700px; height:400px;
  background: radial-gradient(ellipse, rgba(37,99,235,.18) 0%, transparent 70%);
  pointer-events:none;
}
.page-hero .hero-badge { margin: 0 auto 20px; display:inline-flex; }
.page-hero h1 {
  font-size: clamp(36px,5vw,60px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 16px;
  position: relative;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ===== SECTION LABEL + HEADER ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.section-label.light { color: var(--cyan); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(30px,4vw,48px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 18px;
  color: var(--slate-500);
  max-width: 540px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.55); }

/* ===== FEATURES (homepage) ===== */
.features {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: var(--ease-md);
}
.feature-card:hover {
  border-color: rgba(37,99,235,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--gradient-card);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: var(--r-md);
  display: flex; align-items:center; justify-content:center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ===== STATS DARK ===== */
.stats-dark {
  padding: var(--section-py) 0;
  background: var(--navy);
}
.stats-dark-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 48px;
  text-align: center;
}
.stat-big .n {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-big .l {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.testi-card {
  background: var(--off-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--ease-md);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: #F59E0B; font-size: 16px; letter-spacing:3px; margin-bottom:16px; }
.testi-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display:flex; align-items:center; gap:12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  background: var(--gradient-brand);
  display: flex; align-items:center; justify-content:center;
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size:15px; }
.author-role { font-size: 13px; color: var(--slate-500); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content:'';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:800px; height:420px;
  background: radial-gradient(ellipse, rgba(37,99,235,.22) 0%, transparent 70%);
  pointer-events:none;
}
.cta-section h2 {
  font-size: clamp(32px,4.5vw,56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 16px;
  position:relative;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left:auto; margin-right:auto;
  position:relative;
}
.cta-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; position:relative; }

/* ===== FOOTER ===== */
.footer { background: #03080F; padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  margin-top: 14px;
  line-height: 1.75;
  max-width: 260px;
}
.footer-social { display:flex; gap:10px; margin-top:20px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  display: flex; align-items:center; justify-content:center;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  transition: var(--ease);
}
.social-link:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.social-link img { width: 18px; height: 18px; object-fit: contain; display: block; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  transition: var(--ease);
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-legal { display:flex; gap:24px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.25);
  transition: var(--ease);
}
.footer-legal a:hover { color: var(--white); }

/* ===== PLANS PAGE ===== */
.plans-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label { font-size: 15px; font-weight: 600; color: var(--slate-500); }
.toggle-label.active { color: var(--text); }
.badge-save {
  background: rgba(37,99,235,.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  transition: var(--ease-md);
  position: relative;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.plan-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: var(--white);
  padding: 5px 20px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
}
.plan-name { font-size: 22px; font-weight: 800; color:var(--text); margin-bottom:6px; }
.plan-desc { font-size: 13px; color: var(--slate-400); margin-bottom: 28px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 32px;
}
.price-cur { font-size: 18px; font-weight: 700; color: var(--text); margin-top: 8px; }
.price-val { font-size: 56px; font-weight: 900; color: var(--text); letter-spacing: -2px; line-height:1; }
.price-per { font-size: 15px; color: var(--slate-400); margin-left: 2px; }
.plan-feats { display:flex; flex-direction:column; gap:11px; margin-bottom:32px; }
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.feat-check {
  width: 20px; height: 20px;
  border-radius: var(--r-full);
  background: rgba(37,99,235,.1);
  color: var(--blue);
  display: flex; align-items:center; justify-content:center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-card.featured .feat-check {
  background: var(--gradient-brand);
  color: var(--white);
}
.plan-divider { border:none; border-top:1px solid var(--slate-200); margin-bottom:24px; }

/* ===== FAQ ===== */
.faq-section { padding: var(--section-py) 0; background: var(--white); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--ease);
}
.faq-item.open { border-color: rgba(37,99,235,.3); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: var(--ease);
  gap: 16px;
}
.faq-q:hover { background: var(--off-white); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: var(--r-full);
  background: var(--slate-100);
  display: flex; align-items:center; justify-content:center;
  font-size: 18px;
  font-weight: 300;
  transition: var(--ease-md);
  flex-shrink: 0;
  color: var(--slate-500);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 15px;
  color: var(--slate-500);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}

/* ===== RECURSOS PAGE ===== */
.recurso-section { padding: var(--section-py) 0; }
.recurso-section:nth-child(even) { background: var(--off-white); }
.recurso-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.recurso-block.reverse .recurso-visual { order: -1; }
.recurso-content .section-label { display:flex; margin-bottom:12px; }
.recurso-content h2 {
  font-size: clamp(28px,3.5vw,42px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.recurso-content p {
  font-size: 17px;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 28px;
}
.recurso-list { display:flex; flex-direction:column; gap:10px; margin-bottom:32px; }
.recurso-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.recurso-list li .tick {
  width: 22px; height: 22px;
  background: var(--gradient-brand);
  border-radius: var(--r-full);
  display: flex; align-items:center; justify-content:center;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.recurso-visual {
  background: var(--gradient-hero);
  border-radius: var(--r-xl);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  border: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.recurso-visual::before {
  content:'';
  position:absolute;
  top:-50px; right:-50px;
  width:250px; height:250px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
}
.visual-emoji { font-size: 72px; margin-bottom:16px; position:relative; z-index:1; }
.visual-caption {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}

/* Mini-features grid (recursos page) */
.mini-features { padding: var(--section-py) 0; background: var(--off-white); }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--ease-md);
}
.mini-card:hover {
  border-color: rgba(37,99,235,.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.mini-icon { font-size: 32px; margin-bottom: 14px; }
.mini-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.mini-card p  { font-size: 13px; color: var(--slate-500); line-height:1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr; max-width:460px; margin:0 auto; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .stats-dark-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .mini-grid { grid-template-columns: repeat(2,1fr); }
  .recurso-block { grid-template-columns: 1fr; gap: 40px; }
  .recurso-block.reverse .recurso-visual { order: 0; }
}
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .navbar-links, .navbar-login, .navbar-actions .btn:first-child { display:none; }
  .hamburger { display:flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-dark-grid { grid-template-columns: repeat(2,1fr); gap:32px; }
  .footer-grid { grid-template-columns: 1fr; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .hero-stats { gap:24px; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { letter-spacing:-1.5px; }
  .plans-grid { max-width:100%; }
  .mini-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items:center; }
}
