/* ============================================================
   KARINA PETELIN — ESPACIO DE BELLEZA
   styles.css · Mayo 2026 · jArismendi®
   ============================================================ */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --kp-bordeaux: #9F1239;
  --kp-bordeaux-dk: #7A0E2A;
  --kp-rojo: #E11D48;
  --kp-rosa: #fddae2;
  --kp-negro: #000000;
  --kp-blanco: #FFFFFF;
  --kp-blanco-cal: #FFF8FA;
  --kp-texto: #1E1A1A;
  --kp-muted: rgba(255, 248, 250, 0.55);

  --font-titulo: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Montserrat', system-ui, sans-serif;

  --nav-h: 68px;
  --max-w: 1160px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --pad-y: clamp(3.5rem, 7vw, 6.5rem);
  --radius: 3px;
  --t: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--kp-texto);
  background: var(--kp-blanco);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

em {
  font-style: italic;
}

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */
.section-label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kp-bordeaux);
  display: block;
  margin-bottom: 0.75rem;
}

.section-label--light {
  color: var(--kp-rojo);
}

.kp-h2 {
  font-family: var(--font-titulo);
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  line-height: 1.1;
}

.section-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 560px;
  color: #5A4A4A;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn-kp-primary,
.btn-kp-dark,
.btn-kp-outline,
.btn-kp-outline-light,
.btn-nav-ghost,
.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border-color: var(--kp-rosa);
  padding: 0.78rem 1.8rem;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
}

.btn-kp-primary {
  background: var(--kp-bordeaux);
  color: var(--kp-blanco);
  border-color: var(--kp-blanco);
  border-width: 2px;
}

.btn-kp-primary:hover {
  background: var(--kp-bordeaux-dk);
  border-color: var(--kp-bordeaux-dk);
}

.btn-kp-dark {
  background: var(--kp-rojo);
  color: var(--kp-blanco);
  border-color: var(--kp-rojo);
}

.btn-kp-dark:hover {
  background: var(--kp-bordeaux);
  border-color: var(--kp-bordeaux);
}

.btn-kp-outline {
  background: transparent;
  color: var(--kp-bordeaux);
  border-color: var(--kp-bordeaux);
}

.btn-kp-outline:hover {
  background: var(--kp-bordeaux);
  color: var(--kp-blanco);
}

.btn-kp-outline-light {
  background: transparent;
  color: var(--kp-blanco-cal);
  border-color: rgba(255, 248, 250, 0.45);
}

.btn-kp-outline-light:hover {
  background: var(--kp-blanco-cal);
  color: var(--kp-negro);
  border-color: var(--kp-blanco-cal);
}

.btn-kp--xl {
  padding: 1rem 2.8rem;
  font-size: 0.8rem;
}


/* ============================================================
   NAVBAR
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
  background: transparent;
}

#main-nav.scrolled {
  background: color-mix(in srgb, var(--kp-bordeaux-dk), transparent 20%);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 1.5rem;
}

.nav-logo img {
  height: 100px;
  width: auto;
  padding-top: 10px;
}

.nav-links {
  display: none;
  gap: 1.8rem;
  align-items: center;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--kp-blanco-cal);
  transition: color var(--t);
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--kp-rojo);
  transition: width var(--t);
}

.nav-link:hover {
  color: var(--kp-bordeaux-dk);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: none;
  gap: 0.6rem;
  align-items: center;
}

@media (min-width: 992px) {
  .nav-actions {
    display: flex;
  }
}

.btn-nav-ghost {
  background: transparent;
  color: rgba(255, 248, 250, 0.6);
  border: 1px solid rgba(255, 248, 250, 0.25);
  padding: 0.5rem 1.1rem;
  font-size: 0.67rem;
}

.btn-nav-ghost:hover {
  color: var(--kp-blanco-cal);
  border-color: rgba(255, 248, 250, 0.55);
}

.btn-nav-primary {
  background: var(--kp-bordeaux);
  color: var(--kp-blanco);
  border-color: var(--kp-bordeaux);
  padding: 0.5rem 1.3rem;
  font-size: 0.67rem;
}

.btn-nav-primary:hover {
  background: var(--kp-bordeaux-dk);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  z-index: 901;
}

@media (min-width: 992px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--kp-blanco-cal);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-hamburger.open {
  z-index: 898;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--kp-negro);
  z-index: 899;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-close {
  position: absolute;
  top: 1.2rem;
  right: var(--pad-x);
  color: rgba(255, 248, 250, 0.6);
  font-size: 1.4rem;
  padding: 0.5rem;
  transition: color var(--t);
}

.nav-overlay-close:hover {
  color: var(--kp-rojo);
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.nav-overlay-link {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 248, 250, 0.7);
  padding: 0.9rem 2rem;
  transition: color var(--t);
  display: block;
}

.nav-overlay-link:hover {
  color: var(--kp-rojo);
}

.nav-overlay-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 240px;
}

.nav-overlay-actions a {
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: calc(100dvh - var(--nav-h));
  min-height: 520px;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
  padding-top: 0;
}

/* Reajuste: el hero debe ser full-viewport */
body {
  padding-top: 0;
}

#hero {
  height: 100dvh;
  min-height: 560px;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(32, 30, 30, 0.15) 0%,
      rgba(32, 30, 30, 0.45) 50%,
      rgba(32, 30, 30, 0.82) 100%);
  z-index: 1;
}

/* Diapositivas de oferta con texto incrustado en la imagen (ej. "10% desc.
   en efectivo"): no llevan h1 superpuesto (solo el botón, que ya tiene su
   propio fondo oscuro), así que no necesitan el degradado de contraste.
   La imagen fuente es un collage de fondo grisáceo/pálido — se compensa
   con saturación y contraste extra en vez de oscurecerla. */
.hero-slide--vivid .hero-slide-overlay {
  display: none;
}

.hero-slide--vivid {
  filter: saturate(1.3) contrast(1.1) brightness(1.03);
}

.hero-slide-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 840px;
  text-align: center;
  z-index: 2;
  color: var(--kp-blanco);
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kp-rojo);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  line-height: 1.06;
  color: var(--kp-blanco);
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats */
.hero-stats {
  position: absolute;
  bottom: 6%;
  left: var(--pad-x);
  z-index: 2;
  display: flex;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--kp-blanco);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 248, 250, 0.55);
  margin-top: 0.2rem;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 6%;
  right: 50%;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 248, 250, 0.3);
  padding: 0;
  transition: background var(--t), transform var(--t);
}

.hero-dot.active {
  background: var(--kp-rojo);
  transform: scale(1.3);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--kp-bordeaux);
  overflow: hidden;
  padding: 0.85rem 0;
}

.trust-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}

.trust-strip:hover .trust-track {
  animation-play-state: paused;
}

.trust-item {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kp-blanco);
  padding: 0 1.2rem;
}

.trust-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECCIONES BASE
   ============================================================ */
.section-kp {
  padding: var(--pad-y) var(--pad-x);
}

.section-kp--rosa {
  background: var(--kp-rosa);
}

.section-kp--negro {
  background: var(--kp-negro);
}

.section-kp--bordeaux {
  background: var(--kp-bordeaux);
}

.section-kp--blanco {
  background: var(--kp-blanco);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
  max-width: none;
}

.section-kp--negro .section-label {
  color: var(--kp-rojo);
}

.section-kp--negro .kp-h2 {
  color: var(--kp-blanco-cal);
}

.section-kp--negro .section-desc {
  color: rgba(255, 248, 250, 0.55);
}

.section-kp--bordeaux .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.section-kp--bordeaux .kp-h2 {
  color: var(--kp-blanco);
}

.section-kp--bordeaux .section-desc {
  color: rgba(255, 248, 250, 0.75);
}

.kp-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--kp-blanco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(32, 30, 30, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(32, 30, 30, 0.13);
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--kp-bordeaux);
  opacity: 0;
  transition: opacity var(--t);
}

.service-card:hover .service-img-wrap::after {
  opacity: 0.1;
}

.service-body {
  padding: 1.35rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.service-badge {
  display: inline-block;
  background: var(--kp-bordeaux);
  color: var(--kp-blanco);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  width: fit-content;
}

.service-badge--rojo {
  background: var(--kp-rojo);
}

.service-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kp-texto);
}

.service-desc-text {
  font-size: 0.84rem;
  line-height: 1.7;
  color: #6A5A5A;
  flex: 1;
}

.service-card .btn-kp-outline {
  margin-top: 0.5rem;
  align-self: flex-start;
  padding: 0.58rem 1.3rem;
  font-size: 0.68rem;
}

/* ============================================================
   SALON DIFERENCIAL
   ============================================================ */
.salon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .salon-grid {
    grid-template-columns: 6fr 4fr;
    gap: 5rem;
    align-items: start;
  }
}

.d-cards {
  margin-top: 2.5rem;
}

.d-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 248, 250, 0.09);
}

.d-card:first-child {
  border-top: 1px solid rgba(255, 248, 250, 0.09);
}

.d-card-num {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 2rem;
  color: var(--kp-rojo);
  min-width: 3rem;
  line-height: 1;
  padding-top: 0.15rem;
}

.d-card-title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.90rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--kp-blanco);
  margin-bottom: 0.35rem;
}

.d-card-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255, 248, 250, 0.5);
}

.salon-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.salon-portrait {
  margin: 0;
}

.salon-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border-left: 3px solid var(--kp-bordeaux);
}

.salon-portrait figcaption {
  margin-top: 1.2rem;
}

.salon-blockquote {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--kp-blanco-cal);
}

.salon-blockquote cite {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kp-rojo);
  margin-top: 0.6rem;
}

.years-block {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem;
  border: 1px solid rgba(255, 248, 250, 0.1);
  border-radius: var(--radius);
}

.years-num {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--kp-rojo);
  line-height: 1;
  min-width: 4rem;
}

.years-text strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--kp-blanco);
  margin-bottom: 0.35rem;
}

.years-text p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 248, 250, 0.5);
}

/* ============================================================
   STEPS + TESTIMONIOS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: center;
  padding: 1.4rem 0.75rem;
}

.step-num {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 3.2rem;
  color: var(--kp-bordeaux);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kp-texto);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.83rem;
  line-height: 1.7;
  color: #7A6A6A;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .testimonios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonio {
  background: var(--kp-blanco);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 2px 14px rgba(32, 30, 30, 0.06);
  border-top: 2.5px solid var(--kp-bordeaux);
}

.testimonio-stars {
  color: var(--kp-bordeaux);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}

.testimonio-text {
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--kp-texto);
  margin-bottom: 0.8rem;
}

.testimonio-author {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kp-bordeaux);
}

.steps-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(159, 18, 57, 0.12);
}

.steps-quote {
  display: block;
  font-family: var(--font-titulo);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  color: var(--kp-bordeaux);
  margin-bottom: 1.5rem;
}

.steps-quote cite {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9A8A8A;
  margin-top: 0.5rem;
}

/* ============================================================
   PROMOS
   ============================================================ */
.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 576px) {
  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .promos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.promo-card {
  background: var(--kp-rosa);
  border: 1px solid rgba(248, 245, 246, 0.9);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.promo-card--featured {
  background: var(--kp-blanco);
  border: 2px solid rgba(159, 18, 57, 0.4);
}

.promo-badge-pop {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  background: var(--kp-rojo);
  color: var(--kp-blanco);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.promo-num {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--kp-bordeaux);
}

.promo-name {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 1.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--kp-texto);
}

.promo-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #6A5A5A;
  flex: 1;
}

.promo-precio {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--kp-bordeaux);
  line-height: 1;
}

.promo-card .btn-kp-primary {
  padding: 0.6rem 1.1rem;
  font-size: 0.66rem;
  align-self: flex-start;
  margin-top: 0.3rem;
}

/* ============================================================
   HISTORIA
   ============================================================ */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .historia-grid {
    grid-template-columns: 5fr 6fr;
    gap: 5rem;
  }
}

.historia-img-wrap {
  position: relative;
}

.historia-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border-right: 3px solid var(--kp-bordeaux);
}

.historia-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -0.5rem;
  background: var(--kp-negro);
  border: 1px solid rgba(255, 248, 250, 0.12);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1;
}

.historia-num {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--kp-rojo);
}

.historia-sub {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 248, 250, 0.5);
}

.historia-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.h-stat-num {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--kp-rojo);
  line-height: 1;
}

.h-stat-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 248, 250, 0.45);
  display: block;
  margin-top: 0.25rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.kp-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(159, 18, 57, 0.13);
  background: transparent;
  border-radius: 0 !important;
}

.kp-accordion .accordion-button {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--kp-bordeaux);
  background: transparent;
  padding: 1.2rem 0;
  box-shadow: none !important;
  gap: 0.75rem;
}

.kp-accordion .accordion-button:not(.collapsed) {
  color: var(--kp-bordeaux-dk);
  background: transparent;
}

.kp-accordion .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--kp-bordeaux);
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none !important;
  flex-shrink: 0;
}

.kp-accordion .accordion-button:not(.collapsed)::after {
  content: '−';
}

.kp-accordion .accordion-body {
  font-size: 0.87rem;
  line-height: 1.75;
  color: #6A5A5A;
  padding: 0 0 1.25rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 3rem;
}

@media (min-width: 992px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(159, 18, 57, 0.12);
}

.faq-cta p {
  font-size: 0.9rem;
  color: #7A6A6A;
  margin-bottom: 1.2rem;
}

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.instagram-header {
  text-align: center;
  margin-bottom: 2rem;
}

.instagram-handle {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--kp-bordeaux);
  display: block;
  margin-bottom: 0.4rem;
}

.instagram-sub {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A8A8A;
}

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

.ig-cell {
  aspect-ratio: 1;
  background: var(--kp-rosa);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ig-cell svg {
  opacity: 0.22;
}

/* Celda con foto real (generada por instagram.js) */
.ig-cell--live {
  display: block;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.ig-cell--live img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(159, 18, 57, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ig-cell--live:hover .ig-overlay,
.ig-cell--live:focus-visible .ig-overlay {
  opacity: 1;
}

.ig-cell--live:hover img {
  transform: scale(1.05);
}

.ig-video-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.6rem;
  line-height: 1;
  padding: 3px 6px;
  border-radius: 3px;
  pointer-events: none;
}

.instagram-cta {
  text-align: center;
}

/* ============================================================
   PARTNER CAV
   ============================================================ */
.partner-inner {
  text-align: center;
  padding: 1.5rem 0;
}

.partner-eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kp-bordeaux);
  display: block;
  margin-bottom: 1.2rem;
}

.partner-cav-text {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  color: var(--kp-bordeaux);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.5rem;
}

.partner-sub {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.78rem;
  color: #9A8A8A;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-final-inner .kp-h2 {
  margin-bottom: 1.4rem;
}

.cta-final-inner .section-desc {
  max-width: 480px;
  margin: 0 auto 2.2rem;
  color: rgba(255, 248, 250, 0.5);
}

.cta-guarantee {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 248, 250, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--kp-negro);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 248, 250, 0.07);
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1.3fr 1.3fr 1.5fr;
  }
}

.footer-brand img {
  height: 65px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 248, 250, 0.42);
  max-width: 230px;
}

.footer-col-title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kp-rojo);
  margin-bottom: 1rem;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 248, 250, 0.52);
  transition: color var(--t);
}

.footer-links a:hover {
  color: var(--kp-blanco-cal);
}

.footer-horario {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-horario-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 248, 250, 0.52);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 248, 250, 0.05);
}

.footer-horario-row:last-child {
  border-bottom: none;
}

.footer-dir {
  font-size: 0.8rem;
  color: rgba(255, 248, 250, 0.38);
  line-height: 1.65;
  margin-top: 0.75rem;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.68rem;
  color: rgba(255, 248, 250, 0.5);
  letter-spacing: 0.03em;
  padding-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding-bottom: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 192, 209, 0.70);
  border: 2px solid rgba(255, 248, 250, 0.70);
  border-radius: 50%;
  transition: color var(--t), border-color var(--t);
}

.social-icon:hover {
  color: var(--kp-rojo);
  border-color: var(--kp-rojo);
}

/* ============================================================
   FLOATING
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: var(--kp-rojo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.38);
  z-index: 850;
  color: var(--kp-blanco);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}

.whatsapp-float:hover {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transform: scale(1.08);
}

.wa-tooltip {
  position: fixed;
  bottom: 2.1rem;
  right: 5.4rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 13px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 851;
}

.wa-tooltip.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-top-btn {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: rgba(32, 30, 30, 0.7);
  border: 1px solid rgba(255, 248, 250, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kp-blanco-cal);
  font-size: 2.4rem;
  line-height: 1;
  z-index: 849;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), background var(--t);
  cursor: pointer;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--kp-bordeaux);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

/* ============================================================
   RESPONSIVE — MÓVIL
   ============================================================ */
@media (max-width: 575px) {
  .hero-stats {
    gap: 1.2rem;
    bottom: 4%;
  }

  .hero-dots {
    bottom: 4%;
  }

  .hero-content {
    bottom: 12%;
  }

  .historia-badge {
    right: 0.5rem;
  }

  .years-block {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   LOADER DE MARCA
   Tapa el FOUT de Google Fonts (display=swap): sin esto, en
   conexiones lentas se ve el texto un instante con la tipografía
   de reemplazo del sistema antes de saltar a Cormorant/Montserrat.
   ============================================================ */
#kp-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--kp-blanco);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#kp-loader.kp-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#kp-loader .kp-loader__logo {
  width: 96px;
  height: 96px;
  animation: kp-loader-pulse 1.6s ease-in-out infinite;
}

#kp-loader .kp-loader__spinner {
  width: 32px;
  height: 32px;
  border: 2.5px solid var(--kp-rosa);
  border-top-color: var(--kp-bordeaux);
  border-radius: 50%;
  animation: kp-loader-spin 0.8s linear infinite;
}

#kp-loader .kp-loader__text {
  margin: -0.75rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kp-bordeaux);
}

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

@keyframes kp-loader-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}