/* ── Clara Agüera Make Up · Estilos globales ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --rose:      #F2D6D6;
  --rose-soft: #F8ECEC;
  --rose-deep: #E8C4C4;
  --crimson:   #B80808;
  --crimson-d: #7A0606;
  --ink:       #1C0A0D;
  --ink-soft:  #4A2828;
  --white:     #FFFFFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--rose-soft);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--crimson);
  display: block;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 5vw; }

/* ── NAV ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 5vw;
  transition: background .5s ease, padding .5s ease, box-shadow .5s ease;
}
header.scrolled {
  background: rgba(248,236,236,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 5vw;
  box-shadow: 0 1px 0 rgba(184,8,8,0.1);
}
.logo-img { height: 38px; border-radius: 14px; }
.logo-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--crimson);
}
nav.links { display: flex; gap: 38px; align-items: center; }
nav.links a {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative; padding-bottom: 3px;
}
nav.links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--crimson);
  transition: width .3s ease;
}
nav.links a:hover::after { width: 100%; }
nav.links a.active::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--crimson);
  color: var(--crimson) !important;
  padding: 9px 24px; border-radius: 40px;
  font-size: 0.74rem; letter-spacing: 0.06em;
  transition: background .3s, color .3s;
  display: inline-flex; align-items: center; line-height: 1;
  padding-bottom: 9px;
}
.nav-cta:hover { background: var(--crimson); color: var(--white) !important; }
nav.links a.nav-cta::after { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { width: 22px; height: 1.5px; background: var(--crimson); transition: .3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: rgba(248,236,236,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Fraunces', serif; font-size: 2rem;
  font-style: italic; color: var(--ink); font-weight: 400;
}
.mobile-menu a:hover { color: var(--crimson); }

/* ── BOTONES ── */
.btn {
  padding: 15px 34px; border-radius: 40px;
  font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600;
  display: inline-block;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(28,10,13,0.22); }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-3px); }
.btn-crimson { background: var(--crimson); color: var(--white); }
.btn-crimson:hover { background: var(--crimson-d); transform: translateY(-2px); }
.btn-rose { background: var(--rose); color: var(--crimson-d); font-weight: 600; }
.btn-rose:hover { background: var(--rose-deep); transform: translateY(-2px); }

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

/* ── SECCIÓN GENÉRICA ── */
section { padding: 120px 0 100px; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 2.8rem); margin-top: 10px; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 0.95rem; font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(242,214,214,0.6);
  padding: 70px 0 28px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(242,214,214,0.1);
}
.footer-brand p { font-size: 0.84rem; color: rgba(242,214,214,0.5); max-width: 240px; font-weight: 300; margin-top: 12px; }
.footer-cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: 'Manrope'; font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 18px; font-weight: 500;
}
.footer-col a, .footer-col span {
  display: block; font-size: 0.84rem;
  color: rgba(242,214,214,0.55); margin-bottom: 10px; font-weight: 300;
}
.footer-col a:hover { color: var(--rose-soft); }
.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 36px; height: 36px; border: 1px solid rgba(242,214,214,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s;
}
.social-row a svg { width: 15px; height: 15px; stroke: rgba(242,214,214,0.6); fill: none; stroke-width: 1.6; }
.social-row a:hover { background: var(--rose); border-color: var(--rose); }
.social-row a:hover svg { stroke: var(--crimson-d); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding-top: 24px;
  font-size: 0.72rem; color: rgba(242,214,214,0.35); font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav.links { display: none; }
  .burger { display: flex; }
}

@media (max-width: 760px) {
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-cols { gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

@media (max-width: 480px) {
  .footer-cols { flex-direction: column; gap: 28px; }
  .btn { padding: 13px 26px; font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
