/* ============================================
   BLÜMDRY — Lavanderías Autoservicio Premium
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --primary: #0B2447;
  --primary-light: #19376D;
  --accent: #00C9A7;
  --accent-dark: #00A88A;
  --cta: #FF5722;
  --cta-hover: #E64A19;
  --surface: #F8FAFC;
  --surface-alt: #EEF2FF;
  --white: #FFFFFF;
  --text: #0F172A;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ---------- Utilities ---------- */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section__header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 201, 167, .1);
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section__tag--light {
  color: var(--accent);
  background: rgba(0, 201, 167, .15);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.section__title--light { color: var(--white); }

.section__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.btn--accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(0, 201, 167, .35);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .4);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn--full { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .06);
  padding: .6rem 0;
}

.header.scrolled .nav__logo,
.header.scrolled .nav__link { color: var(--text); }
.header.scrolled .nav__link:hover { color: var(--accent); }
.header.scrolled .nav__toggle span { background: var(--text); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  transition: color var(--transition);
}

.nav__logo--footer { color: var(--white); font-size: 1.8rem; }

.logo-accent { color: var(--accent); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.header.scrolled .nav__link:hover::after { width: 100%; }

.nav__cta { display: none; }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 36, 71, .88) 0%,
    rgba(25, 55, 109, .75) 50%,
    rgba(0, 201, 167, .25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
  max-width: 720px;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .8s 1.2s forwards;
}

.hero__scroll span {
  font-family: var(--font-heading);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .4; }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--primary);
  padding: 3rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat__suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  display: block;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  margin-top: .5rem;
}

/* ---------- Services ---------- */
.servicios { background: var(--surface); }

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 201, 167, .1), rgba(25, 55, 109, .08));
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--text);
}

.service-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Como funciona ---------- */
.como-funciona { background: var(--white); }

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin-inline: auto;
}

.step {
  text-align: center;
  flex: 1;
  padding: 2rem;
}

.step__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 201, 167, .15);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.step p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step__connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0, 201, 167, .2));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ---------- Por qué ---------- */
.por-que { background: var(--surface); }

.por-que__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.por-que__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.por-que__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform .6s ease;
}

.por-que__image:hover img {
  transform: scale(1.04);
}

.por-que__content .section__tag { margin-bottom: 1rem; }
.por-que__content .section__title { text-align: left; }

.por-que__content > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.por-que__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.por-que__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.por-que__list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.por-que__list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .15rem;
}

.por-que__list span {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Locations ---------- */
.ubicaciones { background: var(--white); }

.ubicaciones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.location-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.location-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.location-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.location-card:hover .location-card__img img {
  transform: scale(1.08);
}

.location-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 100px;
}

.location-card__info {
  padding: 1.5rem;
}

.location-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.location-card__info p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .8rem;
}

.location-card__hours {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.location-card__hours::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

/* ---------- Franchise ---------- */
.franquicia {
  background: var(--primary);
  overflow: hidden;
}

.franquicia__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.franquicia__content { color: var(--white); }

.franquicia__content .section__title { margin-bottom: 1.2rem; }

.franquicia__content > p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.franquicia__benefit {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .1);
}

.franquicia__benefit-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: .3rem;
}

.franquicia__benefit-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

.franquicia__perks {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.franquicia__perks li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
}

.franquicia__perks li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.franquicia__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.franquicia__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

/* ---------- Contact ---------- */
.contacto { background: var(--surface); }

.contacto__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contacto__info .section__tag { margin-bottom: 1rem; }
.contacto__info .section__title { text-align: left; margin-bottom: 1rem; }

.contacto__info > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contacto__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacto__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contacto__detail svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.contacto__detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
}

.contacto__detail span {
  font-size: .9rem;
  color: var(--text-muted);
}

.contacto__form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}

.form__group {
  margin-bottom: 1.2rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group label {
  display: block;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 201, 167, .15);
  background: var(--white);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
  opacity: .6;
}

.form__group textarea { resize: vertical; min-height: 120px; }

.form__group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  z-index: 10;
}

.form__success.show {
  opacity: 1;
  visibility: visible;
}

.form__success svg {
  width: 56px;
  height: 56px;
  color: var(--accent);
}

.form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.form__success p {
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__brand p {
  color: rgba(255, 255, 255, .6);
  margin-top: 1rem;
  font-size: .95rem;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: .8rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__links h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer__links li {
  margin-bottom: .6rem;
}

.footer__links a,
.footer__links li {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
}

/* ---------- Scroll Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* Stagger delay for grid children */
.servicios__grid .reveal:nth-child(2) { transition-delay: .1s; }
.servicios__grid .reveal:nth-child(3) { transition-delay: .2s; }
.servicios__grid .reveal:nth-child(4) { transition-delay: .3s; }
.servicios__grid .reveal:nth-child(5) { transition-delay: .4s; }
.servicios__grid .reveal:nth-child(6) { transition-delay: .5s; }

.ubicaciones__grid .reveal:nth-child(2) { transition-delay: .1s; }
.ubicaciones__grid .reveal:nth-child(3) { transition-delay: .15s; }
.ubicaciones__grid .reveal:nth-child(4) { transition-delay: .2s; }
.ubicaciones__grid .reveal:nth-child(5) { transition-delay: .25s; }
.ubicaciones__grid .reveal:nth-child(6) { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

@media (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--primary);
    padding: 2rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
  }

  .nav__menu.open { right: 0; }

  .nav__link {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .9);
  }

  .hero__content { padding: 7rem 0 6rem; }

  .hero__actions {
    flex-direction: column;
  }

  .hero__scroll { display: none; }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .servicios__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .step__connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent), rgba(0, 201, 167, .2));
  }

  .por-que__grid {
    grid-template-columns: 1fr;
  }

  .por-que__image { order: -1; }
  .por-que__image img { height: 300px; }

  .ubicaciones__grid {
    grid-template-columns: 1fr;
  }

  .franquicia__wrapper {
    grid-template-columns: 1fr;
  }

  .franquicia__image { display: none; }

  .franquicia__benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contacto__wrapper {
    grid-template-columns: 1fr;
  }

  .contacto__form { padding: 1.5rem; }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .servicios__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ubicaciones__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .franquicia__benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}
