/* =========================
   PRIVÉ ROSÉ · STYLE
   Erotismo elegante · Privado
   ========================= */

/* ---- Variables ---- */
:root {
  --bg: #0e0e0e;          /* negro profundo */
  --rose: #c89aa6;        /* rosa empolvado */
  --rose-soft: #e2b7c1;   /* rosa suave hover */
  --text: #f3e9e6;        /* blanco cálido */
  --muted: #9a8f8b;       /* gris rosado */
}

/* ---- Reset suave ---- */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* ---- Base ---- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Contenedor principal ---- */
.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

/* ---- LOGO HORIZONTAL (844×298 original) ---- */
.logo-horizontal{
  display: block;
  width: clamp(180px, 36vw, 260px);  /* nunca más de 260px */
  height: auto;
  max-height: 90px;                  /* límite extra de altura */
  margin: 0 auto 1.8rem auto;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.55));
  user-select: none;
  -webkit-user-drag: none;
  object-fit: contain;
}

/* ---- Títulos (para otras páginas) ---- */
h1 {
  font-size: 3rem;
  font-weight: normal;
  margin: 0 0 0.5rem 0;
  color: var(--rose);
}

/* ---- Subtítulo ---- */
.subtitle {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

/* ---- Botón principal ---- */
.btn {
  display: inline-block;
  text-decoration: none;
  color: var(--bg);
  background: var(--rose);
  padding: 0.9rem 2.4rem;
  border-radius: 40px;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--rose-soft);
}

/* ---- Texto discreto ---- */
.small {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 2rem;
}

/* =========================
   ACCESO / FORMULARIOS
   ========================= */

.card {
  max-width: 420px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
}

.card h2 {
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--rose);
}

input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1rem;
}

input::placeholder {
  color: var(--muted);
}

input:focus {
  outline: none;
  border-color: var(--rose);
}

/* ---- Mensaje de error ---- */
.error {
  color: #e07a7a;
  font-size: 0.85rem;
  margin-top: 1rem;
  display: none;
}

/* =========================
   ZONA PRIVADA
   ========================= */

.private {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.private h2 {
  color: var(--rose);
  font-weight: normal;
  margin-bottom: 1rem;
}

.private p {
  line-height: 1.6;
  opacity: 0.9;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 600px) {
  .logo-horizontal{
    width: clamp(160px, 60vw, 220px);
    max-height: 80px;
    margin-bottom: 1.6rem;
  }

  h1 {
    font-size: 2.4rem;
  }

  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 0.8rem 2rem;
  }
}