/* ---------- Quifarnat — design tokens ---------- */
:root {
  --teal-900: #0d5a5c;
  --teal-700: #1a7a7c;
  --teal-600: #1f8a8c;
  --teal-500: #2aa3a5;
  --teal-100: #d3ecec;
  --teal-50:  #ecf6f6;
  --lime-600: #88b22a;
  --lime-500: #a6ce39;
  --lime-400: #bcd95a;
  --ink-900: #0f2425;
  --ink-700: #2c4445;
  --ink-500: #5a6e6f;
  --ink-300: #99a8a9;
  --bg-soft: #f3f8f7;
  --bg:      #ffffff;
  --line:    #e5edec;
  --shadow-sm: 0 1px 2px rgba(13,90,92,.06), 0 1px 4px rgba(13,90,92,.04);
  --shadow:    0 6px 18px rgba(13,90,92,.08), 0 2px 6px rgba(13,90,92,.04);
  --shadow-lg: 0 24px 50px rgba(13,90,92,.14), 0 6px 18px rgba(13,90,92,.08);
  --radius:    14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
h1, h2, h3, h4 { font-family: 'Mulish', 'Nunito Sans', sans-serif; letter-spacing: -0.01em; line-height: 1.15; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--teal-900);
  color: #e3f0f0;
  font-size: 13px;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; gap: 16px; }
.topbar .left, .topbar .right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .item { display: inline-flex; gap: 6px; align-items: center; opacity: .9; }
.topbar .item:hover { opacity: 1; color: var(--lime-400); }
.topbar svg { width: 14px; height: 14px; }
@media (max-width: 720px) {
  .topbar .left .schedule { display: none; }
  .topbar .right .mail { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav .brand { display: flex; align-items: center; gap: 12px; }
.nav .brand-logo {
  height: 70px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
@media (max-width: 540px) {
  .nav .brand-logo { height: 54px; max-width: 180px; }
}
.nav .links { display: flex; gap: 28px; align-items: center; }
.nav .links a { font-size: 15px; font-weight: 600; color: var(--ink-700); position: relative; padding: 6px 0; }
.nav .links a:hover { color: var(--teal-700); }
.nav .links a::after { content: ''; position: absolute; left: 50%; bottom: -2px; width: 0; height: 2px; background: var(--lime-500); transition: all .25s ease; transform: translateX(-50%); }
.nav .links a:hover::after { width: 100%; }
.nav .cta-group { display: flex; gap: 10px; align-items: center; }
@media (max-width: 960px) { .nav .links { display: none; } }
@media (max-width: 540px) { .nav .brand .tag { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px; letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--teal-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-600); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lime { background: var(--lime-500); color: var(--ink-900); }
.btn-lime:hover { background: var(--lime-400); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal-700); border: 1.5px solid var(--teal-700); }
.btn-outline:hover { background: var(--teal-50); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1eb957; }
.btn svg { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #eaf6f6 0%, #ffffff 100%);
  overflow: hidden;
}
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  aspect-ratio: 1817 / 866;
  overflow: hidden;
  background: #eaf6f6;
}
.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .7s cubic-bezier(.65, 0, .35, 1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--teal-700);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: all .2s ease;
  z-index: 3;
}
.hero-arrow:hover { background: var(--teal-700); color: #fff; }
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }
.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.6);
  padding: 8px 14px; border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(13, 90, 92, .25);
  transition: all .2s ease;
  border: 0; padding: 0;
}
.hero-dot:hover { background: rgba(13, 90, 92, .5); }
.hero-dot.active {
  background: var(--teal-700);
  width: 28px; border-radius: 999px;
}
@media (max-width: 600px) {
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow.prev { left: 8px; } .hero-arrow.next { right: 8px; }
  .hero-dots { bottom: 12px; padding: 6px 10px; }
}
.hero-badge-top {
  position: absolute; top: 24px; right: 24px;
  background: var(--teal-700); color: #fff;
  padding: 12px 18px; border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  display: flex; gap: 10px; align-items: center;
  backdrop-filter: blur(8px);
}
.hero-badge-floating {
  position: absolute; right: 24px; bottom: 24px;
  background: rgba(255,255,255,0.96); padding: 14px 18px; border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex; gap: 12px; align-items: center;
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.hero-badge-floating .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--teal-50); display: grid; place-items: center; color: var(--teal-700); }
.hero-badge-floating .num { font-weight: 800; font-size: 18px; color: var(--teal-900); line-height: 1; }
.hero-badge-floating .lbl { font-size: 12px; color: var(--ink-500); }

.hero-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding-top: 28px; padding-bottom: 36px;
}
.hero-foot .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-foot .trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-foot .trust .pill { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-700); font-weight: 600; }
.hero-foot .trust .pill svg { color: var(--teal-600); width: 18px; height: 18px; }

@media (max-width: 760px) {
  .hero-badge-top { top: 12px; right: 12px; padding: 8px 12px; font-size: 10px; }
  .hero-badge-floating { right: 12px; bottom: 12px; padding: 10px 12px; }
  .hero-badge-floating .ico { width: 32px; height: 32px; }
  .hero-badge-floating .num { font-size: 14px; }
  .hero-badge-floating .lbl { font-size: 10px; }
  .hero-foot { justify-content: center; text-align: center; }
  .hero-foot .trust { justify-content: center; }
}

/* ---------- Strip ---------- */
.strip {
  background: var(--teal-700); color: #d6ecec;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.strip .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.strip .cell { display: flex; gap: 12px; align-items: center; }
.strip .cell svg { color: var(--lime-500); width: 26px; height: 26px; flex-shrink: 0; }
.strip .cell .l1 { font-weight: 800; color: #fff; font-size: 14px; line-height: 1.2; }
.strip .cell .l2 { font-size: 12px; opacity: .8; }
@media (max-width: 900px) { .strip .container { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Section common ---------- */
.section { padding: 96px 0; }
.section.bg-soft { background: var(--bg-soft); }
.section.bg-deep { background: linear-gradient(180deg, var(--teal-900) 0%, var(--teal-700) 100%); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .kicker {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  background: var(--teal-50); color: var(--teal-700);
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-top: 16px; font-weight: 800; color: var(--teal-900); }
.section.bg-deep .section-head h2 { color: #fff; }
.section.bg-deep .section-head .kicker { background: rgba(255,255,255,.1); color: var(--lime-400); }
.section-head p { margin-top: 14px; color: var(--ink-500); font-size: 17px; }
.section.bg-deep .section-head p { color: #cfe5e5; }

/* ---------- Gominolas section ---------- */
.gominolas-section {
  background: #ffffff;
}
.gominolas-head { text-align: center; max-width: 760px; margin: 0 auto 48px; position: relative; }
.gominolas-logo {
  width: min(460px, 80%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(13,90,92,.12));
}
.gominolas-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-700);
  font-weight: 600;
}

/* ---------- Filter chips ---------- */
.filter-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.chip {
  padding: 9px 18px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line);
  font-weight: 700; font-size: 13px; color: var(--ink-700);
  transition: all .18s ease;
}
.chip:hover { border-color: var(--teal-500); color: var(--teal-700); }
.chip.active { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.pcard {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.pcard .imgbox {
  aspect-ratio: 1 / 1;
  background: #f0f7f6;
  position: relative;
}
.pcard .imgbox img { width: 100%; height: 100%; object-fit: cover; }
.pcard .tag {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,.95); color: var(--teal-700);
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--teal-100);
}
.pcard .tag.lime { color: var(--lime-600); border-color: #d9ebab; }
.pcard .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard h3 { font-size: 18px; font-weight: 800; color: var(--teal-900); }
.pcard .sub { font-size: 13px; color: var(--ink-500); }
.pcard .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; }
.pcard .more { font-weight: 800; font-size: 13px; color: var(--teal-700); letter-spacing: .02em; }
.pcard .arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-50); color: var(--teal-700);
  display: grid; place-items: center;
  transition: all .15s ease;
}
.pcard:hover .arrow { background: var(--teal-700); color: #fff; }

/* ---------- Modal ---------- */
.modal-bg {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(13,36,37,.7);
  display: grid; place-items: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 1000px; width: 100%; max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  animation: pop .25s ease;
}
@keyframes pop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal .img { background: var(--bg-soft); position: relative; }
.modal .img img { width: 100%; height: 100%; object-fit: contain; }
.modal-slider { position: relative; width: 100%; height: 100%; overflow: hidden; }
.modal-track { display: flex; width: 100%; height: 100%; transition: transform .55s cubic-bezier(.65, 0, .35, 1); }
.modal-slide { flex: 0 0 100%; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--bg-soft); }
.modal-slide img { width: 100%; height: 100%; object-fit: contain; }
.modal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--teal-700);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
  z-index: 3;
}
.modal-arrow:hover { background: var(--teal-700); color: #fff; }
.modal-arrow.prev { left: 12px; }
.modal-arrow.next { right: 12px; }
.modal-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  background: rgba(255,255,255,0.85);
  padding: 6px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 3;
}
.modal-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(13, 90, 92, .25);
  border: 0; padding: 0;
  transition: all .2s ease;
}
.modal-dot.active { background: var(--teal-700); width: 22px; border-radius: 999px; }
.modal-counter {
  position: absolute; top: 12px; left: 12px;
  background: rgba(13,90,92,.85); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  z-index: 3;
}
.modal .info { padding: 40px; position: relative; }
.modal .close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft); color: var(--ink-700);
  display: grid; place-items: center;
}
.modal .close:hover { background: var(--teal-700); color: #fff; }
.modal .info h3 { font-size: 28px; color: var(--teal-900); margin-bottom: 6px; }
.modal .info .cat { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--lime-600); text-transform: uppercase; }
.modal .info p.desc { margin-top: 16px; color: var(--ink-700); }
.modal .benefits { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 8px; }
.modal .benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.modal .benefits li svg { color: var(--teal-600); flex-shrink: 0; margin-top: 3px; }
.modal .meta { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal .meta .row { background: var(--bg-soft); padding: 12px 14px; border-radius: 10px; }
.modal .meta .row .l { font-size: 11px; color: var(--ink-500); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.modal .meta .row .v { font-weight: 800; color: var(--teal-900); margin-top: 2px; }
.modal .modal-cta { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
@media (max-width: 800px) { .modal { grid-template-columns: 1fr; } .modal .img { aspect-ratio: 1; } }

/* ---------- About / values ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.about-grid .visual {
  position: relative; aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
}
.about-grid .visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(166,206,57,.5), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.18), transparent 50%);
}
.about-grid .visual .stats {
  position: absolute; left: 30px; right: 30px; bottom: 30px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  color: #fff;
}
.about-grid .visual .stats .s .num { font-family: 'Mulish'; font-size: 38px; font-weight: 800; line-height: 1; color: var(--lime-400); }
.about-grid .visual .stats .s .lbl { font-size: 12px; opacity: .9; margin-top: 4px; }
.about-grid .visual .float-pill {
  position: absolute; top: 24px; left: 24px; right: 24px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.about-grid .visual .float-pill span {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px; border-radius: 999px; color: #fff; font-size: 12px; font-weight: 700;
  backdrop-filter: blur(8px);
}
.about-grid .copy h2 { font-size: clamp(28px, 3vw, 40px); color: var(--teal-900); }
.about-grid .copy .kicker { color: var(--lime-600); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; }
.about-grid .copy p { margin-top: 16px; color: var(--ink-700); font-size: 16px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.value { background: #fff; padding: 18px; border-radius: 14px; border: 1px solid var(--line); }
.value .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; }
.value .t { font-weight: 800; margin-top: 12px; color: var(--teal-900); }
.value .d { font-size: 13px; color: var(--ink-500); margin-top: 4px; }

/* ---------- Mission/Vision two-card grid ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mv-card {
  background: #fff; padding: 24px; border-radius: 16px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mv-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.mv-head { display: flex; gap: 12px; align-items: center; }
.mv-head .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex-shrink: 0; }
.mv-head .t { font-family: 'Mulish'; font-weight: 800; font-size: 18px; color: var(--teal-900); }
.mv-lede { margin-top: 14px; font-weight: 700; color: var(--teal-700); font-size: 15px; }
.mv-text { margin-top: 8px; font-size: 14px; color: var(--ink-700); line-height: 1.65; }
@media (max-width: 600px) { .mv-grid { grid-template-columns: 1fr; } }

/* ---------- Values block (full-width below grid) ---------- */
.values-block {
  margin-top: 64px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 44px;
}
.values-block-head { display: flex; gap: 20px; align-items: flex-start; max-width: 920px; }
.values-block-head .ico-lg {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--lime-500), var(--lime-400));
  color: var(--ink-900); display: grid; place-items: center; flex-shrink: 0;
}
.values-block-head h3 {
  font-family: 'Mulish'; font-weight: 800; font-size: 26px;
  color: var(--teal-900); margin-top: 6px; line-height: 1.25;
}
.values-block-head p { margin-top: 12px; color: var(--ink-700); font-size: 15px; line-height: 1.65; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 36px;
}
.pillar {
  padding: 24px; border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.pillar .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-700); color: #fff;
  display: grid; place-items: center;
}
.pillar h4 {
  font-family: 'Mulish'; font-weight: 800; font-size: 17px;
  color: var(--teal-900); margin-top: 16px;
}
.pillar p { margin-top: 8px; font-size: 14px; color: var(--ink-700); line-height: 1.6; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

.purpose-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.purpose {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  align-items: start;
}
.purpose-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.purpose-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,90,92,.18) 100%);
  pointer-events: none;
}
.purpose-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.purpose:hover .purpose-media img { transform: scale(1.04); }
.purpose-body { min-width: 0; }
.purpose .kicker {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--teal-50); color: var(--teal-700);
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.purpose p { color: var(--ink-700); font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
@media (max-width: 900px) {
  .purpose-grid { grid-template-columns: 1fr; }
  .values-block { padding: 28px; }
  .values-block-head { flex-direction: column; gap: 14px; }
}
@media (max-width: 560px) {
  .purpose { grid-template-columns: 1fr; }
  .purpose-media { aspect-ratio: 16 / 9; max-height: 220px; }
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .values { grid-template-columns: 1fr; } }

/* ---------- Conciencia por la vida banner ---------- */
.conciencia-section {
  background:
    radial-gradient(60% 80% at 80% 50%, rgba(166,206,57,.12) 0%, transparent 60%),
    radial-gradient(60% 80% at 20% 50%, rgba(31,138,140,.08) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.conciencia-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(31,138,140,.05) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.conciencia {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.conciencia-mark {
  display: inline-flex;
  color: var(--lime-500);
  width: 56px; height: 40px;
  opacity: .9;
  margin-bottom: 24px;
}
.conciencia-mark svg { width: 100%; height: 100%; }
.conciencia-eyebrow {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 14px;
}
.conciencia-claim {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--teal-900);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
.conciencia-claim span {
  color: var(--lime-600);
  font-style: italic;
  font-weight: 700;
}
.conciencia-text {
  margin-top: 28px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.conciencia-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--lime-500));
  border-radius: 999px;
  margin: 36px auto 0;
}
@media (max-width: 600px) {
  .conciencia-section { padding: 64px 0; }
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all .2s ease;
}
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.why-card .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--lime-500); color: var(--ink-900); display: grid; place-items: center; }
.why-card h4 { color: #fff; font-size: 17px; margin-top: 18px; font-weight: 800; }
.why-card p { color: #cfe5e5; font-size: 13px; margin-top: 8px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Pharmacies ---------- */
.pharm-search {
  max-width: 540px; margin: 0 auto 32px;
  display: flex; gap: 8px;
  background: #fff; border-radius: 999px;
  border: 1.5px solid var(--line);
  padding: 6px 6px 6px 18px;
  align-items: center;
}
.pharm-search input { flex: 1; border: 0; outline: 0; background: transparent; font-size: 15px; font-family: inherit; padding: 8px 0; }
.pharm-search .btn { padding: 10px 18px; }
.pharm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.pharm {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start;
  transition: all .2s ease;
}
.pharm:hover { box-shadow: var(--shadow); border-color: var(--teal-100); }
.pharm .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex-shrink: 0; }
.pharm .name { font-weight: 800; color: var(--teal-900); }
.pharm .addr { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.pharm .meta { display: flex; gap: 10px; margin-top: 10px; font-size: 12px; color: var(--ink-500); }
.pharm .meta span { display: inline-flex; gap: 4px; align-items: center; }
.pharm .meta .open { color: var(--lime-600); font-weight: 700; }
@media (max-width: 900px) { .pharm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pharm-grid { grid-template-columns: 1fr; } }

/* ---------- Contact / map ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: stretch;
}
.contact-info { background: #fff; border-radius: var(--radius-lg); padding: 38px; border: 1px solid var(--line); }
.contact-info h3 { font-size: 26px; color: var(--teal-900); }
.contact-info .lede { color: var(--ink-500); margin-top: 8px; }
.contact-info .row { display: flex; gap: 14px; margin-top: 22px; align-items: flex-start; }
.contact-info .row .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .row .l { font-size: 12px; color: var(--ink-500); letter-spacing: .1em; font-weight: 700; text-transform: uppercase; }
.contact-info .row .v { color: var(--teal-900); font-weight: 700; margin-top: 2px; }
.contact-info .socials { display: flex; gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-info .socials a {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  transition: transform .15s ease;
}
.contact-info .socials a:hover { transform: translateY(-2px); }
.socials .wa { background: #25D366; }
.socials .fb { background: #1877F2; }
.socials .ig { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #515bd4 100%); }
.socials .tk { background: #000; }

.map-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--bg-soft); min-height: 480px; border: 1px solid var(--line); }
.map-card iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.map-overlay {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: #fff; border-radius: 14px; padding: 14px 16px;
  display: flex; gap: 12px; align-items: center;
  box-shadow: var(--shadow);
}
.map-overlay .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-700); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.map-overlay .t { font-weight: 800; color: var(--teal-900); font-size: 14px; }
.map-overlay .s { font-size: 12px; color: var(--ink-500); }
.map-overlay .btn { margin-left: auto; padding: 8px 14px; font-size: 12px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Consultas form ---------- */
.form-card {
  background: #fff; border-radius: var(--radius-lg); padding: 44px;
  border: 1px solid var(--line); max-width: 880px; margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 12px; font-weight: 800; color: var(--ink-700); letter-spacing: .06em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; margin-top: 6px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--ink-900);
  background: #fff; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(42,163,165,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field.full { grid-column: 1 / -1; }
.form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; flex-wrap: wrap; }
.form-success {
  background: #e9f7d8; border: 1px solid #c4dd95; color: #486a17;
  padding: 16px 18px; border-radius: 12px; margin-top: 18px; font-weight: 700;
  display: flex; gap: 10px; align-items: center;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 28px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 0; margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 24px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--teal-900); font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 28px; height: 28px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700);
  display: grid; place-items: center; transition: all .2s ease;
  flex-shrink: 0; margin-left: 14px;
}
.faq-item[open] summary .plus { background: var(--teal-700); color: #fff; transform: rotate(45deg); }
.faq-item .answer { padding: 0 24px 22px; color: var(--ink-700); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-900); color: #b9c8c9;
  padding: 70px 0 30px;
}
.footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer h5 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 18px; letter-spacing: .04em; }
.footer .brand-block { display: flex; gap: 12px; align-items: flex-start; }
.footer .footer-logo {
  width: 220px;
  height: auto;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  display: block;
}
.footer .desc { margin-top: 18px; font-size: 14px; line-height: 1.7; color: #93a4a5; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 5px 0; font-size: 14px; }
.footer a:hover { color: var(--lime-500); }
.footer .bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid #1d3133;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #7d8e8f; flex-wrap: wrap; gap: 10px;
}
@media (max-width: 900px) { .footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer .grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  animation: pulseRing 2s infinite;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulseRing {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-tooltip {
  position: fixed; bottom: 40px; right: 92px; z-index: 90;
  background: #fff; padding: 10px 14px; border-radius: 12px;
  box-shadow: var(--shadow); font-size: 13px; font-weight: 700; color: var(--ink-900);
  pointer-events: none;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #fff;
}
@media (max-width: 600px) { .wa-tooltip { display: none; } }

/* ---------- mobile nav ---------- */
.menu-btn {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-50); color: var(--teal-700);
  display: none; place-items: center;
}
.menu-btn svg { width: 22px; height: 22px; }
@media (max-width: 960px) { .menu-btn { display: grid; } .nav .cta-group .btn-outline { display: none; } }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 280px; background: #fff;
  z-index: 100;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .25s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .close { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-soft); display: grid; place-items: center; margin-left: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; }
.mobile-menu nav a { padding: 12px 0; font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 99;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
