@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  --primary: #2563eb;
  --primary2: #1d4ed8;
  --accent: #0ea5e9;
  --green: #10b981;
  --orange: #f59e0b;
  --bg: #f9fafb;
  --bg2: #eff6ff;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #dbeafe;
  --shadow: rgba(37,99,235,0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border); padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; box-shadow: 0 2px 20px rgba(37,99,235,0.06);
}
.logo { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: -0.02em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary2)) !important; color: white !important; padding: 9px 22px; border-radius: 8px; font-weight: 700 !important; box-shadow: 0 4px 14px rgba(37,99,235,0.28); transition: all 0.2s !important; }
.nav-cta:hover { box-shadow: 0 6px 22px rgba(37,99,235,0.42) !important; transform: translateY(-1px); color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 1.5rem 5%; z-index: 99; flex-direction: column; gap: 0.9rem; box-shadow: 0 8px 30px var(--shadow); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--muted); text-decoration: none; font-size: 0.97rem; font-weight: 600; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--primary); }

/* PAGE HERO */
.page-hero { padding: 128px 5% 68px; background: linear-gradient(155deg, #eff6ff 0%, #f8faff 55%, #ecfdf5 100%); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(37,99,235,0.06) 1.5px, transparent 1.5px); background-size: 38px 38px; }
.page-hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.page-tag { display: inline-block; background: rgba(37,99,235,0.08); border: 1.5px solid rgba(37,99,235,0.18); color: var(--primary); font-size: 0.74rem; padding: 5px 16px; border-radius: 20px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--text); margin-bottom: 1rem; line-height: 1.15; }
.page-hero h1 span { color: var(--primary); }
.page-hero p { color: var(--muted); font-size: 1.03rem; line-height: 1.78; }

/* SECTIONS */
.section { padding: 80px 5%; }
.section.alt { background: var(--bg2); }
.sec-tag { color: var(--primary); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; margin-bottom: 0.6rem; }
.sec-title { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 800; margin-bottom: 0.8rem; color: var(--text); line-height: 1.2; }
.sec-title span { color: var(--primary); }
.sec-sub { color: var(--muted); font-size: 0.97rem; max-width: 530px; line-height: 1.78; }
.center { text-align: center; }
.center .sec-sub { margin: 0 auto; }

/* CARDS */
.card { background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 1.8rem; transition: all 0.3s; box-shadow: 0 2px 14px var(--shadow); }
.card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37,99,235,0.13); }
.card-icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(14,165,233,0.08)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.1rem; }

/* BUTTONS */
.btn { display: inline-block; padding: 12px 28px; border-radius: 9px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.97rem; font-weight: 700; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary2)); color: white; box-shadow: 0 5px 22px rgba(37,99,235,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 9px 30px rgba(37,99,235,0.42); }
.btn-outline { background: white; color: var(--primary); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn-full { display: block; width: 100%; text-align: center; }

/* FORM */
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.45rem; font-weight: 700; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--bg); border: 1.5px solid var(--border); color: var(--text); padding: 11px 15px; border-radius: 9px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.08); background: white; }
.fg select option { background: white; }
.fg textarea { resize: vertical; min-height: 100px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.sub-btn { width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary2)); color: white; border: none; padding: 14px; border-radius: 9px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 5px 20px rgba(37,99,235,0.28); margin-top: 0.4rem; }
.sub-btn:hover { box-shadow: 0 9px 28px rgba(37,99,235,0.42); transform: translateY(-2px); }
.ok-msg { display: none; background: #ecfdf5; border: 1.5px solid #6ee7b7; color: #065f46; padding: 0.9rem; border-radius: 9px; text-align: center; font-size: 0.92rem; font-weight: 600; margin-top: 0.8rem; }

/* FOOTER */
footer { background: white; border-top: 1.5px solid var(--border); padding: 56px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; margin-top: 0.7rem; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.78rem; color: var(--text); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1.5px solid var(--border); padding-top: 1.4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--muted); font-size: 0.83rem; }
.social-links { display: flex; gap: 0.6rem; }
.social-links a { width: 34px; height: 34px; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: all 0.2s; }
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: white; }

/* WHATSAPP */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; text-decoration: none; box-shadow: 0 5px 22px rgba(37,211,102,0.38); animation: waPulse 2.5s infinite; }
@keyframes waPulse { 0%,100%{box-shadow:0 5px 22px rgba(37,211,102,0.38);}50%{box-shadow:0 5px 36px rgba(37,211,102,0.6);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);} }

/* RESPONSIVE */
@media(max-width:900px){
  .nav-links{display:none;} .nav-cta-desk{display:none!important;} .hamburger{display:flex;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem;}
}
@media(max-width:600px){
  .footer-grid{grid-template-columns:1fr;} .footer-bottom{flex-direction:column;text-align:center;}
  .frow{grid-template-columns:1fr;}
}
