  /* === FUENTES Y COLORES BASE === */
  :root {
    --color-crema: #fdfbf6;
    --color-taupe: #3d2e2e;
    --color-beige: #eaddd0;
    --color-crema-suave: #f7f3ef;
    --color-blanco-roto: #f8f4ee;
    --color-acento: #d6c6b8;
    --color-terracota: #a6533a;

    --fuente-titulo: "Playfair Display", serif;
    --fuente-cuerpo: "Lora", serif;
  }


  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--fuente-cuerpo);
    background-color: var(--color-crema);
    color: var(--color-taupe);
    line-height: 1.7;
    padding-top: 90px;
  }

  h1, h2, h3 {
    font-family: var(--fuente-titulo);
    color: var(--color-terracota);
  }

  .hero-texto h1{
  color: var(--color-crema-suave);
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  white-space: nowrap; /* en desktop no parte */
}

  h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }

  p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }

  /* === NAVEGACIÓN === */
  .navbar {
    background-color: var(--color-blanco-roto);
    padding: 1.5rem 2rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
  }

  /* === Ajuste de scroll al navegar por anclas === */
  #inicio,
  #sobre-mi,
  #packs,
  #galeria {
    scroll-margin-top: 5rem;
  }

  #contacto {
    scroll-margin-top: 3rem;
  }

  .nav-contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
    max-width: none;         
  }

  .logo a {
    font-family: var(--fuente-titulo);
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--color-taupe);
    font-weight: bold;
    letter-spacing: 1px;
    margin-right: 3rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }

  .navbar.compacto .nav-contenedor {
    padding: 1rem 2rem;
    transition: padding 0.6s ease;
  }

  .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;   /* 🔁 Asegura que esté en línea horizontal */
    gap: 2rem;
    list-style: none;
  }

  .menu-toggle {
    display: none;
  }

  .menu li a {
    text-decoration: none;
    color: var(--color-taupe);
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .menu li a:hover {
    color: var(--color-acento);
  }

  /* === MENÚ COMPACTO AL HACER SCROLL === */
  .navbar.compacto {
  height: 60px;
    padding: 1rem 2rem;
    background-color: rgba(248, 244, 238, 0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.4s ease-in-out;
  }

  .navbar.compacto .logo a {
    font-size: 1.2rem;
    transition: font-size 0.4s ease;
  }

  .navbar.compacto .menu li a {
    font-size: 1rem;
    transition: font-size 0.4s ease 0.05s;
  }

  /* === HERO === */
  .hero {
    position: relative;
    width: 100%;
    height: 95vh;
    overflow: hidden;
    z-index: 1;
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .hero-texto {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    z-index: 2;
  }

  .hero-texto p {
    font-size: 1.4rem;
    font-weight: 400;
  }

  /* === SECCIONES GENERALES === */
  .seccion {
    padding: 5rem 2rem;
    scroll-margin-top: 90px;
  }

  .seccion.clara {
    background-color: var(--color-crema);
  }

  .seccion.oscura {
    background-color: var(--color-blanco-roto);
  }

  .contenido {
    max-width: 900px;
    margin: auto;
  }

  .contenido.sobre-mi {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    justify-content: center;
  }

  /* === Sobre mí: dar más ancho al texto en desktop === */
  @media (min-width: 992px){
  /* (opcional) un pelín más de ancho total a la sección */
  .contenido.sobre-mi{ max-width: 1000px; } /* antes 900px */

  /* fija un ancho base para la foto y deja más espacio al texto */
  .contenido.sobre-mi .foto{ flex: 0 0 380px; }   /* estaba implícito por la imagen */
  .contenido.sobre-mi .texto{ flex: 1 1 58%; }     /* antes tenías ~1.2; ahora ocupa más */
}

/* Si prefieres controlar por caracteres (columna más ancha),
   sube el límite de la columna de texto: */
   @media (min-width: 1024px){
  .contenido.sobre-mi .texto{ max-width: 68ch; }   /* si ya pusiste 62ch, súbelo a 68–72ch */
}

  .contenido.sobre-mi .foto {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
  }

  .contenido.sobre-mi .foto img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .contenido.sobre-mi .texto {
    flex: 1.2;
  }

  .foto {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Frase debajo de la imagen (animación con Intersection Observer) */
  .frase-sobre-mi {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #6e5c50;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.8s ease-out .4s, transform 1.8s ease-out .25s;
    text-align: center;
    max-width: 90%;
  }

  /* Clase que se activa con JS */
  .frase-sobre-mi.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive ajustes */
  @media (max-width: 768px) {
    .frase-sobre-mi {
      font-size: 18px;
      padding: 0 10px;
    }
  }

  /* === GALERÍA SLIDER (fix de altura, sin tocar colores) === */
  #galeria .swiper{
    width:100%;
    max-width:1120px;
    margin:auto;
    padding:1rem 0 2rem;
    border-radius:12px;
    overflow:hidden;            /* evita que el hover sobresalga */
  }

  .mySwiper .swiper-slide{
    aspect-ratio:3/2;         /* 👈 da altura al slide para que la imagen se vea */
    display:flex;
    justify-content:center;
    align-items:center;
    padding:.5rem;
  }

  @media (max-width:640px){
    .mySwiper .swiper-slide{ aspect-ratio:1/1; }
  }

  .mySwiper .swiper-slide img{
    width:100%;
    height:100%;                /* 👈 ahora sí, porque el slide ya tiene altura */
    object-fit:cover;           /* recorte elegante y uniforme */
    border-radius:10px;
    box-shadow:0 6px 16px rgba(0,0,0,.08);
    transition:transform .3s ease;
    display:block;              /* evita espacios raros de inline-img */
  }

  .mySwiper .swiper-slide img:hover{ transform:scale(1.02); }

  /* Controles y paginación (mantenemos tus colores) */
  .swiper-button-next,
  .swiper-button-prev{ color: var(--color-taupe); }

    /* === PACKS === */
  .pack {
    border: 1px solid var(--color-acento);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background-color: white;
    transition: transform 0.2s ease;
  }

  .pack:hover {
    transform: scale(1.02);
  }

    /* === CONTACTO === */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
  }

  input, textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: var(--fuente-cuerpo);
    font-size: 1rem;
  }

  textarea {
    min-height: 150px;
  }

  button {
    background-color: var(--color-acento);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  button:hover {
    background-color: var(--color-taupe);
  }

  /* === FOOTER === */
  footer {
    background-color: var(--color-blanco-roto);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #777;
  }

  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    /* Contenedor del nav y logo */
    .nav-contenedor {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      text-align: center;
      width: 100%;
      position: absolute;
      left: 50%;
      transform: translateX(-45%);
      top: 0.5rem;
      pointer-events: none;
    }

    .logo a {
      pointer-events: auto;
    }

    /* Menú hamburguesa */
    .menu-toggle {
      display: block;
      font-size: 1.4rem;
      color: var(--color-taupe);
      cursor: pointer;
      background: none;
      border: none;
      padding: 0.2rem;
      position: absolute;
      right: 1rem;
      top: 1rem;
      z-index: 9999;
      transition: transform 0.2s ease;
    }

    .menu-toggle:hover {
      transform: scale(1.1);
    }

    .navbar.compacto .menu-toggle {
      top: 50%;
      transform: translateY(-50%);
    }

    /* Menú oculto inicialmente en móvil */
    .menu {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background-color: var(--color-crema);
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      padding: 1rem 2rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      z-index: 99;
    }

    /* Menú visible cuando se activa */
    .menu.active {
      display: flex;
    }

    /* Sección "Sobre mí" en columna */
    .contenido.sobre-mi {
      flex-direction: column;
      text-align: center;
    }

    .contenido.sobre-mi .texto {
      padding: 0 1rem;
    }

    .contenido.sobre-mi .foto img {
      max-width: 90%;
      margin: 0 auto;
    }
  }

  body.scrolled .navbar {
    background-color: var(--color-blanco-roto); /* beige sólido */
    height: 90px; /* o el valor real que uses */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* opcional para sombreado suave */
    transition: all 0.3s ease;
  }

  body.scrolled .menu-toggle {
    padding-top: 0.3rem;  /* o ajusta según lo que necesites */
    margin-top: 0.3rem;
  }

  html {
    scroll-behavior: smooth;
  }

  /* === LIGHTBOX ÚNICO (lb) === */
  .lb {
    position: fixed;
    inset: 0;
    display: none;                 /* se activa con .active */
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0,0,0,.85);
    z-index: 99999;                /* por encima del swiper */
    overscroll-behavior: contain;  /* evita scroll del body */
  }

  .lb.active { display: flex; }

  .lb-img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    cursor: zoom-out;
    transition: transform .2s ease;
  }

  /* Controles */
  .lb-btn {
    position: absolute;
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: var(--color-blanco-roto);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    backdrop-filter: blur(2px);
    transition: background .2s ease, transform .2s ease;
  }

  .lb-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.05); }
  .lb-close { top: 16px; right: 16px; }
  .lb-prev  { left: 18px;  top: 50%; transform: translateY(-50%); }
  .lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }

  @media (max-width: 640px) {
    .lb-btn { width: 38px; height: 38px; font-size: 22px; }
  }

  /* === MÓVIL: navbar + hero sin banda blanca === */
  @media (max-width: 768px) {
    /* Quita el empuje global del body en móvil */
    body { padding-top: 0; }

    /* Navbar transparente en la parte alta (se ve el hero detrás) */
    .navbar {
      background: transparent;
      box-shadow: none;
      height: 64px;                /* un pelín más compacta */
      transition: background .25s ease, box-shadow .25s ease;
      z-index: 1000;
    }

    /* Cuando haces scroll, la navbar sí toma fondo sólido (lo que ya usas) */
    body.scrolled .navbar {
      background-color: var(--color-blanco-roto);
      box-shadow: 0 2px 6px rgba(0,0,0,.08);
    }

    /* Capa de degradado claro sobre el hero SOLO detrás del menú
      así el menú se lee sin poner una franja blanca fija */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 120px; /* altura del “acolchado” bajo el menú */
      background: linear-gradient(
        to bottom,
        rgba(248,244,238,.95) 0%,
        rgba(248,244,238,.60) 45%,
        rgba(248,244,238,0) 100%
      );
      pointer-events: none;
      z-index: 1; /* por debajo del menú, por encima de la foto */
    }

    /* Ajustes del hero para que no tape caras y se lea bien */
    .hero {
      margin-top: 0;
    }

    /* Mueve el foco de la foto (sube un poco el encuadre) */
    .hero img {
      object-position: 50% 35%; /* prueba 30–40% según la foto */
    }

    /* Recoloca el título hacia abajo y que haga salto de línea natural */
    .hero-texto {
      top: auto;
      bottom: 12%;
      left: 50%;
      transform: translateX(-50%);
      width: 92%;
      max-width: 640px;
      text-align: center;
      z-index: 2; /* por encima del degradado */
    }

    .hero-texto h1 {
      font-size: 1.9rem;
      line-height: 1.25;
      white-space: normal;      /* permite saltos de línea */
      text-shadow: 0 2px 8px rgba(0,0,0,.35); /* mejora legibilidad sobre la foto */
    }

    /* Botón hamburguesa sigue visible sobre el hero */
    .menu-toggle { color: var(--color-taupe); }
  }

/* Justificar texto en "Sobre mí" */
#sobre-mi .texto p{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  text-align-last: left;   /* la última línea queda a la izquierda */
}

/* === GRID PACKS (tarjetas) — CONSOLIDADO === */
.packs-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}
@media (min-width:1280px){
  .packs-grid{ grid-template-columns: repeat(3, minmax(360px,1fr)); }
}
@media (max-width:1024px){
  .packs-grid{ grid-template-columns: repeat(auto-fit, minmax(340px,1fr)); }
}
@media (max-width:640px){
  .packs-grid{ grid-template-columns: 1fr; }
}

/* Párrafos intro bajo títulos (Packs + Extras) */
.section-lead{
  max-width: 68ch;       /* mismo ancho “de línea” que el de arriba */
  margin: 0 0 2rem 0;    /* separación con las tarjetas */
  color: var(--color-taupe);
}

/* Más aire en móvil entre título/intro y las tarjetas de extras */
@media (max-width: 768px){
  .section-lead{ margin-bottom: 2.75rem; }
  .subtitulo-extras{ margin-top: 3.5rem; }  /* separa el bloque de Extras de las tarjetas de Packs */
  .extras-grid{ gap: 1.25rem; }             /* un pelín más de aire entre las 2 tarjetas */
}


/* === TARJETA BASE === */
.pack-card{
  position: relative;
  background: linear-gradient(180deg, var(--color-crema) 0%, #fff 60%);
  border: 1px solid var(--color-acento);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pack-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
  border-color: var(--color-terracota);
}

/* Cabecera de la tarjeta */
.pack-card .pack-head{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .4rem;
}

/* Título */
.pack-card h3{
  margin:0;
  color: var(--color-terracota);
  font-size: clamp(1.4rem, 1.1rem + .7vw, 1.7rem);
}

/* Precio (única definición base) */
.pack-card .price{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:56px;
  min-width:112px;               /* cabe “370 €” sin saltar */
  padding: 0 .9rem;
  border-radius: 999px;
  background: var(--color-crema-suave);
  border: 1px solid var(--color-acento);
  font-family: var(--fuente-titulo);
  color: var(--color-terracota);
  font-weight:700;
  font-size: clamp(1.25rem, 1rem + .9vw, 1.75rem);
  line-height:1;
  white-space: nowrap;
  letter-spacing: .2px;
}
@media (max-width:640px){
  .pack-card .price{
    height:50px;
    min-width:104px;
  }
}

/* Meta/tiempo y lista de características */
.pack-card .time{
  color: var(--color-taupe);
  font-weight: 600;
  margin: 0 0 .6rem 0;
}
.pack-card .features{
  list-style:none;
  padding:0;
  margin:0 0 1.1rem 0;
}
.pack-card .features li{
  position: relative;
  padding-left: 1.4rem;
  margin: .4rem 0;
  color: var(--color-taupe);
}
.pack-card .features li::before{
  content: "✓";
  position:absolute; left:0; top:0;
  color: var(--color-terracota);
  font-weight:700;
}

/* Botones */
.btn-pack{
  display:inline-block;
  background: var(--color-terracota);
  color:#fff;
  text-decoration:none;
  padding:.6rem 1.1rem;
  border-radius:999px;
  font-weight:700;
  transition: transform .2s ease, background .2s ease;
}
.btn-pack:hover{ background:#8e442e; transform: translateY(-2px); }

/* Variante secundaria (extras) */
.btn-secondary{
  background: transparent;
  color: var(--color-terracota);
  border: 2px solid var(--color-terracota);
}
.btn-secondary:hover{
  background: var(--color-terracota);
  color:#fff;
}

/* Destacado */
.pack-card.destacado{
  border-color: var(--color-terracota);
  box-shadow: 0 14px 34px rgba(166,83,58,.18);
}
.pack-card .badge{
  position:absolute;
  top:-10px; left:16px;
  background: var(--color-terracota);
  color:#fff;
  border-radius:999px;
  padding:.25rem .7rem;
  font-size:.85rem;
  box-shadow:0 4px 12px rgba(166,83,58,.25);
}

/* === EXTRAS (debajo de packs, en horizontal) === */
.subtitulo-extras{
  font-family: var(--fuente-titulo);
  font-size: 2rem;
  color: var(--color-terracota);
  margin-top: 2.5rem;
  margin-bottom: .5rem;
}

.extras-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 1.75rem;
}
@media (max-width:860px){
  .extras-grid{ grid-template-columns: 1fr; }
}

/* Ajuste del título h4 dentro de extras */
.addon-card .pack-head h4{
  font-size: 1.35rem;
  margin:0 .75rem 0 0;
}

/* Precio grande para extras (incremento leve) */
.price-lg{
  font-size: clamp(1.45rem, 1.2rem + .9vw, 1.95rem);
}

/* "Servicios adicionales": ancho completo y texto justificado */
.extras-copy{
  color: var(--color-taupe);
  max-width: none;      /* anula el 70ch anterior */
  width: 100%;
  margin: 0 0 1.25rem 0;

  text-align: justify;
  text-justify: inter-word; /* mejor reparto entre palabras */
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  text-align-last: left;     /* última línea alineada a la izquierda */
}

 /* === CTA WhatsApp === */
.cta-wa{
  /* tokens */
  --bg: var(--color-terracota);
  --bg2:#8e442e;
  --txt:#fff;
  --ico: 20px;

  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 10000;

  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  color: var(--txt);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;

  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(2px);

  overflow: hidden;          /* para el gloss */
  transform: translateZ(0);  /* acelera animación */
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* Gloss superior sutil */
.cta-wa::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,0) 42%);
  pointer-events:none;
}

/* Variante flotante (añade la clase is-floating) */
.cta-wa.is-floating{ animation: ctaFloat 4.2s ease-in-out infinite; }
.cta-wa.is-floating::after{
  content:"";
  position:absolute; inset:-8px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(166,83,58,.22);
  animation: ctaRing 3.4s ease-out infinite;
  pointer-events:none;
}

/* Icono */
.cta-wa .wa-ico{
  width: var(--ico); height: var(--ico);
  flex: 0 0 var(--ico);
  fill: currentColor;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.15));
}

/* Tipografía */
.cta-wa span{
  font-family: var(--fuente-titulo);
  font-size: .95rem;
  line-height: 1;
}

/* Hover y active */
.cta-wa:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.22);
}
.cta-wa:active{
  transform: translateY(0) scale(.98);
}

/* Gesto del icono al pasar */
.cta-wa:hover .wa-ico{ animation: waNod .7s ease both; }

/* Accesibilidad: foco visible */
.cta-wa:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(166,83,58,.35),
    0 10px 30px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.2);
}

/* Animaciones */
@keyframes ctaFloat{
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-6px); }
}
@keyframes ctaRing{
  0%   { box-shadow: 0 0 0 0 rgba(166,83,58,.30); }
  60%  { box-shadow: 0 0 0 14px rgba(166,83,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(166,83,58,0); }
}
@keyframes waNod{
  0%{ transform: rotate(0deg); }
  30%{ transform: rotate(12deg); }
  60%{ transform: rotate(-8deg); }
  100%{ transform: rotate(0deg); }
}

/* Menos movimiento si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce){
  .cta-wa.is-floating{ animation:none; }
  .cta-wa.is-floating::after{ animation:none; }
  .cta-wa:hover .wa-ico{ animation:none; }
}

/* Ajuste móvil */
@media (max-width: 480px){
  .cta-wa{ padding:.55rem .9rem; gap:.5rem; --ico: 22px; }
  .cta-wa span{ font-size: .9rem; }
}

/* --- PACKS — ancho completo + texto justificado limpio --- */
#packs .contenido{
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(16px, 5vw, 64px);
  padding-right: clamp(16px, 5vw, 64px);
}

#packs h2{
  text-wrap: balance;
}

#packs .section-lead{
  grid-column: 1 / -1;
  max-width: none;
  width: 100%;
  margin: 0 0 1.6rem 0;
  line-height: 1.6;
  text-wrap: pretty;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Móvil: mantener justificado */
@media (max-width: 768px){
  #packs .section-lead{
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}

/* Contacto: intro justificada también en móvil */
#contacto .contenido p:first-of-type{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Contacto: intro justificada también en móvil */
#contacto .contenido p:first-of-type{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

#contacto .section-lead{ text-align: justify !important; }

  /* Reseñas */
  .reseñas{
    background: #f6f2ea; /* crema */
    padding: clamp(2rem, 4vw, 4rem) 1rem;
  }
  .reseñas .titulo{
    font-family: "Playfair Display", serif;
    text-align: center; 
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 1.5rem; 
    color:  #a6533a; /* texto taupe oscuro */
  }

  .reviews{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (max-width: 900px){
    .reviews{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px){
    .reviews{ grid-template-columns: 1fr; }
  }

  .review{
    background: #fff;
    border: 1px solid #e9e2d9;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
  }

  .review-header{
    display: flex; 
    align-items: center; 
    gap: .75rem; 
    margin-bottom: .5rem;
  }
  .avatar{
    width: 42px; height: 42px; 
    border-radius: 999px; 
    background: #b9a89a; /* taupe */
    color: #fff;
    font-weight: 600; 
    font-size: .95rem;
    display: grid; 
    place-items: center;
  }
  .name{
    font-family: "Lora", serif;
    color: #4a403a;
  }
  .date{
    font-size: .85rem; 
    color: #7a6e65;
  }

  .stars{ 
    letter-spacing: .1rem; 
    font-size: 1.1rem; 
    margin-bottom: .5rem; 
    color: #d4a373; /* dorado suave */
  }

  .text{
  color: #4a403a;
  font-size: 1rem;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  text-wrap: pretty;          /* suaviza cortes raros */
  hanging-punctuation: first; /* opcional: cuelga comillas iniciales si las hay */
  margin-top: .65rem;
 }


  .cta-reseñas{ 
    text-align: center; 
    margin-top: 1.5rem; 
  }
  .btn{
    display: inline-block; 
    padding: .75rem 1.2rem;
    border-radius: 999px; 
    background: #4a403a; 
    color: #fff; 
    text-decoration: none; 
    font-family: "Lora", serif;
    transition: transform .2s ease;
  }
  .btn:hover{ transform: translateY(-2px); }

  /* Botón temporal campaña Navidad */
.navidad-link {
  color: #b89a7a;           /* taupe dorado */
  font-weight: 600;
  border: 1px solid #b89a7a;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 1.2;
  display: inline-block;
  transition: all 0.2s ease;
}

.navidad-link:hover {
  background-color: #b89a7a;
  color: #fff;
}

