/* 2026-08-22: formulario público de reserva -- mismo lenguaje visual que
   contacto/contacto.css (.cf-*), con prefijo propio (rp-) para no acoplar
   este template a la app contacto. */
.rp-hero { text-align: center; padding: 3.5rem 1rem 2.5rem; }
.rp-hero-inner { max-width: 680px; margin: 0 auto; }
.rp-hero-title { font-size: 2.2rem; font-weight: 800; margin: 0 0 .5rem; color: #fff; }
.rp-hero-sub { opacity: .9; font-size: 1.05rem; margin: 0; }

.rp-section { padding: 3rem 1.5rem 4rem; background: var(--t-bg); }
.rp-inner { max-width: 640px; margin: 0 auto; }

.rp-card {
  background: var(--t-panel); border-radius: 14px;
  border: 1px solid var(--t-line); padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.rp-card-titulo { font-size: 1.4rem; font-weight: 800; margin: 0 0 .3rem; color: var(--t-text); }
.rp-card-sub { color: var(--t-muted); font-size: .92rem; margin: 0 0 1.6rem; }

.rp-form { display: flex; flex-direction: column; gap: 1.1rem; }
.rp-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rp-field { display: flex; flex-direction: column; gap: .3rem; }
.rp-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--t-muted); }
.rp-field input, .rp-field textarea {
  border: 1.5px solid var(--t-line); border-radius: 8px;
  padding: .65rem .9rem; font-size: .97rem; color: var(--t-text);
  background: var(--t-panel); transition: border-color .15s;
  font-family: inherit; width: 100%; box-sizing: border-box;
}
.rp-field input:focus, .rp-field textarea:focus { outline: none; border-color: var(--t-accent); }
.rp-error { color: #c0392b; font-size: .82rem; margin: 0; }
.rp-submit {
  background: var(--t-accent); color: #fff; border: none;
  padding: .85rem 2.2rem; border-radius: 8px; font-size: 1rem;
  font-weight: 700; cursor: pointer; align-self: flex-start;
  transition: background .15s;
}
.rp-submit:hover { background: #c45f25; }
.rp-legal { font-size: .8rem; color: var(--t-muted); margin: 0; }

.rp-nota-pendiente {
  background: #fbf0dd; border: 1px solid #f0c674; border-radius: 8px;
  padding: .9rem 1.1rem; margin-bottom: 1.4rem; font-size: .85rem;
  color: #7a4e08; line-height: 1.5;
}

.rp-limite-excedido { background: #fdf0ee; border: 1px solid #f0c4bc; border-radius: 8px; padding: .9rem 1.1rem; margin-bottom: 1.2rem; }
.rp-limite-excedido strong { color: #c0392b; display: block; margin-bottom: .3rem; font-size: .92rem; }
.rp-limite-excedido p { margin: 0; font-size: .85rem; color: var(--t-text, #2d2d2d); line-height: 1.5; }

@media (max-width: 600px) {
  .rp-row--2 { grid-template-columns: 1fr; }
}
