:root {
  --bg-1: #e8fbff;
  --bg-2: #d7eef4;
  --ink: #05323e;
  --ink-soft: #33606a;
  --aqua: #16b6cc;
  --aqua-dark: #0d8ca0;
  --mint: #66d9c8;
  --card: rgba(255, 255, 255, 0.8);
  --stroke: rgba(5, 50, 62, 0.1);
  --shadow: 0 18px 45px rgba(9, 72, 88, 0.2);
}

* {
  box-sizing: border-box;
}

.is-hidden {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 18%, #ffffff 0%, transparent 45%),
              radial-gradient(circle at 82% 12%, #c4f4ff 0%, transparent 36%),
              linear-gradient(125deg, var(--bg-1), var(--bg-2));
  overflow-x: hidden;
  position: relative;
}

.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.6;
}

.shape-a {
  width: 280px;
  height: 280px;
  background: #b6f2ff;
  top: 8%;
  left: -80px;
  animation: drift 12s ease-in-out infinite alternate;
}

.shape-b {
  width: 360px;
  height: 360px;
  background: #8adccf;
  bottom: -120px;
  right: -80px;
  animation: drift 15s ease-in-out infinite alternate-reverse;
}

.shape-c {
  width: 220px;
  height: 220px;
  background: #c9fdff;
  top: 52%;
  right: 30%;
  animation: drift 10s ease-in-out infinite alternate;
}

.topbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--stroke);
  padding: 0.3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.logo.logo-hidden {
  display: none;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

nav {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: 0.25s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.75);
}

.cta-mini {
  background: linear-gradient(135deg, var(--aqua), var(--mint));
  color: #02212a;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.2rem;
}

.tag {
  display: inline-block;
  margin: 0;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--aqua-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.02;
  margin: 0.8rem 0;
}

.hero-copy > p {
  color: var(--ink-soft);
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.3rem 0;
}

.btn {
  text-decoration: none;
  padding: 0.75rem 1.15rem;
  border-radius: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--aqua), var(--mint));
  color: #02212a;
  box-shadow: 0 10px 22px rgba(13, 140, 160, 0.35);
}

.btn-outline {
  color: var(--ink);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
}

.stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 0.8rem;
}

.stats article {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  padding: 0.8rem;
  box-shadow: var(--shadow);
}

.stats strong {
  display: block;
  font-size: 1.4rem;
}

.stats span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.washing-machine {
  width: min(380px, 100%);
  margin: 1rem auto;
  background: linear-gradient(155deg, #f8feff, #d4ecf2);
  border: 1px solid rgba(5, 50, 62, 0.14);
  border-radius: 26px;
  padding: 1.1rem 1rem 1.3rem;
  box-shadow: var(--shadow);
  position: relative;
}

.panel {
  height: 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #d3edf3, #b9dce5);
  margin-bottom: 1rem;
}

.door {
  width: 220px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  border: 14px solid #f3fcff;
  box-shadow: inset 0 0 0 2px #91c8d3;
  background: radial-gradient(circle at 30% 28%, #e6fdff 0%, #7dcde0 100%);
  position: relative;
  overflow: hidden;
}

.water-spin {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(19, 145, 170, 0.2), rgba(255, 255, 255, 0.1));
  animation: spin 3.2s linear infinite;
}

.water-spin::after {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.floating-cards {
  position: absolute;
  top: 3%;
  right: -12px;
  display: grid;
  gap: 0.6rem;
}

.floating-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(5, 50, 62, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  box-shadow: var(--shadow);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--aqua-dark);
  animation: bob 4s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: 0.35s;
}

.floating-card:nth-child(3) {
  animation-delay: 0.7s;
}

.services,
.advantages,
.process,
.location-section,
.contact {
  margin-top: 2.5rem;
}

.services h3,
.advantages h3,
.process h3,
.location-section h3,
.contact h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: "Bricolage Grotesque", sans-serif;
  margin-bottom: 0.8rem;
}

.service-grid,
.advantage-grid,
.steps {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
}

.service-grid article,
.advantage-grid article,
.steps article,
.contact {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.steps article span {
  display: inline-block;
  font-weight: 800;
  color: var(--aqua-dark);
  margin-bottom: 0.35rem;
}

.contact p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.location-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-intro {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
}

.location-intro > p:not(.tag) {
  color: var(--ink-soft);
  margin: 0.5rem 0 0;
}

.branch-finder {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nearest-branch-panel {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(5, 50, 62, 0.1);
}

.nearest-branch-panel.is-hidden {
  display: none;
}

.nearest-branch-panel.is-error {
  border-color: rgba(180, 80, 80, 0.35);
  background: rgba(255, 245, 245, 0.85);
}

.nearest-branch-title {
  margin: 0 0 0.35rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--aqua-dark);
}

.nearest-branch-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.nearest-branch-hours {
  margin: 0.65rem 0 0;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.5;
}

.nearest-branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.location-sites {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-site {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.location-cupon {
  grid-column: 1 / -1;
  margin-top: 0.15rem;
}

.location-cupon-inner {
  border-radius: 16px;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(22, 182, 204, 0.12), rgba(102, 217, 200, 0.14));
  border: 2px dashed rgba(13, 140, 160, 0.45);
  box-shadow: 0 8px 24px rgba(9, 72, 88, 0.12);
}

.location-cupon-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--aqua-dark);
}

.location-cupon-code {
  margin: 0 0 0.4rem;
  font-family: "Bricolage Grotesque", ui-monospace, monospace;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink);
  word-break: break-word;
}

.location-cupon-desc {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.location-cupon-expiry {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--aqua-dark);
}

.location-promo-zaragoza-web {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
}

.location-promo-zaragoza-web-inner {
  border-radius: 16px;
  padding: 1rem 1.15rem;
  background: linear-gradient(145deg, rgba(15, 12, 8, 0.92), rgba(35, 28, 18, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #f5f0e6;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.location-promo-zaragoza-title {
  margin: 0 0 0.65rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #f5e6a8;
}

.location-promo-zaragoza-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.92);
}

.location-promo-zaragoza-list li {
  margin-bottom: 0.45rem;
}

.location-promo-zaragoza-list li:last-child {
  margin-bottom: 0;
}

.location-promo-zaragoza-list strong {
  color: #fff;
  font-weight: 700;
}

.location-site-title {
  margin: 0 0 0.5rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.location-copy,
.map-frame {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.map-frame {
  overflow: hidden;
}

.location-copy > p {
  color: var(--ink-soft);
}

.location-card {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(5, 50, 62, 0.08);
}

.location-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.location-card p {
  margin-top: 0;
  color: var(--ink-soft);
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
  border-radius: 14px;
}

.credits {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 1.2rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.credits--site {
  max-width: none;
  margin-top: 2rem;
  padding: 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(5, 50, 62, 0.94) 0%, rgba(3, 28, 36, 0.98) 100%);
  color: #c8e8ee;
  font-size: 0.88rem;
  border-top: 4px solid var(--aqua);
  box-shadow: 0 -8px 32px rgba(5, 50, 62, 0.15);
}

.credits-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.credits-brand {
  margin: 0 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
}

.credits-label {
  display: block;
  width: 100%;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(200, 232, 238, 0.75);
  font-weight: 700;
}

.credits-main-link {
  font-size: 1.05rem;
  font-weight: 800;
  color: #7ee8f0;
  text-decoration: none;
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
}

.credits-main-link:hover {
  text-decoration: underline;
  color: #b8f5fa;
}

.credits-year {
  color: rgba(200, 232, 238, 0.85);
  font-size: 0.82rem;
}

.credits-sub {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(200, 232, 238, 0.65);
}

.credits p {
  margin: 0;
}

.credits:not(.credits--site) p > a {
  color: var(--aqua-dark);
  font-weight: 600;
  text-decoration: none;
}

.credits:not(.credits--site) p > a:hover {
  text-decoration: underline;
}

.credits-links {
  margin-top: 0.45rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.credits-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.credits-links a:hover {
  color: var(--aqua-dark);
}

.credits-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.bubble-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(124, 211, 228, 0.2) 64%, rgba(124, 211, 228, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset -6px -8px 12px rgba(0, 138, 165, 0.08);
  animation: rise linear forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(1.1);
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes drift {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(-18px) translateX(12px);
  }
}

/* ── Membresías ───────────────────────────────────────── */
.membresias {
  margin-top: 2.5rem;
}

.membresias h3,
.beneficios h3,
.horarios h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: "Bricolage Grotesque", sans-serif;
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 68ch;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(9, 72, 88, 0.28);
}

.plan-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.plan-featured {
  background: linear-gradient(155deg, rgba(22, 182, 204, 0.1), rgba(102, 217, 200, 0.15));
  border: 1.5px solid var(--aqua);
}

.plan-featured-label {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--aqua), var(--mint));
  color: #02212a;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-name {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
}

.plan-subtitle {
  margin: -0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
}

.plan-price strong {
  font-size: 2.5rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  color: var(--aqua-dark);
  line-height: 1;
}

.plan-price span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-bottom: 0.4rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  width: 100%;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.45;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua-dark);
  font-weight: 700;
}

.cobijas-promo {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.5rem;
  text-align: center;
}

.cobijas-promo-title {
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
}

.cobijas-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cobija-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.cobija-item span {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.cobija-item strong {
  font-size: 1.5rem;
  color: var(--aqua-dark);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
}

/* ── Programa de Beneficios ───────────────────────────── */
.beneficios {
  margin-top: 2.5rem;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.8rem;
}

.beneficio-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(9, 72, 88, 0.26);
}

.beneficio-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--aqua), var(--mint));
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficio-icon svg {
  width: 24px;
  height: 24px;
  fill: #02212a;
}

.beneficio-body h4 {
  margin: 0 0 0.4rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
}

.beneficio-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ── Modulos (volante) ───────────────────────────────── */
.modulo-flyer {
  margin-top: 2.5rem;
}

.modulo-flyer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
  background: linear-gradient(145deg, #0a0a0c 0%, #1a1510 45%, #0d0d0f 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.modulo-flyer-copy {
  padding: 1.35rem 1.25rem 1.5rem;
  color: #f5f0e6;
}

.modulo-flyer .tag {
  background: rgba(212, 175, 55, 0.15);
  color: #e8c547;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.modulo-flyer-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 0.65rem 0 0.5rem;
  line-height: 1.15;
  color: #fff;
}

.modulo-flyer-lead {
  margin: 0;
  color: rgba(245, 240, 230, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 52ch;
}

.modulo-flyer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.1rem 0 0.85rem;
}

.modulo-flyer-badge {
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.modulo-flyer-badge--gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(139, 105, 20, 0.35));
  border-color: rgba(212, 175, 55, 0.55);
}

.modulo-flyer-badge-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 240, 230, 0.65);
  margin-bottom: 0.2rem;
}

.modulo-flyer-badge strong {
  font-size: 1.35rem;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #f8e6a8;
}

.modulo-flyer-wa {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(245, 240, 230, 0.88);
}

.modulo-flyer-wa span {
  color: #7ee787;
  font-weight: 700;
}

.modulo-flyer-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modulo-flyer-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modulo-flyer-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #c9a227, #8b6914);
  color: #0a0a0c;
}

.modulo-flyer-step-title {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #fff;
}

.modulo-flyer-step-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(245, 240, 230, 0.78);
}

.modulo-flyer-visual {
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.12), transparent 50%),
    #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 280px;
}

.modulo-flyer-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.modulo-flyer-img.is-hidden {
  display: none;
}

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

  .modulo-flyer-visual {
    order: -1;
    min-height: 200px;
  }
}

/* ── Horarios de Atención ─────────────────────────────── */
.horarios {
  margin-top: 2.5rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.8rem;
}

.schedule-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(9, 72, 88, 0.26);
}

.schedule-day {
  margin: 0 0 0.6rem;
  font-weight: 700;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--aqua-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.schedule-time {
  margin: 0 0 0.1rem;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--ink);
  line-height: 1.1;
}

.schedule-slots {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0.3rem;
}

.schedule-and {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.15rem 0;
}

.schedule-note {
  margin: 0.55rem 0 0;
  font-size: 0.83rem;
  color: var(--ink-soft);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 330px;
  }

  .floating-cards {
    right: 2%;
  }

  .service-grid,
  .advantage-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .plan-grid,
  .beneficios-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .location-site {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }

  .credits {
    font-size: 0.74rem;
  }
}
