/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a2e;
  background: #f8f7f4;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s ease;
}
.btn-primary {
  background: #d4af37; 
  color: #fff;
  /* border-color: #1a4fd6; */
  
}
.btn-primary:hover { background: #e5c65c; border-color: #1440b8; }
.btn-outline {
  background: #065f46;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #1a4fd6;
}
.logo-mark {
  width: 200px;
  height: 60px;
  background: #fff;
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  color: #444;
  font-weight: 400;
  transition: color .2s;
}
.nav-links a:hover { color: #1a4fd6; }
.nav-cta { margin-left: .5rem; padding: 9px 20px; font-size: 14px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all .25s;
}

/* ── Hero ── 680 */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f2d84 0%, #1a4fd6 60%, #2563eb 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 400;
  max-width: 620px;
}

.hero-title em {
  font-style: italic;
  color: #a5c4ff;
}
.hero-sub {
  font-size: 15px;
  opacity: .85;
  max-width: 460px;
  margin-bottom: 2rem;
  font-weight: 300;
  text-align: justify;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hstat strong { display: block; font-size: 20px; font-weight: 600; }
.hstat span { font-size: 12px; opacity: .7; font-weight: 300; }
.hstat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.25);
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section--dark {
  background: #0f1e4a;
  color: #fff;
}
.section--contact { background: #f0f4ff; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header--light .section-title { color: #fff; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1a4fd6;
  margin-bottom: .5rem;
}
.section-label--light { color: #7aa3ff; }
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
}

/* ── Cards Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 22px; height: 22px; }
.card--blue .card-icon { background: #dbeafe; color: #1a4fd6; }
.card--teal .card-icon { background: #d1fae5; color: #065f46; }
.card--amber .card-icon { background: #fef3c7; color: #92400e; }
.card--coral .card-icon { background: #fee2e2; color: #991b1b; }
.card--purple .card-icon { background: #ede9fe; color: #5b21b6; }
.card--green .card-icon { background: #dcfce7; color: #166534; }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: .5rem; }
.card p { font-size: 14px; color: #555; line-height: 1.6; }

/* ── Steps ── */
.steps-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.5rem;
  width: 100%;
}
.step--highlight {
  background: rgba(26,79,214,.35);
  border-color: rgba(100,150,255,.4);
}
.step-connector {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,.15);
  margin: 4px auto;
}
.step-num {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #a5c4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.step-num--highlight { background: #1a4fd6; color: #fff; }
.step-body h3 { font-size: 16px; font-weight: 500; margin-bottom: .35rem; color: #fff; }
.step-body p { font-size: 14px; color: rgba(255,255,255,.65); }
.garantia {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.garantia-icon { font-size: 28px; }
.garantia strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.garantia p { font-size: 13px; color: rgba(255,255,255,.65); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.tcard {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
}
.tcard-stars { color: #f59e0b; font-size: 14px; margin-bottom: .75rem; }
.tcard p { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #dbeafe;
  color: #1a4fd6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 14px; font-weight: 600; }
.tcard-author span { font-size: 12px; color: #888; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-desc { font-size: 15px; color: #555; margin-bottom: 1.75rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.contact-item { display: flex; gap: 14px; align-items: center; }
.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #dbeafe;
  color: #1a4fd6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.contact-item span { display: block; font-size: 12px; color: #888; }
.contact-item strong { font-size: 14px; font-weight: 500; }
.btn-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.btn-wpp:hover { background: #1db954; }

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 32px rgba(26,79,214,.06);
}
.form-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 5px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1a1a2e;
  background: #f8f7f4;
  border: 1px solid #e0ddd8;
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #1a4fd6;
  box-shadow: 0 0 0 3px rgba(26,79,214,.1);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 4px;
}
.form-msg {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}
.form-msg.success { background: #d1fae5; color: #065f46; }
.form-msg.error { background: #fee2e2; color: #991b1b; }
.hidden { display: none; }
.spinner {
  width: 18px;
  height: 18px;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Footer ── */
.footer {
  background: #0f1e4a;
  color: rgba(255,255,255,.65);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; color: #fff; font-size: 15px; }
.footer-brand p { font-size: 12px; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; margin-top: .25rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.07);
    padding: 1rem 1.5rem;
    gap: .75rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 16px; padding: .25rem 0; }
  .hero { padding: 4rem 0 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
}
@media (max-width: 500px) {
  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

.stats-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.counter-number {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: border-color .2s, color .2s;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}