/* ===== LOCA GESTOR — LANDING CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0F172A;
  --green: #22C55E;
  --green-dark: #16A34A;
  --gray-light: #F1F5F9;
  --gray-mid: #94A3B8;
  --gray-dark: #334155;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(15,23,42,0.10);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--primary);
  line-height: 1.6;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex; align-items: center; gap: .5rem;
  color: var(--white); font-size: 1.3rem; font-weight: 700; text-decoration: none;
}

.nav-logo span { color: var(--green); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: #CBD5E1; text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--green); }

.nav-cta { display: flex; gap: .75rem; align-items: center; }

.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .6rem 1.4rem;
  border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif;
  font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s; border: 2px solid transparent; text-decoration: none; }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--white); border-color: #475569; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }

.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0F2A1A 100%);
  display: flex; align-items: center;
  padding: 7rem 5% 4rem;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(34,197,94,0.15); color: var(--green);
  padding: .35rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600;
  border: 1px solid rgba(34,197,94,0.3); margin-bottom: 1.5rem;
}

.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 1.2rem; }
.hero h1 span { color: var(--green); }

.hero p { font-size: 1.1rem; color: #94A3B8; margin-bottom: 2rem; max-width: 480px; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.stat span { font-size: .8rem; color: var(--gray-mid); }

.hero-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.mock-logo { color: var(--white); font-weight: 700; font-size: .9rem; }
.mock-dots { display: flex; gap: .4rem; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #EF4444; }
.mock-dots span:nth-child(2) { background: #F59E0B; }
.mock-dots span:nth-child(3) { background: var(--green); }

.mock-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 1rem; }
.mock-card {
  background: rgba(255,255,255,0.06); border-radius: 10px; padding: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.mock-card .label { font-size: .7rem; color: var(--gray-mid); margin-bottom: .3rem; }
.mock-card .value { font-size: 1.3rem; font-weight: 700; color: var(--white); }
.mock-card .value.green { color: var(--green); }
.mock-card .value.red { color: #EF4444; }

.mock-alert {
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px; padding: .6rem .9rem;
  font-size: .75rem; color: var(--green); margin-bottom: .5rem;
  display: flex; align-items: center; gap: .5rem;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 5%; }

.section-tag {
  display: inline-block; background: rgba(34,197,94,0.1); color: var(--green);
  padding: .3rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600;
  margin-bottom: 1rem;
}

.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--primary); margin-bottom: .75rem; }
.section-sub { color: var(--gray-mid); font-size: 1rem; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== BENEFITS ===== */
.benefits { background: var(--gray-light); }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow); transition: transform .2s;
}
.benefit-card:hover { transform: translateY(-4px); }

.benefit-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(34,197,94,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}

.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.benefit-card p { font-size: .875rem; color: var(--gray-mid); }

/* ===== MODULES ===== */
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

.module-card {
  border: 1px solid #E2E8F0; border-radius: var(--radius); padding: 1.5rem;
  transition: all .2s; cursor: default;
}
.module-card:hover { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,0.08); }

.module-card .icon { font-size: 1.8rem; margin-bottom: .75rem; }
.module-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.module-card p { font-size: .85rem; color: var(--gray-mid); }

/* ===== PLANS ===== */
.plans { background: var(--primary); }
.plans .section-title { color: var(--white); }
.plans .section-sub { color: #94A3B8; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; }

.plan-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 2rem; position: relative; transition: transform .2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured {
  background: var(--green); border-color: var(--green);
  transform: scale(1.04);
}
.plan-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #F59E0B; color: var(--primary); font-size: .7rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 50px;
}

.plan-name { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: .5rem; }
.plan-card.featured .plan-name { color: rgba(255,255,255,0.85); }

.plan-price { font-size: 2.4rem; font-weight: 800; color: var(--white); margin-bottom: .25rem; }
.plan-price span { font-size: 1rem; font-weight: 400; }

.plan-limit { font-size: .8rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.plan-card.featured .plan-limit { color: rgba(255,255,255,0.7); }

.plan-features { list-style: none; margin-bottom: 1.75rem; }
.plan-features li {
  font-size: .85rem; color: rgba(255,255,255,0.75); padding: .4rem 0;
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.15); }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; }
.plan-card.featured .plan-features li::before { color: var(--white); }

.plan-card .btn-plan {
  width: 100%; justify-content: center; padding: .75rem;
  background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; transition: all .2s;
  font-family: 'Poppins', sans-serif; font-size: .9rem;
}
.plan-card .btn-plan:hover { background: rgba(255,255,255,0.2); }
.plan-card.featured .btn-plan { background: var(--primary); color: var(--white); border-color: var(--primary); }
.plan-card.featured .btn-plan:hover { background: #1E293B; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  text-align: center; padding: 6rem 5%;
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: #94A3B8; margin-bottom: 2.5rem; font-size: 1.05rem; }

/* ===== FOOTER ===== */
footer {
  background: #020617; color: #64748B;
  padding: 3rem 5% 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand p { font-size: .85rem; margin-top: .75rem; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col a { display: block; color: #64748B; text-decoration: none; font-size: .85rem; margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 1.5rem; text-align: center; font-size: .8rem; }

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

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #0F172A; flex-direction: column; padding: 1.5rem 5%; gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta .btn:first-child { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }

  .benefits-grid, .modules-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }

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