:root {
  --blue: #2c3d70;
  --blue-deep: #1f2d55;
  --blue-soft: #eef1f8;
  --green: #8cac00;
  --green-dark: #6f8c00;
  --green-soft: #f3f7df;
  --ink: #18202b;
  --muted: #657081;
  --line: #e4e8ee;
  --surface: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 45, 85, 0.10);
  --shadow-soft: 0 12px 34px rgba(31, 45, 85, 0.07);
  --radius: 20px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(228,232,238,.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 150px; }
.header-nav { display: flex; gap: 26px; }
.header-nav a {
  text-decoration: none;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 750;
}
.header-nav a:hover { color: var(--green-dark); }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(140,172,0,.09), transparent 26%),
    radial-gradient(circle at 20% 78%, rgba(44,61,112,.05), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
  padding: 72px 0 78px;
}
.hero-copy-block { max-width: 630px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--blue-deep); letter-spacing: -.035em; }
h1 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: .98;
  font-weight: 790;
}
.hero-copy {
  max-width: 590px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.primary-cta,
.secondary-cta,
.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 780;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.primary-cta { padding: 0 22px; background: var(--blue); color: var(--white); box-shadow: 0 12px 30px rgba(44,61,112,.16); }
.primary-cta:hover { background: var(--blue-deep); transform: translateY(-1px); }
.secondary-cta { padding: 0 20px; border: 1px solid var(--line); background: var(--white); color: var(--blue); }
.secondary-cta:hover { border-color: var(--blue); transform: translateY(-1px); }

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.service-list li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #536070;
  font-size: .8rem;
  font-weight: 720;
}

.presence-card {
  position: relative;
  min-height: 440px;
  padding: 28px;
  border: 1px solid rgba(219,225,232,.95);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(247,249,252,.96)),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.presence-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -100px;
  border-radius: 50%;
  background: rgba(140,172,0,.07);
}
.presence-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -140px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(44,61,112,.05);
}
.presence-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.presence-head > div { display: grid; gap: 5px; }
.presence-kicker {
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .13em;
}
.presence-head strong { color: var(--blue-deep); font-size: 1.12rem; }
.presence-count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .74rem;
  font-weight: 800;
}
.presence-route {
  position: absolute;
  left: 47px;
  top: 112px;
  bottom: 68px;
  width: 18px;
  z-index: 1;
}
.route-line {
  position: absolute;
  left: 8px;
  top: 20px;
  bottom: 18px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(44,61,112,.28), rgba(140,172,0,.55));
}
.presence-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.presence-place {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 12px 14px 12px 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.presence-place:hover {
  background: var(--white);
  border-color: var(--line);
  transform: translateX(2px);
}
.place-dot {
  width: 14px;
  height: 14px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(44,61,112,.32);
}
.place-text { display: grid; gap: 3px; }
.place-text strong { color: var(--blue-deep); font-size: 1.12rem; }
.place-text small { color: var(--muted); font-size: .8rem; }
.place-arrow { color: var(--blue); font-size: 1.2rem; font-weight: 700; }
.presence-footer {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.presence-footer span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(44,61,112,.06);
  color: #667084;
  font-size: .7rem;
  font-weight: 700;
}

.stores-section { padding: 78px 0 90px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px);
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}
.section-heading h2,
.contact-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}
.section-heading > p {
  margin: 0 0 2px;
  color: var(--muted);
  line-height: 1.6;
}
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.store-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  scroll-margin-top: 100px;
}
.store-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 26px 26px 24px;
  background: linear-gradient(155deg, #f8fafc 0%, #ffffff 72%);
  border-bottom: 1px solid var(--line);
}
.store-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 850;
}
.store-card h3 { margin: 0 0 8px; font-size: 1.8rem; }
.store-card-top p { margin: 0; color: var(--muted); line-height: 1.5; font-size: .92rem; }
.hours-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.info-label {
  padding-top: 2px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hours-box > div { display: grid; gap: 3px; }
.hours-box strong { margin-top: 6px; color: var(--ink); font-size: .88rem; }
.hours-box strong:first-child { margin-top: 0; }
.hours-box span:not(.info-label) { color: var(--muted); font-size: .87rem; line-height: 1.4; }
.contact-lines { padding: 8px 26px 18px; margin-top: auto; }
.contact-lines a {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact-lines a:last-child { border-bottom: 0; }
.contact-lines span { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.contact-lines strong { color: var(--blue); font-size: .92rem; overflow-wrap: anywhere; }
.contact-lines a:hover strong { color: var(--green-dark); }
.store-actions {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 8px;
  padding: 16px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.action {
  padding: 0 10px;
  border: 1px solid #d8dde5;
  background: var(--white);
  color: var(--blue);
  font-size: .84rem;
}
.action:hover { border-color: var(--blue); transform: translateY(-1px); }
.action-primary { background: var(--blue); border-color: var(--blue); color: var(--white); }
.action-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.action-whatsapp { border-color: rgba(140,172,0,.42); color: #596f00; }
.action-whatsapp:hover { border-color: var(--green); background: #fbfdf2; }

.contact-strip { background: var(--blue-deep); color: var(--white); }
.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 52px 0;
}
.contact-strip .eyebrow { color: #c6df55; }
.contact-strip h2 { color: var(--white); }
.contact-strip p:last-child { margin: 0; color: rgba(255,255,255,.76); line-height: 1.65; }

.site-footer { border-top: 1px solid var(--line); background: var(--white); }
.footer-inner {
  min-height: 124px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: .86rem;
}
.footer-inner img { width: 122px; }
.footer-note { text-align: right; }

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
    padding: 66px 0 70px;
  }
  .hero-copy-block { max-width: 720px; }
  .presence-card { max-width: 720px; width: 100%; min-height: 420px; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .stores-grid { grid-template-columns: 1fr; }
  .store-card {
    display: grid;
    grid-template-columns: .85fr 1fr;
    grid-template-areas:
      "top hours"
      "contacts contacts"
      "actions actions";
  }
  .store-card-top { grid-area: top; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .hours-box { grid-area: hours; border-bottom: 1px solid var(--line); }
  .contact-lines { grid-area: contacts; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 6px 26px 14px; margin-top: 0; }
  .contact-lines a { border-bottom: 0; }
  .store-actions { grid-area: actions; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 70px; }
  .brand img { width: 130px; }
  .header-nav { gap: 16px; }
  .header-nav a { font-size: .82rem; }

  .hero-grid { padding: 52px 0 58px; gap: 34px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-copy { margin: 22px 0 26px; }
  .service-list { margin-top: 24px; }

  .presence-card { min-height: 418px; padding: 22px 20px; border-radius: 22px; }
  .presence-head { padding-bottom: 18px; }
  .presence-head strong { font-size: .98rem; }
  .presence-route { left: 39px; top: 102px; bottom: 62px; }
  .presence-list { margin-top: 12px; }
  .presence-place { min-height: 78px; padding-right: 8px; }
  .place-text strong { font-size: 1rem; }
  .place-text small { font-size: .73rem; }
  .presence-footer { left: 20px; right: 20px; bottom: 18px; }

  .stores-section { padding: 58px 0 66px; }
  .store-card { display: flex; }
  .store-card-top { border-right: 0; }
  .hours-box { grid-template-columns: 68px 1fr; }
  .contact-lines { display: block; padding: 6px 22px 16px; }
  .contact-lines a { border-bottom: 1px solid var(--line); }
  .contact-lines a:last-child { border-bottom: 0; }
  .store-actions { grid-template-columns: 1fr; padding: 14px; }
  .action { min-height: 48px; }

  .contact-strip-inner { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 10px; padding: 32px 0; }
  .footer-note { text-align: left; margin: 0; }
  .footer-inner p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
