/* Blanco Belén — landing independiente (paleta manual de marca) */
:root {
  --bb-primary: #5f1c4b;
  --bb-secondary: #83c7b4;
  --bb-bg: #f8f5f2;
  --bb-text: #333;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--bb-text);
  background: var(--bb-bg);
  background-image:
    radial-gradient(ellipse 120% 90% at 50% -15%, rgba(255, 255, 255, 0.95), transparent),
    linear-gradient(180deg, rgba(131, 199, 180, 0.14) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 1rem;
  text-align: center;
}

.logo {
  display: block;
  max-width: min(280px, 75vw);
  height: auto;
  margin: 0 auto 1.25rem;
}

.wordmark {
  font-weight: 600;
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  color: var(--bb-primary);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.lead {
  font-weight: 400;
  font-size: 1.05rem;
  color: #555;
  max-width: 26rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
}

.accent-bar {
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--bb-secondary), var(--bb-primary));
  border-radius: 2px;
  margin: 0 auto 1.75rem;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(95, 28, 75, 0.18);
}

.social .ig {
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social .wa {
  color: #fff;
  background: #25d366;
}

footer {
  padding: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}
