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

:root {
  --navy: #0b1d3a;
  --navy-mid: #132a4c;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --orange: #f59e0b;
  --orange-dark: #d97706;
  --green: #22c55e;
  --green-dark: #16a34a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(11, 29, 58, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }

.top-bar {
  background: var(--navy);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}
.top-bar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.top-bar a { color: var(--orange); font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 1rem; color: var(--navy);
}
.logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.05rem;
}
.nav { display: flex; gap: 1.25rem; align-items: center; }
.nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--gray-600);
  padding: 0.35rem 0.65rem; border-radius: 8px; transition: all .2s;
}
.nav a:hover, .nav a.active { color: var(--blue); background: #eff6ff; }
.header-ctas { display: flex; gap: 0.5rem; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1.2rem; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #1e40af; transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #1a1a1a; }
.btn-orange:hover { background: var(--orange-dark); color: white; }
.btn-whatsapp { background: var(--green); color: white; }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-outline-light {
  background: transparent; border: 1.5px solid var(--gray-200); color: var(--gray-700);
}
.btn-outline-light:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.6rem, 3.2vw, 2.15rem); color: var(--navy); margin-bottom: 0.5rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.services-car {
  margin: 1.5rem auto 0; max-width: 520px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.services-car img { width: 100%; height: auto; }

.hero {
  background: linear-gradient(160deg, #0b1d3a 0%, #16325a 45%, #0f2744 100%);
  color: white; padding: 4rem 0 5rem; position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(245,158,11,0.18); color: #fbbf24;
  font-size: 0.78rem; font-weight: 700; padding: 0.35rem 0.85rem;
  border-radius: 999px; margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub { color: #cbd5e1; font-size: 1.08rem; margin-bottom: 1.75rem; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.85rem; color: #94a3b8;
}
.hero-trust span { display: flex; align-items: center; gap: 0.3rem; }

.form-card {
  background: white; border-radius: 16px; padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25); color: var(--gray-900);
}
.form-card h3 { font-size: 1.25rem; margin-bottom: 0.2rem; color: var(--navy); }
.form-card .form-sub { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 0.85rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-600); margin-bottom: 0.3rem;
}
.form-group input, .form-group select {
  width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-size: 0.95rem; font-family: inherit;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--blue);
}
.form-card .btn-block { width: 100%; justify-content: center; }
.form-or { text-align: center; margin: 0.85rem 0 0; font-size: 0.85rem; color: var(--gray-500); }
.form-or a { color: var(--blue); font-weight: 600; }

.stats-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem;
  margin-top: -1.75rem; position: relative; z-index: 2; padding: 0 1rem 1rem;
}
.stat-pill {
  background: white; border: 1px solid var(--gray-200); border-radius: 999px;
  padding: 0.55rem 1rem; font-size: 0.82rem; font-weight: 600; color: var(--gray-700);
  box-shadow: 0 4px 16px rgba(11,29,58,0.08);
  display: flex; align-items: center; gap: 0.35rem;
}

.grid { display: grid; gap: 1.35rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 1.6rem; transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; background: #eff6ff; color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 0.9rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--navy); }
.card p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 0.75rem; }
.card a.learn { font-size: 0.88rem; font-weight: 600; color: var(--blue); }

.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.85rem;
}
.area-chip {
  background: white; border: 1.5px solid var(--gray-200); border-radius: 12px;
  padding: 1rem 0.75rem; text-align: center; font-weight: 600; color: var(--navy); transition: all .2s;
}
.area-chip:hover { border-color: var(--blue); background: #eff6ff; color: var(--blue); }

.faq-list { max-width: 720px; margin: 0 auto; display: grid; gap: 0.7rem; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: 12px; background: white; overflow: hidden;
}
.faq-item summary {
  padding: 1.05rem 1.2rem; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--gray-400); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 1.2rem 1.15rem; color: var(--gray-600); font-size: 0.95rem; }

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  color: white; padding: 3.5rem 0; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-banner p { color: #94a3b8; margin-bottom: 1.5rem; }
.cta-banner .hero-ctas { justify-content: center; margin-bottom: 0; }

.site-footer {
  background: #071526; color: #94a3b8; padding: 3rem 0 1.5rem; font-size: 0.9rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.footer-brand { color: white; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.6rem; }
.footer-grid h4 { color: white; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-grid ul { list-style: none; display: grid; gap: 0.4rem; }
.footer-grid a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.82rem;
}

.page-hero {
  background: linear-gradient(135deg, #0b1d3a 0%, #1a365d 100%);
  color: white; padding: 3.25rem 0 2.75rem; text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.6rem; }
.page-hero p { color: #94a3b8; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.content-block { max-width: 720px; margin: 0 auto; }
.content-block h2 { font-size: 1.35rem; color: var(--navy); margin: 1.75rem 0 0.75rem; }
.content-block p { color: var(--gray-600); margin-bottom: 1rem; }
.feature-list { list-style: none; display: grid; gap: 0.65rem; margin: 1rem 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.55rem; color: var(--gray-700); }
.feature-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: white;
    padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-200); gap: 0.7rem;
  }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-ctas .btn span { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 0 3.5rem; }
  .section { padding: 3rem 0; }
  .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }
}
