:root {
  --green: #16a34a;
  --green-soft: #e8f7ee;
  --orange: #f97316;
  --orange-soft: #fff4e6;
  --blue: #0ea5e9;
  --bg: #f5f7fb;
  --text: #0f172a;
  --muted: #64748b;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green);
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-sub {
  font-size: .75rem;
  color: var(--muted);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: .85rem;
}

.pill-small {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 600;
}

/* HERO */

.hero {
  padding: 2.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero-title span {
  color: var(--green);
}

.hero-text {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: var(--muted);
}

.hero-badge i {
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-main:hover {
  transform: translateY(-1px);
  background: #15803d;
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #ffffff;
  text-decoration: none;
  color: var(--muted);
  font-size: .9rem;
  gap: .35rem;
}

.hero-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .6rem;
}

.hero-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
}

.hero-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .8rem;
}

.hero-steps {
  list-style: none;
  display: grid;
  gap: .75rem;
  margin-bottom: 1rem;
}

.hero-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .6rem;
  align-items: flex-start;
  font-size: .9rem;
}

.hero-step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  margin-top: .1rem;
}

.hero-step-title {
  font-weight: 600;
  font-size: .9rem;
}

.hero-step-text {
  color: var(--muted);
  font-size: .85rem;
}

.hero-mini {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
  color: var(--muted);
  margin-top: .3rem;
}

/* SERVICES SECTION */

.section {
  padding: 1.5rem 0 2.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.section-sub {
  color: var(--muted);
  font-size: .9rem;
  max-width: 26rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.card-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.card-text {
  font-size: .87rem;
  color: var(--muted);
}

.card-list {
  list-style: none;
  font-size: .85rem;
  color: var(--muted);
  margin-top: .2rem;
  display: grid;
  gap: .3rem;
}

.card-list li::before {
  content: "•";
  margin-right: .4rem;
  color: var(--green);
  font-weight: 700;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .3rem;
}

.chip {
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  font-size: .75rem;
  color: var(--muted);
  background: #f8fafc;
}

.card-footer {
  margin-top: .6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--muted);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.status-dot span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

/* INFO SECTION */

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.info-block {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem 1.4rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  font-size: .87rem;
  color: var(--muted);
}

.info-title {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--text);
}

.info-list {
  list-style: none;
  display: grid;
  gap: .3rem;
  margin-top: .3rem;
}

.info-list li::before {
  content: "▸";
  margin-right: .3rem;
  color: var(--blue);
  font-size: .8rem;
}

.info-highlight {
  margin-top: .6rem;
  padding: .55rem .7rem;
  border-radius: .9rem;
  background: #eff6ff;
  border: 1px dashed #bfdbfe;
  color: #1d4ed8;
  font-size: .8rem;
}

.map-box {
  background: #0f172a;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.map-heading {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

.map-address {
  font-size: .82rem;
  color: #cbd5f5;
  margin-bottom: .6rem;
}

.map-schedule {
  font-size: .8rem;
  margin-bottom: .4rem;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, .16);
  color: #bbf7d0;
  font-size: .75rem;
}

.map-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .25);
  right: -80px;
  top: -40px;
}

footer {
  padding: 1.5rem 0 2.2rem;
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
}

/* WhatsApp flotante */

.whatsapp-pill {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(22, 163, 74, 0.55);
  z-index: 50;
}

.whatsapp-pill span.icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.whatsapp-pill small {
  font-size: .72rem;
  font-weight: 500;
  opacity: .9;
  display: block;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid,
  .info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  header {
    position: static;
  }

  .hero {
    padding-top: 1.6rem;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-pill {
    right: 1rem;
    left: 1rem;
    justify-content: center;
  }
}
