:root {
  --brand: #d41568;
  --brand-dark: #aa0d50;
  --ink: #2c2230;
  --muted: #665b66;
  --paper: rgba(255, 255, 255, .94);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #553b48 url("centro-fondo.jpg") center 43% / cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(42, 24, 34, .64), rgba(118, 20, 65, .38));
  backdrop-filter: blur(2px);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 52px);
}

.card {
  width: min(100%, 620px);
  padding: clamp(24px, 5vw, 46px);
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(31, 14, 24, .32);
  backdrop-filter: blur(15px);
}

.logo {
  display: block;
  width: min(210px, 48vw);
  height: auto;
  margin: -12px auto 8px;
  transform: rotate(-1deg);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.03;
}

.intro {
  max-width: 490px;
  margin: 16px auto 26px;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.12rem);
  line-height: 1.65;
}

.contact-form { text-align: left; }
.contact-form > label:first-child { display: block; margin-bottom: 8px; font-weight: 750; }

.email-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; }

input[type="email"] {
  min-width: 0;
  height: 51px;
  padding: 0 16px;
  border: 1px solid #d8cdd3;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

input[type="email"]:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(212,21,104,.13); }

button, .action {
  min-height: 51px;
  border: 0;
  border-radius: 13px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

button {
  padding: 0 22px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(212,21,104,.2);
}

button:hover, .action:hover { transform: translateY(-2px); }
button:hover { background: var(--brand-dark); }
button:disabled { opacity: .65; cursor: wait; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.35;
}

.consent input { margin: 2px 0 0; accent-color: var(--brand); }
a { color: var(--brand-dark); }
.honey { position: absolute; left: -9999px; }
.form-status { min-height: 20px; margin: 8px 0 0; color: var(--brand-dark); font-size: .85rem; text-align: center; }

.actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 15px; }

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  text-decoration: none;
}

.action-call { color: #fff; background: var(--brand); }
.action-whatsapp { color: var(--brand-dark); background: #fff; border: 2px solid var(--brand); }
.action-call:hover { background: var(--brand-dark); box-shadow: 0 8px 18px rgba(212,21,104,.2); }
.action-whatsapp:hover { background: #fff5f9; }
.phone { display: inline-block; margin-top: 13px; font-weight: 800; text-decoration: none; letter-spacing: .04em; }

.privacy { margin-top: 20px; padding-top: 14px; border-top: 1px solid #e7dde2; color: var(--muted); font-size: .72rem; line-height: 1.5; text-align: left; }
.privacy summary { cursor: pointer; text-align: center; }
.privacy p { margin: 10px 0 0; }

@media (max-width: 560px) {
  body { background-attachment: scroll; background-position: 66% center; }
  body::before { background: rgba(61, 30, 46, .52); }
  .page { padding: 14px; }
  .card { padding: 24px 19px; border-radius: 22px; }
  .logo { width: 158px; margin-top: -10px; }
  .email-row, .actions { grid-template-columns: 1fr; }
  .email-row button { min-height: 48px; }
  .intro { margin-bottom: 20px; }
}

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