/* ══════════════════════════════════════════════════
   LadyBox — styles.css
   ══════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --rose:       #E8437A;
  --rose-light: #F2799D;
  --rose-pale:  #FDEEF4;
  --coral:      #F4735A;
  --gold:       #D4A853;
  --gold-light: #F5E4BC;
  --cream:      #FDF8F2;
  --ink:        #1C1010;
  --ink-soft:   #4A2E35;
  --muted:      #9E7A82;
  --white:      #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --r-sm:   .5rem;
  --r-md:   1.2rem;
  --r-lg:   2.5rem;
  --r-full: 9999px;

  --shadow-card: 0 8px 40px rgba(232, 67, 122, .10);
  --shadow-btn:  0 4px 24px rgba(232, 67, 122, .35);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── UTILITIES ──────────────────────────────────── */
.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: #d0315f;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 67, 122, .45);
}

.btn--secondary {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}

.btn--secondary:hover {
  background: var(--rose-pale);
  transform: translateY(-2px);
}

.btn--large { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn--small { padding: .55rem 1.3rem;  font-size: .82rem; }

/* ── HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(253, 248, 242, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 67, 122, .1);
  transition: box-shadow .3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(28, 16, 16, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--rose);
  letter-spacing: -.01em;
}

.logo span { color: var(--ink); }

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

.nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.nav a:hover            { color: var(--rose); }
.nav a:hover::after     { transform: scaleX(1); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  padding-top: 100px;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* decorative blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242, 121, 157, .22) 0%, transparent 70%);
  top: -120px; right: -160px;
}

.hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, .18) 0%, transparent 70%);
  bottom: 0; left: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 5rem 4rem;
  position: relative;
  z-index: 1;
}

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

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.02em;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--rose);
}

.lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
}

/* trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-item svg { color: var(--rose); flex-shrink: 0; }

/* hero visual / carousel */
.hero-visual { position: relative; }

.product-carousel {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(232, 67, 122, .18), 0 4px 20px rgba(28, 16, 16, .08);
  position: relative;
  background: var(--rose-pale);
}

.product-carousel::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--r-lg) + 3px);
  background: linear-gradient(135deg, var(--rose-light), var(--gold), var(--coral));
  z-index: -1;
}

.product-carousel__viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
}

.product-carousel__track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.product-carousel__slide {
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
}

.product-carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-carousel__toolbar {
  position: absolute;
  bottom: 1.2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(253, 248, 242, .88);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: .45rem .9rem;
}

.product-carousel__btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rose);
  display: grid;
  place-items: center;
  padding: .25rem;
  border-radius: 50%;
  transition: background .2s;
}

.product-carousel__btn:hover { background: var(--rose-pale); }

.product-carousel__dots { display: flex; gap: .4rem; }

.product-carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-light);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.product-carousel__dot.active {
  background: var(--rose);
  transform: scale(1.3);
}

/* floating badges */
.hero-badge {
  position: absolute;
  top: -1rem; left: -1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(232, 67, 122, .12);
}

.hero-badge .badge-icon {
  width: 36px; height: 36px;
  background: var(--rose-pale);
  border-radius: .6rem;
  display: grid;
  place-items: center;
  color: var(--rose);
}

.badge-title {
  display: block;
  font-size: .88rem;
  color: var(--ink);
}

.hero-badge .badge-sub {
  font-size: .78rem;
  color: var(--muted);
}

.hero-badge2 {
  position: absolute;
  bottom: 2.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  border-radius: var(--r-md);
  padding: .9rem 1.2rem;
  box-shadow: 0 8px 30px rgba(232, 67, 122, .3);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  animation: float 4s ease-in-out infinite .8s;
}

.hero-badge2 .badge-sub {
  font-size: .78rem;
  opacity: .85;
}

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

/* ── SECTIONS ───────────────────────────────────── */
.section          { padding-block: 6rem; }
.section--alt     { background: var(--white); }
.section--rose    { background: linear-gradient(135deg, #FFF0F5 0%, var(--cream) 100%); }

.section-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}

.section-head h2 em { font-style: italic; color: var(--rose); }
.section-head p { font-size: 1rem; color: var(--ink-soft); line-height: 1.75; }

/* ── SERVICES GRID ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  border: 1.5px solid rgba(232, 67, 122, .1);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.section--alt .service-card { background: var(--cream); }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--coral));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(232, 67, 122, .25);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: 1rem;
  background: var(--rose-pale);
  display: grid;
  place-items: center;
  color: var(--rose);
  margin-bottom: 1.3rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .65rem;
  color: var(--ink);
}

.service-card p {
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── COTIZAR ────────────────────────────────────── */
.cotizar-wrap {
  background: linear-gradient(135deg, var(--rose) 0%, var(--coral) 100%);
  border-radius: 2rem;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(232, 67, 122, .3);
}

.cotizar-wrap::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  top: -160px; right: -100px;
  pointer-events: none;
}

.cotizar-wrap::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  bottom: -100px; left: -60px;
  pointer-events: none;
}

.cotizar-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cotizar-wrap p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.05rem;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}

.btn--wa {
  background: var(--white);
  color: var(--rose);
  box-shadow: 0 4px 24px rgba(28, 16, 16, .2);
  position: relative;
  z-index: 1;
}

.btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(28, 16, 16, .25);
}

.cotizar-hint {
  margin-top: 1.2rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  position: relative;
  z-index: 1;
}

/* ── EMPRESA ────────────────────────────────────── */
.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.empresa-visual { position: relative; }

.empresa-visual-inner {
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(232,67,122,.15), 0 4px 20px rgba(28,16,16,.08);
  position: relative;
}

.empresa-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
  border-radius: var(--r-lg);
}

.empresa-visual-inner:hover img {
  transform: scale(1.04);
}

.empresa-deco-text {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: rgba(232, 67, 122, .12);
  line-height: 1;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.empresa-year-badge {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(232, 67, 122, .12);
  text-align: center;
}

.empresa-year-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--rose);
  line-height: 1;
}

.empresa-year-badge span {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

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

.empresa-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}

.empresa-copy h2 em    { font-style: italic; color: var(--rose); }
.empresa-copy p        { font-size: .98rem; color: var(--ink-soft); line-height: 1.8; }
.empresa-copy strong   { color: var(--ink); font-weight: 600; }
.empresa-cta           { margin-top: .5rem; }

/* ── CONTACT ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1.5px solid rgba(232, 67, 122, .1);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

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

.contact-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: grid;
  place-items: center;
  color: var(--rose);
}

.contact-card .c-name   { font-weight: 700; font-size: 1rem; color: var(--ink); }
.contact-card .c-handle { font-size: .85rem; color: var(--muted); }

/* ── DIALOG ─────────────────────────────────────── */

/* Backdrop */
.wa-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 18, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
}

.wa-backdrop[hidden] { display: none; }

/* Modal — siempre centrado en el viewport */
.wa-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;

  background: var(--white);
  border-radius: var(--r-lg);
  width: 92vw;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(15, 10, 18, .3);
  border: 1px solid rgba(232, 67, 122, .12);

  animation: dialog-in .28s cubic-bezier(.34, 1.56, .64, 1) both;
}

.wa-overlay[hidden] { display: none; }

@keyframes dialog-in {
  from { opacity: 0; transform: translate(-50%, -48%) scale(.94); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.wa-dialog__inner { padding: 2.5rem 2rem; }

.wa-dialog__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.wa-dialog__body p {
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: .75rem;
}

.wa-dialog__actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.8rem;
  justify-content: flex-end;
}

/* ── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding-block: 3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
}

.footer-brand strong { color: var(--rose-light); }

.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.footer-nav a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
  font-weight: 500;
}

.footer-nav a:hover { color: var(--rose-light); }

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible        { opacity: 1; transform: none; }
.reveal-delay-1        { transition-delay: .1s; }
.reveal-delay-2        { transition-delay: .2s; }
.reveal-delay-3        { transition-delay: .3s; }
.reveal-delay-4        { transition-delay: .4s; }

/* ── PAGE LOAD ANIMATIONS ───────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}

.hero-copy .eyebrow      { animation: fadeUp .7s ease both; }
.hero-copy h1            { animation: fadeUp .7s ease .1s both; }
.hero-copy .lead         { animation: fadeUp .7s ease .2s both; }
.hero-copy .hero-actions { animation: fadeUp .7s ease .3s both; }
.hero-copy .trust-strip  { animation: fadeUp .7s ease .4s both; }
.hero-visual             { animation: fadeUp .8s ease .25s both; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid,
  .empresa-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy          { order: 1; }
  .hero-visual        { order: 0; max-width: 420px; margin-inline: auto; }
  .empresa-visual     { display: none; }
  .hero-badge,
  .hero-badge2        { display: none; }
  .nav                { display: none; }
  .cotizar-wrap       { padding: 3rem 1.8rem; }
}

@media (max-width: 600px) {
  .section            { padding-block: 4rem; }
  .services-grid      { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════
   FONDO HOJAS TROPICALES
   ══════════════════════════════════════════════════ */

/*
  La imagen de fondo se coloca en images/bg-leaves.png
  (la imagen que subiste — hojas tropicales blancas/grises)
  Se aplica como fondo fijo en todo el sitio, muy sutil.
*/

body {
  background-image: url('../images/bg-leaves.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay para que las hojas queden muy tenues
   y no compitan con el contenido */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(253, 248, 242, .82);
  pointer-events: none;
  z-index: -1;
}

/* Todo el contenido encima del overlay */
main,
.wa-dialog,
.site-footer { position: relative; z-index: 1; }
/* Header siempre encima de todo */
.site-header { z-index: 10000; }

/* Secciones blancas y rose con overlay propio
   para que las hojas sean aún más sutiles en esas zonas */
.section--alt {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .80);
}

.section--rose {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,240,245,.88) 0%, rgba(253,248,242,.88) 100%);
}

/* Ola decorativa inferior del hero */
/* Hero wave — ver animations.css */

/* Puntos decorativos — hero */
.hero-dots {
  position: absolute;
  top: 15%; right: 8%;
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 10px;
  pointer-events: none;
  z-index: 0;
  opacity: .3;
}

.hero-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
  display: block;
}


/* ══════════════════════════════════════════════════
   DARK MODE
   ══════════════════════════════════════════════════ */

/* Botón toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,67,122,.25);
  background: var(--rose-pale);
  color: var(--rose);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: rotate(20deg) scale(1.05);
}

/* Por defecto muestra sol, oculta luna */
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun  { display: block; }

/* En modo oscuro muestra luna, oculta sol */
[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* ── Variables modo oscuro ── */
[data-theme="dark"] {
  /* Fondos: azul pizarra profundo */
  --cream:      #0F1218;
  --white:      #161B24;

  /* Textos */
  --ink:        #F0EBF4;
  --ink-soft:   #B8A9C4;
  --muted:      #7A6B8A;

  /* Rosa/acento — se mantiene igual para consistencia de marca */
  --rose:       #E8437A;
  --rose-light: #F2799D;
  --rose-pale:  #1E1028;

  /* Dorado más cálido en dark */
  --gold:       #D4A853;
  --gold-light: #1C1808;
}

/* Header en dark */
[data-theme="dark"] .site-header {
  background: rgba(15, 18, 24, .95);
  border-bottom-color: rgba(232, 67, 122, .18);
}

/* Fondo body en dark */
[data-theme="dark"] body {
  background-color: var(--cream);
}

[data-theme="dark"] body::before {
  background: rgba(15, 18, 24, .90);
}

/* Secciones en dark */
[data-theme="dark"] .section--alt {
  background: rgba(22, 27, 36, .92);
}

[data-theme="dark"] .section--rose {
  background: linear-gradient(135deg, rgba(18, 10, 28, .95) 0%, rgba(15, 18, 24, .95) 100%);
}

/* Hero en dark */
[data-theme="dark"] .hero {
  background: var(--cream);
}

[data-theme="dark"] .hero::before {
  background: radial-gradient(circle, rgba(232, 67, 122, .12) 0%, transparent 70%);
}

[data-theme="dark"] .hero::after {
  background: radial-gradient(circle, rgba(212, 168, 83, .10) 0%, transparent 70%);
}

/* Cards en dark */
[data-theme="dark"] .service-card {
  background: #1E2330;
  border-color: rgba(232, 67, 122, .12);
}

[data-theme="dark"] .section--alt .service-card {
  background: #1A1F2C;
}

[data-theme="dark"] .service-card:hover {
  border-color: rgba(232, 67, 122, .35);
  box-shadow: 0 8px 40px rgba(232, 67, 122, .12);
}

[data-theme="dark"] .contact-card {
  background: #1E2330;
  border-color: rgba(232, 67, 122, .12);
}

[data-theme="dark"] .contact-card:hover {
  box-shadow: 0 8px 40px rgba(232, 67, 122, .12);
}

/* Carrusel en dark */
[data-theme="dark"] .product-carousel__toolbar {
  background: rgba(15, 18, 24, .90);
}

/* Dialog en dark */
[data-theme="dark"] .wa-overlay {
  background: #1E2330;
  border-color: rgba(232, 67, 122, .18);
}

[data-theme="dark"] .wa-backdrop {
  background: rgba(5, 5, 10, .7);
}

/* Badge flotante hero2 — mantiene gradiente rose */
[data-theme="dark"] .hero-badge2 {
  box-shadow: 0 8px 30px rgba(232, 67, 122, .25);
}

/* Footer en dark */
[data-theme="dark"] .site-footer {
  background: #080A0E;
}

[data-theme="dark"] .footer-nav a:hover { color: var(--rose-light); }

/* Empresa visual en dark */
[data-theme="dark"] .empresa-year-badge {
  background: #1E2330;
  border-color: rgba(232, 67, 122, .18);
}

/* Cotizar wrap — mantiene gradiente, ajuste sombra */
[data-theme="dark"] .cotizar-wrap {
  box-shadow: 0 20px 60px rgba(232, 67, 122, .18);
}

/* Toggle botón en dark */
[data-theme="dark"] .theme-toggle {
  background: #1E2330;
  border-color: rgba(232, 67, 122, .3);
  color: var(--rose-light);
}

[data-theme="dark"] .theme-toggle:hover {
  background: var(--rose);
  color: var(--white);
}
/* Transición suave al cambiar tema */
body,
.site-header,
.service-card,
.contact-card,
.hero-badge,
.hero-badge2,
.wa-dialog,
.site-footer,
.section--alt,
.section--rose,
.product-carousel__toolbar,
.empresa-year-badge {
  transition: background .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
}


/* ── OLA WAVE PATH COLOR ────────────────────────── */
/* Se ajusta automáticamente al tema */
.wave-path {
  fill: var(--white);
  transition: fill .35s ease;
}

[data-theme="dark"] .wave-path {
  fill: #161B24;
}
