/* ==========================================================================
   AGENDA POUSADA NA PRAIA & CENTRAL DE AGENDAS CSS
   Mapa visual de quartos, chalés da praia, status de ocupação e calendário
   ========================================================================== */

/* 1. MAPA DE QUARTOS DA POUSADA NA PRAIA */
.pousada-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.room-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  padding: 18px;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.room-card.status-disponivel {
  border-color: #10b981;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, var(--bg-card) 100%);
}
.room-card.status-ocupado {
  border-color: #ef4444;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, var(--bg-card) 100%);
}
.room-card.status-reservado {
  border-color: #f59e0b;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, var(--bg-card) 100%);
}
.room-card.status-manutencao {
  border-color: #64748b;
  background: linear-gradient(180deg, rgba(100, 116, 139, 0.05) 0%, var(--bg-card) 100%);
  opacity: 0.85;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.room-title h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}
.room-title span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.room-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.amenity-pill {
  font-size: 11px;
  background: var(--bg-muted);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.room-pricing {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.room-price-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--stp-paper-green);
  font-family: 'Outfit', sans-serif;
}
.room-price-val small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.room-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

/* 2. AGENDA CALENDAR VIEW */
.calendar-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-month-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
}

.booking-summary-box {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(19, 64, 116, 0.08));
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-top: 16px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.booking-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 800;
  color: var(--stp-navy);
  border-top: 1px solid rgba(0, 180, 216, 0.3);
  padding-top: 8px;
  margin-top: 8px;
}

/* 3. TIMELINE DE AGENDAMENTOS JURÍDICOS E ATENDIMENTO */
.agenda-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.timeline-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: all var(--transition-fast);
}
.timeline-card:hover {
  border-color: var(--stp-blue-accent);
  transform: translateX(4px);
}

.timeline-time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding-right: 16px;
  border-right: 2px solid var(--border-color);
}
.timeline-time-box .time-hour {
  font-size: 16px;
  font-weight: 800;
  color: var(--stp-blue-primary);
}
.timeline-time-box .time-date {
  font-size: 11px;
  color: var(--text-muted);
}

.timeline-content {
  flex: 1;
  padding: 0 16px;
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.timeline-content p {
  font-size: 12px;
  color: var(--text-muted);
}
