/* =========================================
   Estilos exclusivos para la Guía
   ========================================= */

/* Estilo para el Widget Meteorológico Premium */
.widget-clima {
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Temas Dinámicos: Día y Noche */
.widget-clima.tema-dia {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 50%, #f1f8e9 100%);
    color: #2c3e50;
}
.widget-clima.tema-noche {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #ffffff;
}

/* Efecto Cristal (Glassmorphism) para paneles interiores */
.glass-panel {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

/* Ajuste del Cristal para el tema oscuro (noche) */
.tema-noche .glass-panel {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icono del clima flotante con animación */
.icono-clima-flotante {
    width: 280px; /* ¡Ahora es GIGANTE! */
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2));
    animation: float_icon 6s ease-in-out infinite;
    max-width: 100%;
}

@keyframes float_icon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Checklist de tareas estilo iOS */
.task-item {
    border-left: 4px solid var(--verde-hierba, #2d5a27);
    background: white;
    transition: transform 0.2s;
    cursor: pointer;
}
.task-item:hover {
    transform: translateX(5px);
}

 /* --- ESTILOS PARA EL EFECTO SKELETON --- */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}
.skeleton {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px; 
    display: inline-block;
    position: relative;
    animation: shimmer 1.5s infinite linear;
    border-radius: 8px;
}
.sk-text { height: 12px; width: 100%; margin-bottom: 10px; }
.sk-title { height: 24px; width: 60%; margin-bottom: 20px; }
.sk-circle { height: 150px; width: 150px; border-radius: 50%; }
.sk-badge { height: 30px; width: 120px; border-radius: 20px; margin-bottom: 15px; }