:root {
  --bg: #fff6ef;
  --surface: #ffffff;
  --surface-2: #fffaf6;
  --text: #20252a;
  --muted: #5f6972;
  --line: #ece3dc;
  --primary: #f45a52;
  --primary-2: #ff7b3f;
  --title: #1f2430;
  /* Solo header/logo: barra un poco más alta y logo algo mayor que el 72px original */
  --header-inner-height: 88px;
  --brand-logo-height: 80px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 246, 239, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}

#brandName {
  font-size: 1.1rem;
}

.links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.links a {
  color: #313b44;
  font-size: 0.95rem;
}

.links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  margin-left: auto;
}

.btn {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 24px rgba(244, 90, 82, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.btn-sm {
  font-size: 0.88rem;
  padding: 10px 14px;
}

.desktop-only {
  margin-left: 8px;
}

.hero {
  padding: 56px 0 28px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.hero-copy h1 {
  margin: 12px 0;
  line-height: 1.04;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  color: var(--title);
}

.hero-copy p {
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #ffe8d7;
  color: #c24624;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-row .btn {
  padding: 12px 18px;
  font-size: 0.95rem;
}

.hero-mini {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  color: #495863;
  font-size: 0.92rem;
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-panel img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  min-height: 330px;
  background: #f7f1ea;
}

.hero-panel-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 14px;
}

.hero-panel-card h3 {
  margin: 0 0 5px;
}

.hero-panel-card p {
  margin: 0 0 10px;
  color: #5f6972;
  font-size: 0.92rem;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--surface-2);
  border-top: 1px solid #f1e8e1;
  border-bottom: 1px solid #f1e8e1;
}

.section-head {
  margin-bottom: 20px;
}

.section-kicker {
  color: #d6564f;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #1f2630;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
}

.badge {
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 999px;
  background: #ffe8d7;
  color: #c24624;
  padding: 6px 10px;
}

.service-card h3 {
  margin: 10px 0 8px;
}

.service-card p {
  color: var(--muted);
  min-height: 65px;
  margin: 0 0 10px;
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.86rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.module-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.module-cover {
  width: 100%;
  height: 130px;
  object-fit: cover;
  background: #f5ede6;
}

.module-body {
  padding: 12px;
}

.module-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.module-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.module-type {
  color: #62707b;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.module-body h3 {
  margin: 0;
  font-size: 1rem;
}

.zone-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.zone-copy p {
  color: var(--muted);
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.zone-tag {
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.86rem;
}

.zone-visual img {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: cover;
  max-height: 320px;
  width: 100%;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.criteria-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 15px;
}

.criteria-card img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  background: #f6ede5;
}

.criteria-card h3 {
  margin: 10px 0 6px;
  font-size: 1.05rem;
}

.criteria-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  background: #1d232b;
  color: #dbe5ed;
  margin-top: 18px;
}

.footer-grid {
  padding: 34px 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 10px;
}

.site-footer p {
  margin: 6px 0;
  color: #b3c1cc;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.site-footer a {
  color: #c5d2dc;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0 20px;
  color: #b5c3ce;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.36;
  filter: blur(3px);
}

.bg-shape-a {
  width: 140px;
  height: 140px;
  background: #ffd0a4;
  top: 110px;
  right: 8%;
  animation: floatY 8s ease-in-out infinite;
}

.bg-shape-b {
  width: 90px;
  height: 90px;
  background: #ff9999;
  top: 56%;
  left: 6%;
  animation: floatY 7s ease-in-out infinite reverse;
}

.bg-shape-c {
  width: 120px;
  height: 120px;
  background: #ffc07a;
  bottom: 7%;
  right: 18%;
  animation: floatY 9s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.55s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.skeleton {
  min-height: 140px;
  background: linear-gradient(90deg, #f5eee7 25%, #fffaf7 38%, #f5eee7 63%);
  background-size: 400% 100%;
  animation: shimmer 1.2s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@media (max-width: 980px) {
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .links {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #fff6ef;
    border-bottom: 1px solid var(--line);
    padding: 14px 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .links.open {
    display: flex;
  }

  .hero-grid,
  .zone-wrap {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .module-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }
}

/* ===== Refresh visual Muycerk 2026 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eceff6;
}

.nav-wrap {
  min-height: var(--header-inner-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  height: var(--brand-logo-height);
  width: auto;
  max-width: min(300px, 50vw);
  object-fit: contain;
  object-position: left center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#brandName {
  color: #17233d;
  font-weight: 800;
  font-size: 21px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-menu a {
  color: #26334d;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.main-menu a:hover {
  color: #ff6a00;
}

.btn.btn-nav {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ff6a00;
  color: #fff;
  border: 0;
}

.join-dropdown {
  position: relative;
}

.join-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 33, 61, .14);
  padding: 8px;
  display: none;
  z-index: 120;
}

.join-menu.open {
  display: block;
}

.join-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #24334f;
  font-weight: 600;
}

.join-menu a:hover {
  background: #fff1e7;
  color: #ad4600;
}

.hero {
  padding: 86px 0 56px;
  background: linear-gradient(180deg, #fff7f2 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.pill {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1e7;
  color: #bf4b00;
  font-weight: 700;
  font-size: 12px;
}

.hero-copy h1 {
  margin: 0 0 14px;
  color: #17233d;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.08;
}

.hero-copy p {
  color: #5c6782;
  font-size: 17px;
  max-width: 560px;
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta .btn {
  min-width: 184px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: #ff6a00;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
}

.btn-outline {
  color: #ff6a00;
  border: 2px solid #ff6a00;
  padding: 10px 18px;
  border-radius: 12px;
}

.hero-stats {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats article {
  min-width: 150px;
  background: #fff;
  border: 1px solid #edf0f7;
  border-radius: 14px;
  padding: 12px 14px;
}

.hero-stats strong {
  display: block;
  color: #17233d;
  font-size: 24px;
}

.hero-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(26, 41, 71, 0.13);
  transition: transform .14s linear;
}

.section {
  padding: 76px 0;
}

.bg-soft {
  background: #f8faff;
}

.section-head {
  margin-bottom: 28px;
}

.kicker {
  margin-bottom: 8px;
  color: #ff6a00;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: #17233d;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(33, 49, 74, 0.07);
}

.info-card h3 {
  margin-top: 0;
  color: #17233d;
}

.info-card p {
  color: #5a6882;
}

.info-card > a {
  color: #ff6a00;
  font-weight: 700;
  text-decoration: none;
}

.store-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.store-links a {
  background: #fff1e7;
  color: #ad4600;
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.zone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.zone-visual img {
  width: 100%;
  border-radius: 18px;
  transition: transform .14s linear;
}

.zone-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.zone-tag {
  background: #fff1e7;
  color: #964000;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  background: #131c31;
  color: #dce4f5;
  padding: 56px 0 18px;
}

.site-footer a {
  color: #dce4f5;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .zone-layout,
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-inner-height: 78px;
    --brand-logo-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-menu {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: var(--header-inner-height);
    background: #fff;
    border: 1px solid #e9edf4;
    border-radius: 12px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-menu.open {
    display: flex;
  }

  .join-dropdown {
    width: 100%;
  }

  .join-menu {
    position: static;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .cta-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
