* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #0f0f0f;
  background: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 4%;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LUNA DESIGN SYSTEM — clases compartidas
   ============================================ */

/* Línea dorada divisora */
.linea-oro {
  width: 100%;
  height: 1px;
  background: #b8922e;
  opacity: 0.35;
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b8922e;
  margin-bottom: 0.6rem;
}

/* Navbar Luna */
.navbar {
  background: #0f0f0f;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  box-shadow: none;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-logo-nombre {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.navbar-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 300;
  color: #b8922e;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8f9299;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #ffffff;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  display: block;
  border-radius: 0;
}

/* Hero section */
.hero {
  background: #0f0f0f;
  padding: 5rem 2.5rem 4rem;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #8f9299;
  letter-spacing: 0.08em;
}

/* Sección genérica */
.seccion {
  background: #ffffff;
  padding: 5rem 0;
}

.sec-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sec-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #0f0f0f;
  margin: 0;
}

/* Formulario */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8f9299;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 10px 14px;
  border: 0.5px solid #e0e0e0;
  border-radius: 10px;
  background: #ffffff;
  color: #0f0f0f;
  transition: border-color 0.2s;
  appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #b8922e;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row select option {
  background: #141414;
  color: #ffffff;
}

.form-opciones {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.25rem;
}

.form-opcion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #3a3a3a;
  cursor: pointer;
}

.form-opcion input[type="checkbox"],
.form-opcion input[type="radio"] {
  accent-color: #b8922e;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.form-opcion input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 1.5px solid #d0d0d0;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-opcion input[type="radio"]:checked {
  border-color: #b8922e;
}

.form-opcion input[type="radio"]:checked::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8922e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-condicional {
  background: #f6f6f7;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-condicional-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5f5f5f;
  margin-bottom: 0.75rem;
}

.form-divider {
  height: 1px;
  background: #ececec;
  margin: 1.5rem 0;
}


.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #0f0f0f;
  margin-bottom: 0.75rem;
}

.form-success p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #5f5f5f;
}

/* CTA block */
.cta-block {
  background: #ffffff;
  padding: 5rem 2.5rem;
  text-align: center;
}

.cta-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #0f0f0f;
  margin: 0 0 0.75rem;
}

.cta-block p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #5f5f5f;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}


/* Footer Luna */
.footer {
  background: #0f0f0f;
  padding: 2.5rem 2.5rem;
  border-top: none;
}

.footer-nombre {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.btn-luna {
  display: inline-block;
  background: #b8922e;
  color: #0f0f0f;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.88rem 1.6rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-luna:hover {
  opacity: 0.85;
}

.btn-luna--full {
  width: 100%;
  display: block;
  text-align: center;
  box-sizing: border-box;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1.25rem;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #0f0f0f;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
    z-index: 99;
  }

  .navbar-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }

  .seccion {
    padding: 3.5rem 0;
  }

  .cta-block {
    padding: 3.5rem 1.25rem;
  }

  .footer {
    padding: 2rem 1.25rem;
  }
}

/* Tamaños de título globales */
.hero h1,
.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}

.section-title,
.hero h2,
section h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}

section h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-family: 'Playfair Display', serif;
}

/* Footer global */
.footer { background: #0f0f0f; color: #8f9299; padding: 1.5rem 4%; border-top: 1px solid #1e1e1e; }
.footer-wrap { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 1100px; margin: 0 auto; }
.footer-top, .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.9rem; }
.footer-nombre { font-family: "Playfair Display", serif; font-size: 0.95rem; color: #ffffff; letter-spacing: 0.04em; }

.footer{background:#0f0f0f;color:#8f9299;padding:1.5rem 4%;border-top:1px solid #1e1e1e}
.footer-wrap{display:flex;flex-direction:column;gap:1rem;width:100%;max-width:1100px;margin:0 auto}
.footer-top,.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.9rem}
.footer-links,.footer-legal{display:flex;gap:1.4rem;flex-wrap:wrap}
.footer-links a,.footer-legal a{text-decoration:none;text-transform:uppercase;letter-spacing:.15em;font-size:.5rem;color:#8f9299;font-weight:400}
.footer-legal a{color:#b8922e}
.footer-divider{height:1px;background:#1e1e1e}
.footer-copy{font-size:.49rem;color:#595959;letter-spacing:.12em;text-transform:uppercase}

.footer{margin-top:3rem}
