/* Sidebar derecho – Widget climático premium */

.sidebar-right {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100vh;
    background: #0f172a;
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.25);
    z-index: 50;
  }
  
  /* HEADER */
  .sidebar-right-header {
    margin-bottom: 24px;
  }
  
  .sidebar-right-title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #38bdf8;
  }
  
  .sidebar-right-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 4px;
  }
  
  /* CONTENIDO PRINCIPAL */
  .sidebar-right-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
  }
  
  /* BLOQUES / TARJETAS */
  .sidebar-right-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148,163,184,0.15);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
  
  /* LOTTIE / ANIMACIÓN */
  .sidebar-weather-anim {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
  }
  
  .sidebar-weather-anim > div {
    width: 200px;
    height: 200px;
  }
  
  /* MÉTRICAS */
  .sidebar-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .sidebar-metric {
    background: rgba(56,189,248,0.08);
    border: 1px solid rgba(56,189,248,0.15);
    border-radius: 10px;
    padding: 12px;
  }
  
  .sidebar-metric-label {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 6px;
  }
  
  .sidebar-metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #e2e8f0;
  }
  
  .sidebar-metric-unit {
    font-size: 0.8rem;
    margin-left: 4px;
    color: #cbd5e1;
  }
  
  /* ESTADO CLIMÁTICO */
  .sidebar-weather-state {
    margin-top: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #38bdf8;
    text-align: center;
  }
  
  /* FOOTER */
  .sidebar-right-footer {
    margin-top: auto;
    padding-top: 16px;
    font-size: 0.75rem;
    color: #94a3b8;
    border-top: 1px solid rgba(148,163,184,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* PILL / BADGE */
  .sidebar-pill {
    background: rgba(56,189,248,0.2);
    border: 1px solid rgba(56,189,248,0.35);
    color: #e2e8f0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
  }
  
  /* AJUSTE DEL CONTENIDO CENTRAL */
  .main-content.with-right-sidebar {
    margin-right: 280px;
  }
  