/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Colores de marca ── */
  --wine:        #6B1E2D;
  --wine-dk:     #4e1521;
  --gold:        #C9A84C;
  --beige:       #F5E9DC;
  --beige-dk:    #ecdbc6;
  --white:       #FFFFFF;
  --black:       #111111;
  --gray:        #555555;
  --gray-lt:     #888888;
  --gray-dk:     #333333;

  /* ── Fondos oscuros ── */
  --dark-hero:   #0e0508;
  --dark-footer: #0d0d0d;

  /* ── Canales RGB para uso con rgba() ── */
  --wine-rgb:    107, 30, 45;
  --gold-rgb:    201, 168, 76;
  --beige-rgb:   245, 233, 220;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
p { line-height: 1.8; color: var(--gray); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 10000;                         /* siempre encima de todo */
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 80px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,30,45,0.08);
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

/* Nav vino cuando el menú móvil está abierto */
nav.menu-open {
  background: var(--wine);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
nav.menu-open .nav-logo-text span:first-child { color: var(--white); }
nav.menu-open .nav-logo-text span:last-child  { color: rgba(255,255,255,0.55); }
nav.menu-open .nav-hamburger span             { background: var(--white); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; position: relative; z-index: 1;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--wine);
  transition: color 0.3s;
}
.nav-logo-text span:last-child {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray-lt);
  transition: color 0.3s;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--wine); }

.nav-cta {
  background: var(--wine) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 0;
  font-size: 0.72rem !important;
}
.nav-cta:hover {
  background: var(--wine-dk) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
  position: relative; z-index: 1;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV — overlay pantalla completa ── */
.nav-mobile {
  position: fixed;
  inset: 0;                       /* cubre TODO el viewport */
  z-index: 9999;                  /* debajo de la nav (10000) */
  background: var(--wine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 8vw 48px;        /* 100px top = espacio para la barra */
  gap: 0;
  /* estado cerrado */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

/* Links */
.nav-mobile a {
  width: 100%;
  max-width: 360px;
  text-align: center;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-mobile a:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.nav-mobile a:hover        { color: var(--gold); }

/* Botón CTA */
.nav-mobile .mobile-cta {
  margin-top: 40px;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 16px 48px;
  transition: border-color 0.2s, color 0.2s;
  border-top: 1.5px solid rgba(255,255,255,0.45);
}
.nav-mobile .mobile-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: var(--dark-hero);
}

.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent, transparent 60px,
      rgba(var(--wine-rgb), 0.18) 60px, rgba(var(--wine-rgb), 0.18) 61px
    ),
    repeating-linear-gradient(
      45deg,
      transparent, transparent 80px,
      rgba(var(--gold-rgb), 0.04) 80px, rgba(var(--gold-rgb), 0.04) 81px
    );
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 30% 50%, rgba(var(--wine-rgb), 0.55) 0%, rgba(10,3,6,0.92) 100%);
}

.hero-heart {
  position: absolute;
  right: -3vw; top: 50%;
  transform: translateY(-50%);
  width: clamp(380px, 46vw, 700px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  filter: saturate(0.7) brightness(0.85);
  animation: heartFloat 8s ease-in-out infinite;
}

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

.hero-content {
  position: relative; z-index: 2;
  text-align: left;
  padding: 0 6vw 0 28px;
  max-width: 680px;
  margin-right: auto;
  margin-left: 6vw;
}

.hero-content::before {
  content: '';
  position: absolute;
  left: -28px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-content h1 em {
  font-style: italic; color: var(--gold);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300; color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  max-width: 560px; margin: 0 0 44px;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-btns {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 1.3s forwards;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--wine);
  color: var(--white);
  padding: 16px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--wine);
  transition: background 0.25s, border-color 0.25s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--wine-dk);
  border-color: var(--wine-dk);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.25s, background 0.25s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--wine);
  padding: 18px 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: background 0.25s, transform 0.15s;
}
.btn-white:hover {
  background: var(--beige);
  border-color: var(--beige);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 18px 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.25s, background 0.25s, transform 0.15s;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ── SECTION SHARED ── */
section { padding: 100px 6vw; }

.section-label {
  display: block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--wine);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; margin-bottom: 32px;
  text-wrap: balance;
}

.section-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 36px;
}

/* ── QUIÉNES SOMOS ── */
#quienes {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quienes-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.quienes-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.quienes-accent {
  position: absolute; bottom: -1px; left: -1px;
  width: 60px; height: 4px; background: var(--wine);
}

.quienes-text p {
  font-size: 1.05rem; line-height: 1.9;
  margin-bottom: 20px;
}

.quienes-stat-row {
  display: flex; gap: 40px; margin-top: 44px;
}

.quienes-stat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--wine);
}
.quienes-stat p {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-lt);
  margin: 4px 0 0;
}

/* ── VISIÓN ── */
#vision {
  background: var(--beige);
  text-align: center;
  padding: 120px 6vw;
}
#vision .section-divider { margin: 0 auto 40px; }

.vision-quote {
  max-width: 780px; margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.75; color: var(--gray-dk);
}
.vision-quote::before {
  content: '"';
  display: block; font-size: 5rem; line-height: 1;
  color: var(--wine); opacity: 0.25;
  margin-bottom: -20px;
}

/* ── MISIÓN ── */
#mision {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mision-text p { font-size: 1.05rem; line-height: 1.9; margin-bottom: 20px; }
.mision-text p:last-child { margin-bottom: 0; }

.mision-visual {
  position: relative;
  display: flex; flex-direction: column; gap: 0;
}

.mision-card {
  padding: 32px 36px;
  border-left: 3px solid var(--wine);
  margin-bottom: 2px;
  background: var(--beige);
  transition: background 0.3s;
}
.mision-card:hover { background: var(--beige-dk); }
.mision-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; color: var(--wine);
  margin-bottom: 8px;
}
.mision-card p { font-size: 0.88rem; line-height: 1.7; }

/* ── VALORES CARRUSEL ── */
#valores {
  background: var(--beige);
  padding: 100px 6vw 80px;
}

/* Track: fila horizontal con scroll snap */
.valores-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  margin-top: 56px;
  /* ocultar barra de scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.valores-track::-webkit-scrollbar { display: none; }
.valores-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

/* Cada tarjeta: 3 visibles en desktop */
.valor-card {
  flex: 0 0 calc((100% - 32px) / 3);
  background: var(--white);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  scroll-snap-align: start;
  transition: transform 0.25s, box-shadow 0.25s;
}
.valor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,30,45,0.1);
}

.valor-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.valor-icon svg { width: 28px; height: 28px; stroke: var(--wine); fill: none; stroke-width: 1.5; }

.valor-card h3 {
  font-size: 0.95rem; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em; color: var(--black);
}
.valor-card p { font-size: 0.82rem; line-height: 1.65; }

/* Fila de navegación: ← dots → */
.carousel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--wine);
  background: transparent;
  color: var(--wine);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover:not(:disabled) { background: var(--wine); color: var(--white); }
.carousel-btn:disabled {
  border-color: rgba(107,30,45,0.2);
  color: rgba(107,30,45,0.2);
  cursor: default;
}
.carousel-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; pointer-events: none; }

.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none; padding: 0;
  background: rgba(107,30,45,0.22);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--wine);
  transform: scale(1.35);
}

/* ── OBJETIVOS ── */
#objetivos {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.objetivos-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--wine);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige-dk);
}

.objetivo-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.objetivo-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: var(--wine);
  margin-top: 2px;
}
.objetivo-item p {
  font-size: 0.92rem; line-height: 1.7;
}

/* ── CTA FINAL ── */
#cta {
  background: var(--wine);
  padding: 120px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-heart-deco {
  position: absolute;
  right: -80px; bottom: -60px;
  width: 420px;
  opacity: 0.1;
  pointer-events: none;
  filter: brightness(1.8) saturate(0.3);
  transform: rotate(-15deg);
}

#cta > *:not(.cta-heart-deco) { position: relative; z-index: 1; }

#cta .section-label { color: var(--gold); }
#cta .section-title { color: var(--white); }
#cta .section-title em { font-style: italic; color: var(--gold); }
#cta .section-divider { background: rgba(var(--gold-rgb), 0.5); margin: 0 auto 44px; }

.cta-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  max-width: 480px; margin: 0 auto 48px;
}

.cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-footer);
  padding: 72px 6vw 40px;
  color: rgba(255,255,255,0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 72px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 300px; color: rgba(255,255,255,0.5); }

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.84rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.75rem; }

.social-row { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }

/* ── RESPONSIVE: TABLET & MOBILE ── */
/* ── LAPTOP MEDIANA 13"–14" (861px – 1440px) ── */
@media (max-width: 1440px) and (min-width: 861px) {
  /* Hero: reducir el título para que no ocupe 4 líneas */
  .hero-content h1 {
    font-size: clamp(2rem, 3.6vw, 3.8rem);
  }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-sub    { font-size: 1rem; margin-bottom: 32px; }
  .hero-content { max-width: 580px; }

  /* Secciones: menos padding vertical */
  section { padding: 80px 6vw; }

  /* Grids: menos gap */
  #quienes, #mision { gap: 56px; }
  #objetivos        { gap: 56px; }
}

/* ── LAPTOP PEQUEÑA 13" ajuste extra (861px – 1280px) ── */
@media (max-width: 1280px) and (min-width: 861px) {
  .hero-content h1 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
  }
  .hero-content { max-width: 520px; }
  section { padding: 72px 6vw; }
}

@media (max-width: 860px) {
  section { padding: 72px 5vw; }
  nav { padding: 0 5vw; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 0 5vw;
  }
  .hero-content::before { display: none; }
  .hero-heart { opacity: 0.12; right: -8vw; width: 70vw; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin: 0 auto 44px; }

  #quienes, #mision, #objetivos {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  #mision { direction: ltr; }
  .quienes-visual { aspect-ratio: 16/9; }
  .quienes-stat-row { gap: 28px; }
  .quienes-stat h4 { font-size: 1.8rem; }

  /* carrusel: 2 tarjetas en tablet */
  .valor-card { flex: 0 0 calc((100% - 16px) / 2); }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  /* carrusel: 1 tarjeta en móvil */
  .valor-card { flex: 0 0 100%; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { text-align: center; }
  .cta-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
}
