/* inner.css — estilos para páginas internas */
.page-header {
  background: #0d0d0d;
  padding: 52px 0 32px;
  text-align: center;
}
.page-header .eyebrow { color: #c9922a; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-top: 8px;
  line-height: 1.1;
}

/* Sección contenido genérico */
.section-white { background: #fff; padding: 72px 0; }
.section-grey  { background: #f7f7f7; padding: 72px 0; }

/* Tarifario completo (página interna) */
.tar-section { margin-bottom: 48px; }
.tar-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.tar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
}
.tar-row {
  display: flex; justify-content: space-between;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12.5px;
}
.tar-row:last-child { border-bottom: none; }
.tar-row:hover { background: rgba(255,255,255,0.03); }
.tar-row .d { color: rgba(255,255,255,0.75); }
.tar-row .p { color: #fff; font-weight: 600; white-space: nowrap; }
.tar-col { display: flex; flex-direction: column; }
.tar-col + .tar-col { border-left: 1px solid rgba(255,255,255,0.07); }

/* Contacto form */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: #333; margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #ddd; border-radius: 4px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: #222; background: #fff;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #c9922a; }
.form-group textarea { min-height: 130px; resize: vertical; }

@media (max-width: 860px) {
  .tar-grid { grid-template-columns: 1fr; }
  .tar-col + .tar-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
}
