:root {
  --gold: #c8960c;
  --gold-light: #e3b23c;
  --gold-dark: #a87c0a;
  --ink: #1a1a1a;
  --charcoal: #262626;
  --charcoal-2: #1f1f1f;
  --cream: #f6f3ec;
  --cream-2: #efe9dd;
  --white: #ffffff;
  --gray: #6b6b6b;
  --gray-light: #d8d2c6;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --maxw: 1180px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gold { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 10px 22px rgba(200, 150, 12, .35); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 26, 26, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; letter-spacing: .5px; }
.brand .pin { color: var(--gold); }
.brand small { display: block; font-size: .62rem; letter-spacing: 3px; font-weight: 500; color: var(--gold-light); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #e9e4d8; font-weight: 500; font-size: .95rem; transition: color .15s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(20,20,20,.92) 0%, rgba(20,20,20,.55) 55%, rgba(20,20,20,.25) 100%),
    url("../assets/folleto.png") center/cover no-repeat;
  min-height: 86vh;
  display: flex;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--cream) 0%, rgba(246,243,236,0) 22%);
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; padding: 60px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,12,.18); color: var(--gold-light);
  padding: 7px 16px; border-radius: 999px; font-weight: 600; font-size: .8rem;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; font-weight: 800; letter-spacing: -1px; }
.hero h1 em { font-style: normal; color: var(--gold); display: block; }
.hero p.lead { font-size: 1.2rem; color: #ded8c9; margin: 22px 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Badges strip ---------- */
.badges {
  background: var(--ink);
  color: #fff;
  position: relative;
  z-index: 3;
}
.badges .container { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; padding: 22px 24px; }
.badge { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .92rem; }
.badge .ic {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--gold); color: #fff; flex: 0 0 auto;
}
.badge .ic svg { width: 22px; height: 22px; }

/* ---------- Section base ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head .kicker { color: var(--gold-dark); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: .82rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin: 10px 0; line-height: 1.1; }
.section-head p { color: var(--gray); font-size: 1.08rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gold);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(0,0,0,.16); }
.service-card .sic {
  width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; margin-bottom: 20px;
}
.service-card .sic svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray); }

/* ---------- Why us / value props ---------- */
.why { background: var(--ink); color: #fff; }
.why .section-head h2 { color: #fff; }
.why .section-head p { color: #c9c3b5; }
.why .section-head .kicker { color: var(--gold-light); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .2s, transform .2s;
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card .vic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(200,150,12,.16); color: var(--gold-light); margin-bottom: 18px;
}
.value-card .vic svg { width: 24px; height: 24px; }
.value-card h4 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: #b9b3a5; font-size: .98rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { text-align: center; padding: 10px; }
.step .num {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 1.5rem;
  color: #fff; background: var(--gold); box-shadow: 0 10px 24px rgba(200,150,12,.3);
}
.step h4 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--gray); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  color: #fff; text-align: center; border-radius: var(--radius);
  padding: 54px 30px; box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.cta-band p { font-size: 1.12rem; opacity: .95; margin: 12px 0 26px; }
.cta-band .btn-dark { background: var(--ink); }

/* ---------- Contact / Form ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.1; }
.contact-info p { color: var(--gray); margin: 14px 0 26px; font-size: 1.05rem; }
.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: center; font-weight: 500; }
.contact-list .cic { width: 46px; height: 46px; border-radius: 12px; background: var(--ink); color: var(--gold-light); display: grid; place-items: center; flex: 0 0 auto; }
.contact-list .cic svg { width: 22px; height: 22px; }
.contact-list small { display: block; color: var(--gray); font-weight: 400; }

.form-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card .sub { color: var(--gray); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-light); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #fafafa; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { padding: 12px 16px; border-radius: 10px; font-weight: 500; margin-top: 8px; display: none; }
.form-msg.ok { display: block; background: #e7f6ec; color: #1f7a3d; }
.form-msg.err { display: block; background: #fdecec; color: #b3261e; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal-2); color: #cfc9bb; padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer h5 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer a { color: #cfc9bb; display: block; margin-bottom: 8px; transition: color .15s; }
.footer a:hover { color: var(--gold-light); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.social { display: flex; gap: 12px; margin-top: 14px; }
.social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; margin: 0; }
.social a:hover { background: var(--gold); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; text-align: center; font-size: .88rem; color: #9c968a; }
.footer-bottom a { display: inline; color: var(--gold-light); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--ink); padding: 20px 24px; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-cta .btn-ghost { display: none; }
  .services-grid, .value-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
