/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Estas variables ahora se redefinen en .gw-container según el clima */
  --divider:        rgba(255,255,255,0.15);
  --card-bg:        rgba(255,255,255,0.1);
  --container-bg:   rgba(28,30,34,0.82);
}

/* ─── FONDOS DINÁMICOS DEL CIELO ─── */
body {
  font-family: 'Roboto', 'Arial', sans-serif;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 0 60px;
  background-color: #f5f5f5; /* Light background for the page outside the card */
  overflow-x: hidden;
}

/* ─── CANVAS DE EFECTOS (lluvia, estrellas) ─── */
.weather-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ─── ESCENA FINCA (fondo completo de la tarjeta) ─── */
.scene-backdrop {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
.scene-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.scene-backdrop-fade {
  position: absolute;
  inset: 0;
  background: var(--container-bg);
  /* Ya usamos colores rgba en --container-bg, no hace falta opacity general */
  transition: background-color 1s ease;
}

/* Colores por defecto (noche/oscuro) */
.gw-container {
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.7);
  --text-blue:      #8ab4f8;
  --tab-accent:     #fbbc04;
  --temp-color:     #ffffff; /* Temp color default */

  background: var(--container-bg);
  width: 100%;
  max-width: 660px;
  padding: 20px 24px 80px 24px; /* Reducido para que la tarjeta sea más corta */
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 10;
  align-self: flex-start;
  overflow: hidden;
  transition: background-color 1s ease, color 1s ease;
  color: var(--text-primary);
}
/* Asegurar que el texto esté por encima, sin romper absolute */
.gw-container > *:not(.weather-canvas):not(.scene-backdrop) {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Sombra para que se lea mejor siempre */
}

/* Colores de la tarjeta según el clima */
.gw-container.sky-sunny  { 
  --container-bg: rgba(78, 168, 222, 0.6); 
  --text-primary: #ffffff;
  --text-secondary: #0b3954; 
  --tab-accent: #fbc02d; 
  --temp-color: #fdd835; 
}
.gw-container.sky-cloudy { 
  --container-bg: rgba(108, 122, 137, 0.75);
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0; 
  --tab-accent: #f5b041;
  --temp-color: #f2f3f4; 
}
.gw-container.sky-rainy  { 
  --container-bg: rgba(52, 73, 94, 0.85); 
  --text-primary: #ffffff;
  --text-secondary: #aed6f1; 
  --tab-accent: #f39c12; 
  --temp-color: #85c1e9; 
}
.gw-container.sky-night  { 
  --container-bg: rgba(26, 37, 48, 0.85);
  --text-primary: #ffffff;
  --text-secondary: #d5d8dc; 
  --tab-accent: #f1c40f;
  --temp-color: #ffffff; 
}

@media (max-width: 700px) {
  .gw-container { border-radius: 12px; }
  body { padding: 12px 8px; }
}

/* ─── CABECERA ─── */
.gw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 8px;
}
.gw-location {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gw-location-dot { color: var(--text-blue); font-size: 10px; }
.gw-location-text { font-weight: 500; }
.gw-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.gw-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: #fbbc04;
}
.gw-status-dot.online   { background-color: #81c995; }
.gw-status-dot.offline  { background-color: #f28b82; }
.gw-status-dot.estimado { background-color: #fbbc04; }
.gw-last-update { font-size: 12px; color: var(--text-secondary); }

/* ─── TOGGLES DE PREFERENCIAS ─── */
.gw-prefs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.gw-toggle-group {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
}
.gw-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 11px;
  font-family: inherit;
  padding: 3px 9px;
  cursor: pointer;
  transition: all 0.2s;
}
.gw-toggle-btn.active {
  background: rgba(251,188,4,0.2);
  color: var(--tab-accent);
  font-weight: 500;
}

/* ─── CLIMA ACTUAL ─── */
.gw-main-weather {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.gw-main-left { display: flex; align-items: center; gap: 12px; }
.gw-huge-icon { width: 76px; height: 76px; object-fit: contain; }
.gw-temp-box { display: flex; align-items: flex-start; }
.gw-temp-value {
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--temp-color);
  transition: color 1s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2); /* Resalta más */
}
.gw-temp-units {
  display: flex;
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}
.gw-unit {
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.2s;
}
.gw-unit:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.gw-unit.active { color: var(--text-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.gw-unit-div { margin: 0 2px; color: var(--text-secondary); }

/* Reloj clickeable */
.gw-clock-widget {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  cursor: pointer;
  width: fit-content;
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.gw-clock-widget:hover { background: rgba(255,255,255,0.08); }
#gwClockTime { font-size: 14px; font-weight: 500; }
.gw-clock-fmt {
  font-size: 10px;
  color: var(--tab-accent);
  border: 1px solid var(--tab-accent);
  border-radius: 10px;
  padding: 1px 5px;
  font-weight: 500;
}
.gw-main-right { text-align: right; }
.gw-weather-title { font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.gw-weather-desc { font-size: 15px; color: var(--text-secondary); }

/* ─── ALERTAS ─── */
.gw-alert-banner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.gw-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}
.gw-alert.frio  { background: rgba(79,195,247,0.18); color: #4fc3f7; border: 1px solid rgba(79,195,247,0.4); }
.gw-alert.lluvia{ background: rgba(138,180,248,0.18); color: #8ab4f8; border: 1px solid rgba(138,180,248,0.4); }
.gw-alert.viento{ background: rgba(255,107,91,0.18); color: #ff6b5b; border: 1px solid rgba(255,107,91,0.4); }

/* ─── DETALLES RÁPIDOS ─── */
.gw-details {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* ─── PESTAÑAS ─── */
.gw-tabs {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 20px;
}
.gw-tab {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  padding: 8px 0 12px;
  cursor: pointer;
  position: relative;
}
.gw-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 3px;
  background-color: var(--tab-accent);
  border-radius: 3px 3px 0 0;
}

/* ─── GRÁFICO PRINCIPAL ─── */
.gw-chart-container {
  width: 100%;
  height: 120px;
  position: relative;
  z-index: 2;
}

/* ─── CONTENEDOR DE VIENTO ─── */
.gw-wind-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 10px 0 0 0;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.gw-wind-container::-webkit-scrollbar {
  height: 4px;
}
.gw-wind-container::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.gw-wind-container::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.gw-wind-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.gw-wind-col.today { background: rgba(255,255,255,0.1); border-radius: 8px; }
.gw-wind-speed.estimated { opacity: 0.6; font-style: italic; }
.gw-wind-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 64px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.gw-wind-col.past { opacity: 0.5; }
.gw-wind-speed {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.gw-wind-arrow {
  font-size: 18px;
  display: inline-block;
  transform-origin: center;
}
.gw-wind-icon-img { width: 18px; height: 18px; vertical-align: middle; }
.gw-wind-time {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ─── PRONÓSTICO POR HORAS (scroll horizontal) ─── */
.gw-forecast-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  padding: 0 0 12px 0;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.gw-forecast-row::-webkit-scrollbar {
  height: 4px;
}
.gw-forecast-row::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}
.gw-forecast-row::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.gw-forecast-row {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.gw-day-col.past { opacity: 0.5; }
.gw-day-col.estimated .gw-temp-high { opacity: 0.6; font-style: italic; }
.gw-day-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  gap: 6px;
  font-size: 13px;
  padding: 10px 6px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.gw-day-col:hover { background: rgba(255,255,255,0.07); }
.gw-day-col.today { background: rgba(255,255,255,0.1); }
.gw-day-name { font-weight: 500; font-size: 12px; color: var(--text-secondary); white-space: nowrap; }
.gw-day-col.today .gw-day-name { color: var(--text-primary); }
.gw-day-icon { width: 28px; height: 28px; }
.gw-day-temps { display: flex; gap: 4px; font-size: 13px; }
.gw-temp-high { font-weight: 600; }

/* ─── DIVISOR ─── */
.gw-divider { height: 1px; background-color: var(--divider); margin: 20px 0; }

/* ─── MÉTRICAS EXTRA ─── */
.gw-extra-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 5 !important;
}
.gw-extra-card {
  text-align: center;
  background: var(--card-bg);
  padding: 12px 8px 10px;
  border-radius: 10px;
  position: relative;
}
.gw-extra-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}
.gw-extra-title { font-size: 11px; color: var(--text-secondary); }
.gw-extra-val { font-size: 16px; font-weight: 600; margin-top: 2px; }

/* ─── BOTÓN DE INFO (?) ─── */
.gw-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--text-secondary);
  background: transparent;
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.2s;
}
.gw-info-btn:hover,
.gw-info-btn.active {
  background: var(--tab-accent);
  border-color: var(--tab-accent);
  color: #000;
}

/* ─── POPOVER DE INFORMACIÓN ─── */
.gw-info-popover {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 220px;
  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  pointer-events: none;
}
.gw-info-popover::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px;
  width: 10px; height: 10px;
  background: rgba(0,0,0,0.92);
  border-left: 1px solid rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.15);
  transform: rotate(45deg);
}
.gw-info-popover.show {
  display: block;
}
.gw-info-scale {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ─── PANEL HISTÓRICO ─── */
.gw-history-panel { margin-bottom: 10px; }
.gw-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.gw-history-title { font-size: 15px; font-weight: 500; }
.gw-history-filters { display: flex; gap: 6px; }
.gw-filter-btn {
  background: transparent;
  border: 1px solid var(--divider);
  color: var(--text-secondary);
  font-size: 12px;
  font-family: inherit;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.gw-filter-btn.active {
  background: rgba(251,188,4,0.15);
  border-color: var(--tab-accent);
  color: var(--tab-accent);
}
.gw-history-chart-container { width: 100%; height: 160px; }

.gw-history-analysis {
  font-size: 13px;
  color: var(--text-primary);
  background: rgba(0,0,0,0.15);
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  line-height: 1.4;
  border: 1px solid rgba(255,255,255,0.05);
}

/* ─── MAPA DE LLUVIAS ─── */
.gw-rain-map-panel { margin-bottom: 10px; }
.gw-rain-map-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin: -8px 0 12px;
}
.gw-rain-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.gw-rain-summary-item {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.gw-rain-summary-label {
  display: block;
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.gw-rain-summary-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--tab-accent, #fbbc04);
}
@media (max-width: 520px) {
  .gw-rain-summary { grid-template-columns: repeat(2, 1fr); }
}
.gw-radar-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0 0 10px;
  cursor: pointer;
  user-select: none;
}
.gw-radar-toggle input { cursor: pointer; }
.gw-radar-toggle select {
  background: rgba(0,0,0,0.2);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 12px;
  cursor: pointer;
}

.gw-rain-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gw-rain-map {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 0;
}
.gw-rain-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-primary);
}
.gw-rain-legend strong { flex: 0 0 100%; font-size: 12px; margin-bottom: 2px; }
.gw-rain-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.gw-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.3);
}
.gw-dot-sin_lluvia { background: #bdbdbd; }
.gw-dot-bajo       { background: #4fc3f7; }
.gw-dot-moderado   { background: #66bb6a; }
.gw-dot-alto       { background: #ffa726; }
.gw-dot-muy_alto   { background: #e53935; }

@media (max-width: 520px) {
  .gw-rain-map { height: 340px; }
}

.gw-rain-help {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.gw-rain-help p { margin: 0 0 8px; }
.gw-rain-help p:last-child { margin-bottom: 0; }
.gw-rain-help-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.gw-tri-demo {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 15px solid #888888;
}
.gw-tri-parpadeo {
  border-bottom-color: #4fc3f7;
  animation: gw-parpadeo 1.1s ease-in-out infinite;
}
@keyframes gw-parpadeo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.gw-marker-parpadeo { animation: gw-parpadeo 1.1s ease-in-out infinite; }

/* ─── MODAL DE DETALLE POR ESTACION ─── */
.gw-station-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.gw-station-modal.show { display: flex; }
.gw-station-modal-box {
  background: #ffffff;
  color: #1c1e22;
  border-radius: 12px;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.gw-station-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.gw-station-modal-header h3 { font-size: 16px; font-weight: 600; margin: 0; color: #1c1e22; }
.gw-station-modal-close {
  background: transparent;
  border: none;
  color: #555;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.gw-station-chart-block { margin-bottom: 18px; }
.gw-station-chart-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.gw-station-chart-container { width: 100%; height: 150px; }

/* ─── FOOTER ─── */
.gw-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
}
