:root{
  --blue:#007BFF;
  --aqua:#00C9A7;
  --bg:#F9FAFB;
  --text:#222;
  --muted:#6b7280;
  --card-shadow: 0 6px 20px rgba(3,10,24,0.06);
  --radius:12px;
}
html { scroll-behavior: smooth; }
body {
  margin:0; font-family: Inter, "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial;
  color:var(--text); background:var(--bg);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
#year {
	display: none;
}
/* NAV */
.nav {
  position:fixed; left:0; right:0; top:0; z-index:1100;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 28px; background:rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  box-shadow: none; transition: all .25s ease;
}
.nav.scrolled { padding:10px 28px; box-shadow: 0 6px 20px rgba(3,10,24,0.06); background:#fff; }
.nav .brand { display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit; }
.nav .brand img { height:40px; width:auto; display:block; }
.nav .menu {
  display:flex; gap:18px; align-items:center;
}
.nav .menu a { color:var(--text); text-decoration:none; font-weight:600; padding:8px; border-radius:8px; }
.nav .menu a:hover { background: rgba(0,0,0,0.04); }

.nav .actions { display:flex; gap:12px; align-items:center; }
.btn {
  display:inline-block; padding:10px 16px; border-radius:10px; font-weight:700; text-decoration:none;
  transition:transform .12s ease, box-shadow .12s ease;
}
.btn-primary {
  background: linear-gradient(90deg,var(--blue),var(--aqua)); color:#fff !important; box-shadow: 0 6px 18px rgba(0,123,255,0.18);
  border: none;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { background:transparent; color:var(--text); border:1px solid rgba(0,0,0,0.06); }

/* Mobile menu button */
.nav .hamb {
  display:none; background:transparent; border:0; font-size:22px;
}

/* HERO */
.hero {
  padding:120px 20px 60px; text-align:center; max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns: 1fr; gap:28px; align-items:center;
}
.hero .left h1 { font-size:38px; margin:6px 0; line-height:1.05; }
.hero .left p { color:var(--muted); font-size:18px; margin:0 0 14px; }
.hero .hero-ctas { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

.mock {
  width:100%; max-width:900px; margin:0 auto; border-radius:16px; overflow:hidden;
  box-shadow: var(--card-shadow);
}

/* SECTIONS */
section { padding:64px 20px; max-width:1150px; margin:0 auto; }
h2.section-title { font-size:26px; margin:0 0 10px; text-align:center; }
p.lead { color:var(--muted); text-align:center; margin:0 auto 18px !important; max-width:760px; }

.grid {
  display:grid; gap:20px;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  margin-top:22px;
}

.card {
  background:#fff; padding:20px; border-radius:var(--radius);
  box-shadow: 0 6px 18px rgba(3,10,24,0.04); text-align:left;
}
.card h3 { margin:8px 0; font-size:18px; text-align: center;}
.card p { color:var(--muted); margin:0;  text-align: center;}

/* Pricing card special */
.pricing .plan { text-align:center; padding:28px; border-radius:16px; }
.pricing .price { font-size:32px; font-weight:800; margin:16px 0; }

/* FAQ */
.faq details { padding:16px; border-radius:10px; background:#fff; box-shadow: 0 6px 18px rgba(2,6,23,0.03); margin-bottom:12px; }
.faq summary { font-weight:700; cursor:pointer; outline:none; }
.faq p { margin:8px 0 0; color:var(--muted); }

/* Footer */
footer { padding:36px 20px; background:#0b1220; color:#bfc7d6; text-align:center; font-size:14px; }

/* RESPONSIVE */
@media(max-width:900px){
  .nav .menu { display:none; }
  .nav .hamb { display:block; }
  .hero { padding-top:100px; }
}

/* MOBILE MENU (slide) */
.mobile-menu {
  position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:1200; display:none; align-items:flex-start;
}
.mobile-menu .panel { background:#fff; width:280px; padding:20px; height:100vh; box-shadow: var(--card-shadow); }
.mobile-menu .panel a { display:block; padding:12px 6px; border-radius:8px; margin-bottom:6px; color:var(--text); text-decoration:none; }
.mobile-menu.show { display:flex; }

/* small polish for anchor focus */
a:focus { outline: 3px solid rgba(0,123,255,0.18); outline-offset:2px; }

.pricing {
  text-align: center; /* opcional, si quieres centrar todo */
}

.pricing .price {
  font-size: 40px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.pricing .currency {
  font-size: 20px;
  font-weight: 600;
  color: #666;
}

.pricing .amount {
  font-size: 48px;
  font-weight: 800;
  color: #000;
}

.pricing .unit {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #777;
  margin-top: 6px;
}