/* ═══════════════════════════════════════════════════
   SWAGS HELADERÍA — CSS PRINCIPAL
   "Melt the Rules. Break the Basic. Own the Swag."
═══════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --blue:        #1A28D4;
  --blue-dark:   #0F1AAA;
  --blue-deeper: #090F6E;
  --blue-light:  #EEF2FF;
  --blue-mid:    #C7D0FF;
  --red:         #E8003A;
  --red-dark:    #B5002C;
  --white:       #FFFFFF;
  --off-white:   #F8F9FF;
  --gray:        #6B7280;
  --gray-light:  #E5E7EB;
  --text:        #0A0E2E;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:       144px;
  --max-w:       1200px;

  --r-sm:  0.5rem;
  --r-md:  1rem;
  --r-lg:  1.5rem;
  --r-xl:  2rem;
  --r-full: 9999px;

  --shadow-sm:  0 1px 4px rgba(26,40,212,.08);
  --shadow-md:  0 4px 20px rgba(26,40,212,.12);
  --shadow-lg:  0 8px 40px rgba(26,40,212,.2);
  --shadow-red: 0 4px 20px rgba(232,0,58,.35);

  /* Textura cuadrícula */
  --grid-bg: #EEF2FF;
  --grid-line: rgba(26,40,212,.07);
  --grid-size: 36px;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ─── UTILIDADES ─────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid-bg {
  background-color: var(--grid-bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
}

.grid-bg--dark {
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
}

.section {
  padding: 5rem 0;
}

.section--sm { padding: 3.5rem 0; }

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.05;
  color: var(--text);
  text-transform: uppercase;
}

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

.section__sub {
  font-size: 1rem;
  color: var(--gray);
  margin-top: .5rem;
}

.section__sub--white { color: rgba(255,255,255,.75); }

/* Animación scroll-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible { transform: none; }

/* ─── BOTONES ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .95rem;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,0,58,.45);
}

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

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.65);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ─── NAVBAR ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease;
}

.nav--scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.nav__logo img { height: 128px; width: auto; border-radius: 10px; }

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

.nav__links a {
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  position: relative;
  padding-bottom: 2px;
  letter-spacing: .01em;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: currentColor;
  transition: width .25s ease;
}
.nav__links a:hover::after,
.nav__links a.current-menu-item::after { width: 100%; }

.nav--scrolled .nav__links a { color: var(--text); }
.nav--scrolled .btn--outline-white {
  border-color: var(--blue);
  color: var(--blue);
}
.nav--scrolled .btn--outline-white:hover {
  background: var(--blue);
  color: var(--white);
}

.nav__cta { font-size: .85rem; padding: .55rem 1.3rem; }

/* Hamburguesa */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav--scrolled .nav__hamburger span { background: var(--text); }

body.nav-open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer móvil */
.nav__drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  /* Oculto por defecto — JS lo muestra con display:block */
  display: none;
  /* Animación de entrada */
  animation: drawer-in .25s ease both;
}

@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__drawer-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.nav__drawer-links a { font-weight: 700; font-size: 1.2rem; color: var(--text); }
.drawer__cta { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  :root { --nav-h: 88px; }
  .nav__logo img { height: 68px; }
  /* Ocultar links de escritorio y CTA del nav */
  .nav__links { display: none !important; }
  .nav__cta   { display: none !important; }
  .nav__hamburger { display: flex; }
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero--blue {
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}

.hero__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.hero__title em {
  color: var(--red);
  font-style: italic;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__slogans {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2.5rem;
}

.hero__slogan-tag {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  padding: .2rem .75rem;
  border-radius: var(--r-full);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero__mascot {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.25));
  animation: mascot-float 4s ease-in-out infinite;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Page hero (páginas internas) */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: .75rem;
}

.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__slogans { justify-content: center; }
  .hero__visual { display: none; }
}

/* ─── TARJETAS DE PRODUCTO ───────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: default;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--blue-light);
  display: block;
}

.product-card__body {
  padding: 1.1rem 1.25rem 1.4rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: .4rem;
}

.product-card__ingredients {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.5;
}

.product-card__tag {
  display: inline-block;
  margin-top: .75rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  background: var(--blue-light);
  color: var(--blue);
}

.product-card__tag--collab {
  background: var(--red);
  color: var(--white);
}

/* Vista compacta (preview en home) */
.product-card--preview .product-card__img {
  aspect-ratio: 1;
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ─── SECCIÓN: PREVIEW SABORES (HOME) ───────────── */
.sabores-preview__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── SECCIÓN: NOSOTROS TEASER (HOME) ───────────── */
.nosotros-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.nosotros-teaser__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.nosotros-teaser__text {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.nosotros-teaser__img {
  display: flex;
  justify-content: center;
}

.nosotros-teaser__img img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.2));
}

@media (max-width: 768px) {
  .nosotros-teaser__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nosotros-teaser__img { order: -1; }
  .nosotros-teaser__img img { max-height: 260px; }
}

/* ─── SECCIÓN: OWN THE SWAGS TEASER ─────────────── */
.own-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.own-teaser__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.own-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.own-step__num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}

.own-step__text strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .15rem;
}

.own-step__text span {
  font-size: .9rem;
  color: var(--gray);
}

.own-teaser__visual {
  display: flex;
  justify-content: center;
}

.own-teaser__visual img {
  max-height: 400px;
  width: auto;
  filter: drop-shadow(0 12px 30px rgba(26,40,212,.2));
}

@media (max-width: 768px) {
  .own-teaser__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .own-step { text-align: left; }
  .own-teaser__visual { display: none; }
}

/* ─── PÁGINA: SABORES ────────────────────────────── */
.sabores-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ─── PÁGINA: QUIÉNES SOMOS ─────────────────────── */
.nosotros__historia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.nosotros__historia-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.nosotros__historia-text p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.nosotros__historia-img img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

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

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

.valor-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.valor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.valor-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.valor-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}

.valor-card__text {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
}

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

.mascota-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.mascota-showcase img {
  width: 100%;
  border-radius: var(--r-lg);
  transition: transform .25s ease;
}

.mascota-showcase img:hover { transform: scale(1.04) rotate(-1deg); }

/* ─── PÁGINA: OWN THE SWAGS ─────────────────────── */
.ots-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ots-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.ots-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}

.ots-step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}

.ots-step__text { font-size: .9rem; color: var(--gray); line-height: 1.6; }

@media (max-width: 640px) {
  .ots-how { grid-template-columns: 1fr; }
}

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

.ots-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}

.ots-benefit__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.ots-benefit__title {
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}

.ots-benefit__text { font-size: .875rem; color: rgba(255,255,255,.7); }

@media (max-width: 640px) {
  .ots-benefits { grid-template-columns: 1fr; }
}

/* Formulario registro */
.ots-form {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.form-submit { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--blue);
  font-size: 1.05rem;
}

/* ─── PÁGINA: CONTACTO ────────────────────────────── */
.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contacto__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contacto__info-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.contacto__info-list {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-bottom: 2rem;
}

.contacto__info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--gray);
}

.contacto__info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

.contacto__info-item a { color: var(--blue); font-weight: 600; }
.contacto__info-item a:hover { text-decoration: underline; }

.contacto__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contacto__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}

.contacto__social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--blue-deeper);
  color: rgba(255,255,255,.85);
  padding: 4rem 0 0;
}

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

.footer__logo { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer__tagline { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }

.footer__social { display: flex; gap: .75rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.footer__social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .05em;
  margin-bottom: 1.1rem;
}

.footer__nav-list { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav-list a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer__nav-list a:hover { color: var(--white); }

.footer__info { display: flex; flex-direction: column; gap: .65rem; }
.footer__info li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; color: rgba(255,255,255,.65);
}
.footer__info a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer__info a:hover { color: var(--white); }

.footer__bottom {
  padding: 1.25rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__bottom p, .footer__bottom a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

/* ─── NAV RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 80px; }
  .nav__logo img { height: 64px; }
}

/* ─── SECCIONES RESPONSIVE GLOBALES ─────────────── */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .section--sm { padding: 2rem 0; }
  .section__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
}

/* ─── FRANQUICIAS ─────────────────────────────────── */
.franq-hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}

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

.franq-number {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.franq-number__value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  font-style: italic;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .25rem;
}

.franq-number__label {
  font-size: .9rem;
  color: var(--gray);
  font-weight: 500;
}

.franq-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.franq-step {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.franq-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.franq-step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .4rem;
}

.franq-step__text {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

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

.franq-include {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.franq-include:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.franq-include__icon { font-size: 1.75rem; flex-shrink: 0; }

.franq-include__title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
  font-size: .95rem;
}

.franq-include__text { font-size: .85rem; color: var(--gray); line-height: 1.5; }

.franq-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.franq-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Responsive franquicias ── */
@media (max-width: 900px) {
  .franq-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .franq-numbers { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .franq-number__value { font-size: 2.5rem; }
  .franq-number { padding: 1.25rem .75rem; }
  .franq-includes { grid-template-columns: 1fr; }
  .franq-form { padding: 1.75rem 1.25rem; }
  .franq-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .franq-numbers { grid-template-columns: 1fr; }
  .franq-steps { grid-template-columns: 1fr; }
  .franq-step { padding: 1.25rem 1rem; }
}
