/* ═══════════════════════════════════════
   BOUDOIR LEÓN — CSS PRINCIPAL
   Colores: #a10636 · #f8b449 · #090f38
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --vino:        #a10636;
  --vino-osc:    #870529;
  --vino-prof:   #5c0320;
  --vino-claro:  #c4083f;
  --ambar:       #f8b449;
  --ambar-claro: #fac76a;
  --azul:        #090f38;
  --azul-med:    #0d1548;
  --crema:       #f7f0e8;
  --crema-osc:   #ede4d8;
  --blanco:      #ffffff;
  --texto:       #1a0810;
  --texto-suave: #5a3040;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 300; background: var(--crema); color: var(--texto); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(9,15,56,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.1rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--crema);
}
.nav-logo span { color: var(--ambar); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(247,240,232,.75); font-weight: 500; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ambar); }
.nav-cta {
  background: var(--vino); color: var(--crema);
  padding: .55rem 1.4rem; font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
  transition: background .25s; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--vino-claro); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--crema); transition: all .3s;
}

/* ── BOTONES ── */
.btn {
  display: inline-block; font-family: var(--sans);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; padding: 1rem 2.2rem; transition: all .25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--vino); color: var(--crema); border: 2px solid var(--vino); }
.btn-primary:hover { background: var(--vino-claro); border-color: var(--vino-claro); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--crema); border: 2px solid rgba(247,240,232,.4); }
.btn-outline:hover { border-color: var(--ambar); color: var(--ambar); }
.btn-ambar { background: var(--ambar); color: var(--azul); border: 2px solid var(--ambar); }
.btn-ambar:hover { background: var(--ambar-claro); }
.btn-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; color: #25d366;
  border: 2px solid rgba(37,211,102,.4); padding: .9rem 1.8rem;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
  transition: all .25s; font-family: var(--sans);
}
.btn-wa:hover { background: rgba(37,211,102,.08); border-color: #25d366; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .63rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ambar); margin-bottom: 1rem; font-weight: 500;
}
.section-label::before { content:''; width:28px; height:2px; background:var(--ambar); display:block; }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

/* ── FOOTER ── */
.footer {
  background: var(--azul); border-top: 3px solid var(--vino);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--serif); font-size: 1.15rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--crema); display: block; margin-bottom: .4rem;
}
.footer-logo span { color: var(--ambar); }
.footer-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: .88rem; color: rgba(247,240,232,.4);
  line-height: 1.65; margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(247,240,232,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,240,232,.6); font-size: .65rem; font-weight: 600;
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--ambar); color: var(--ambar); }
.footer-col h4 {
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ambar); margin-bottom: 1.2rem; font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: rgba(247,240,232,.5); font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--ambar); }
.footer-contact { font-size: .85rem; color: rgba(247,240,232,.5); margin-bottom: .4rem; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(247,240,232,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .68rem; color: rgba(247,240,232,.25); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .68rem; color: rgba(247,240,232,.25); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(247,240,232,.6); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--azul); border-top: 2px solid var(--ambar);
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  font-size: .82rem; color: rgba(247,240,232,.75);
  line-height: 1.6; flex: 1;
}
.cookie-banner p a { color: var(--ambar); text-decoration: underline; }
.cookie-btns { display: flex; gap: .8rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--ambar); color: var(--azul);
  padding: .55rem 1.3rem; font-family: var(--sans);
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; border: none; cursor: pointer; transition: background .2s;
}
.cookie-accept:hover { background: var(--ambar-claro); }
.cookie-reject {
  background: transparent; color: rgba(247,240,232,.5);
  padding: .55rem 1rem; font-family: var(--sans);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 400; border: 1px solid rgba(247,240,232,.2); cursor: pointer;
  transition: all .2s;
}
.cookie-reject:hover { border-color: rgba(247,240,232,.5); color: rgba(247,240,232,.8); }

/* ── PÁGINAS LEGALES ── */
.legal-hero {
  background: var(--vino-prof); padding: 9rem 3rem 4rem;
  text-align: center;
}
.legal-hero h1 {
  font-family: var(--serif); font-size: clamp(2rem,5vw,3.5rem);
  color: var(--crema); font-weight: 700; margin-bottom: .8rem;
}
.legal-hero p {
  font-family: var(--serif); font-style: italic;
  color: rgba(247,240,232,.6); font-size: 1rem;
}
.legal-content {
  max-width: 860px; margin: 0 auto; padding: 4rem 3rem 6rem;
  background: var(--blanco);
}
.legal-content h2 {
  font-family: var(--serif); font-size: 1.5rem; color: var(--vino-prof);
  font-weight: 700; margin: 2.5rem 0 .8rem; padding-bottom: .4rem;
  border-bottom: 2px solid var(--ambar);
}
.legal-content h3 {
  font-family: var(--serif); font-size: 1.15rem; color: var(--azul);
  font-weight: 600; margin: 1.8rem 0 .5rem;
}
.legal-content p {
  font-size: .95rem; line-height: 1.85; color: #333;
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 1.5rem; margin-bottom: 1rem;
}
.legal-content ul li { font-size: .95rem; line-height: 1.8; color: #333; margin-bottom: .4rem; }
.legal-content a { color: var(--vino); text-decoration: underline; }
.legal-content strong { font-weight: 600; color: var(--vino-prof); }
.legal-updated {
  display: inline-block; background: rgba(161,6,54,.08);
  border-left: 3px solid var(--vino); padding: .6rem 1rem;
  font-size: .82rem; color: var(--texto-suave); margin-bottom: 2rem;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(9,15,56,.98); padding: 2rem;
    gap: 1.5rem; z-index: 99;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-content { padding: 2rem 1.5rem 4rem; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-btns { width: 100%; justify-content: center; }
}
