* { box-sizing: border-box; }

:root { --accent: #d0530f; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

a { color: #16130f; text-decoration: none; }
a:hover { color: #c9520c; }
::selection { background: #f6c79a; }

.root {
  font-family: 'Inter', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #16130f;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

.accent-text { color: var(--accent); }

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker--dark { color: #ef8a37; }

.dot { display: inline-block; border-radius: 50%; }
.dot--accent { width: 7px; height: 7px; background: var(--accent); }
.dot--sm { width: 6px; height: 6px; }

.badge {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge--live { color: #2e9e5b; background: #e7f6ec; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  transition: background .15s ease;
  white-space: nowrap;
}
.btn--accent { color: #fff; background: var(--accent); }
.btn--accent:hover { background: #b6440a; color: #fff; }
.btn--muted { color: #16130f; background: #f4efe9; }
.btn--muted:hover { background: #eae3db; color: #16130f; }
.btn--light { color: #a8380a; background: #fff; padding: 14px 28px; }
.btn--light:hover { background: #ffe6d3; color: #a8380a; }
.btn--ghost { color: #fff; background: rgba(255,255,255,.16); padding: 14px 28px; }
.btn--ghost:hover { background: rgba(255,255,255,.26); color: #fff; }

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.section-head { max-width: 640px; }
.section-head--wide { max-width: 660px; }

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -.02em;
  margin: 12px 0 0;
  line-height: 1.08;
}
.section-title--sm { font-size: 38px; margin: 12px 0 0; line-height: 1.1; }
.section-title--dark { color: #fff; margin: 12px 0 44px; max-width: 620px; }
.section-title--center { margin: 12px auto 0; max-width: 640px; }

.section-sub { font-size: 17px; color: #55504a; margin: 16px 0 0; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #efe9e3;
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 13px 32px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo { height: 34px; width: auto; display: block; }
.footer__logo { height: 28px; width: auto; }
.nav__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.01em;
  color: #16130f;
}
.footer__name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }
.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: #4a453f;
  white-space: nowrap;
}
.nav__menu a:hover { color: #c9520c; }
.nav__langs {
  display: flex;
  align-items: center;
  background: #f4efe9;
  border-radius: 999px;
  padding: 3px;
}
.nav__langs button {
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #8a847c;
  background: transparent;
}
.nav__langs button:hover { color: #16130f; }
.nav__langs button.is-active { color: #fff; background: var(--accent); }
.nav__langs button.is-active:hover { color: #fff; }
/* Fixed to fit "Reserva una trucada" (ca), the longest of the three CTA labels,
   so the button doesn't resize and shift the language pill when switching. */
.nav__cta { font-size: 14px; padding: 10px 18px; width: 210px; }

/* HERO */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 74px 32px 40px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fbefe4;
  color: #a8440a;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 22px 0 0;
  color: #16130f;
  text-wrap: balance;
}
.hero__sub {
  font-size: 18.5px;
  line-height: 1.6;
  color: #55504a;
  margin: 22px 0 0;
  max-width: 520px;
}
.hero__ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 34px; margin-top: 42px; }
.hero__stat-v {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #16130f;
}
.hero__stat-l { font-size: 13px; color: #8a847c; margin-top: 2px; }

.panel-wrap { position: relative; }
.panel-glow {
  position: absolute;
  inset: -30px -20px -20px 20px;
  background: radial-gradient(60% 60% at 70% 30%, rgba(239,138,55,.22), transparent 70%);
  filter: blur(10px);
}
.panel {
  position: relative;
  background: #fff;
  border: 1px solid #eee5dd;
  border-radius: 20px;
  box-shadow: 0 30px 60px -24px rgba(120,50,10,.28);
  overflow: hidden;
}
.panel__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid #f1ece6;
  background: #fdfbf9;
}
.panel__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13.5px; }
.panel__head .badge { margin-left: auto; }
.panel__body { padding: 8px 10px; }
.task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: 12px;
}
.task:hover { background: #faf6f1; }
.task__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.task__body { flex: 1 1 auto; min-width: 0; }
.task__title { font-size: 13.5px; font-weight: 600; color: #26221d; }
.task__meta { font-size: 12px; color: #948d84; }
.task__status { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.panel__foot {
  padding: 14px 18px;
  border-top: 1px solid #f1ece6;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #8a847c;
}

/* TRUST */
.trust-section { max-width: 1160px; margin: 26px auto 0; padding: 0 32px; }
.trust {
  border-top: 1px solid #efe9e3;
  border-bottom: 1px solid #efe9e3;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.trust__label { font-size: 13px; color: #8a847c; font-weight: 500; }
.trust__chips { display: flex; gap: 12px; flex-wrap: wrap; margin-left: auto; }
.chip {
  font-size: 12.5px;
  font-weight: 600;
  color: #6b655e;
  background: #f6f2ec;
  border: 1px solid #eee7df;
  padding: 7px 14px;
  border-radius: 999px;
}

/* SERVICES */
.services { max-width: 1160px; margin: 0 auto; padding: 84px 32px 20px; }
.services .grid { margin-top: 44px; }
.card {
  border: 1px solid #eee5dd;
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -22px rgba(120,50,10,.3); }
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}
.card__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 20px; margin: 18px 0 0; }
.card__body { font-size: 14.5px; color: #5c574f; margin: 10px 0 0; line-height: 1.6; }

/* MANAGED */
.managed-section { max-width: 1160px; margin: 64px auto 0; padding: 0 32px; }
.managed {
  background: #fdf6f0;
  border: 1px solid #f2e2d3;
  border-radius: 26px;
  padding: 52px 48px;
}
.managed__points { margin-top: 40px; }
.point { border-top: 2px solid #f0d9c4; padding-top: 20px; }
.point__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.point__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 19px; margin: 16px 0 0; }
.point__body { font-size: 14.5px; color: #5c574f; margin: 9px 0 0; line-height: 1.6; }

/* HOW */
.how { background: #16130f; color: #f4efe9; margin-top: 90px; }
.how__inner { max-width: 1160px; margin: 0 auto; padding: 84px 32px; }
.step {
  border: 1px solid #2c2621;
  border-radius: 18px;
  padding: 28px;
  background: #1e1a15;
}
.step__n { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; color: #ef8a37; letter-spacing: .08em; }
.step__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 21px; margin: 14px 0 0; color: #fff; }
.step__body { font-size: 14.5px; color: #b7afa5; margin: 10px 0 0; line-height: 1.6; }

/* RESULTS */
.results { max-width: 1160px; margin: 0 auto; padding: 84px 32px 20px; text-align: center; }
.results .grid { margin-top: 46px; }
.metric {
  border: 1px solid #eee5dd;
  border-radius: 18px;
  padding: 34px 22px;
  background: #fdfbf9;
}
.metric__v { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 46px; letter-spacing: -.02em; color: var(--accent); }
.metric__l { font-size: 14.5px; color: #55504a; margin-top: 8px; }
.quote {
  max-width: 780px;
  margin: 56px auto 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: #26221d;
}
.quote__by { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; color: #8a847c; margin-top: 18px; }

/* CONTACT */
.contact-section { max-width: 1160px; margin: 84px auto 0; padding: 0 32px; }
.contact {
  border-radius: 26px;
  background: linear-gradient(135deg, #d0530f, #a8380a);
  color: #fff;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 40px 70px -34px rgba(120,50,10,.6);
}
.contact__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -.02em;
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.08;
}
.contact__body { font-size: 18px; color: #ffe6d3; margin: 18px auto 0; max-width: 540px; }
.contact__ctas { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* FOOTER */
.footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 54px 32px 44px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__tag { font-size: 13px; color: #8a847c; }
.footer__copy { margin-left: auto; font-size: 13px; color: #a19a90; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .grid--3 { grid-template-columns: 1fr; }
  .hero__title { font-size: 40px; }
  .section-title { font-size: 30px; }
  .nav__menu { display: none; }
  .footer__copy { margin-left: 0; }
}
