:root {
  --bg: #f6f8fc;
  --bg-alt: #eef3ff;
  --text: #1a2238;
  --muted: #5f6b86;
  --primary: #355dff;
  --primary-dark: #1f46df;
  --accent: #7a8cff;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(28, 47, 102, 0.14);
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7ecf7;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #dfe8ff, #f5f8ff);
}

.brand strong { display: block; font-size: 1rem; }
.brand small { color: var(--muted); font-size: .76rem; }

.nav { display: flex; gap: 18px; align-items: center; }
.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
}
.nav a:hover { color: var(--primary); }
.nav-cta {
  padding: 10px 14px;
  border-radius: 10px;
  background: #e9eeff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  position: relative;
  padding: 86px 0 56px;
  background: radial-gradient(circle at top right, #b9c7ff 0, #edf2ff 42%, #f6f8fc 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e6ecff;
  color: #2143c9;
  font-weight: 700;
  font-size: .82rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 16px 0 14px;
}
.hero p {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 62ch;
}
.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 18px;
  transition: .2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  border-color: #b9c6ef;
  color: #2d488d;
  background: #f6f9ff;
}

.hero-highlights {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-highlights div {
  background: var(--white);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #e6ebf8;
}
.hero-highlights strong { display: block; font-size: .9rem; }
.hero-highlights span { color: var(--muted); font-size: .82rem; }

.hero-image-card {
  background: var(--white);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.hero-image-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 14px;
}

.section { padding: 74px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { margin-bottom: 30px; }
.section-kicker {
  color: #3650c5;
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.section h2 {
  margin: 8px 0 6px;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}
.section-head p { color: var(--muted); }

.cards-grid {
  display: grid;
  gap: 16px;
}
.benefits-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: 1px solid #e6ebf8;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 22px rgba(50, 75, 145, 0.09);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: #edf2ff;
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.check-list li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: "✔";
  color: #2145d1;
  position: absolute;
  left: 0;
}
.info-panel {
  background: linear-gradient(160deg, #2c4fd3, #5f74e8);
  color: var(--white);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.info-panel .btn-ghost,
.info-panel .btn-primary { margin-top: 12px; }

.services-grid { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #e3eafc;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #dfe6fb;
}

.location-box {
  background: var(--white);
  border: 1px solid #dce5fc;
  border-radius: 14px;
  padding: 18px;
  margin: 14px 0 16px;
}
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dce6ff;
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

.faq-list details {
  background: var(--white);
  border: 1px solid #dde5fa;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq-list summary { cursor: pointer; font-weight: 700; }

.cta-panel {
  background: linear-gradient(135deg, #203fbe, #4863d8);
  border-radius: 22px;
  color: var(--white);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #11182d;
  color: #d4dcf8;
  padding: 52px 0 20px;
}
.footer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.site-footer h3, .site-footer h4 { color: #fff; margin-top: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #d4dcf8; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(212, 220, 248, 0.2);
  margin-top: 26px;
  padding-top: 16px;
  font-size: .9rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #17a34a, #1cc85c);
  box-shadow: var(--shadow);
  z-index: 1200;
}

@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .benefits-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-image-card img { height: 360px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: 78px;
    right: 4%;
    width: 92%;
    background: #fff;
    border: 1px solid #e3e9fa;
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .benefits-grid, .services-grid, .trust-grid, .footer-grid, .hero-highlights {
    grid-template-columns: 1fr;
  }
  .section { padding: 58px 0; }
  .cta-panel { padding: 26px 18px; }
}