/* widget-sun.css */
/* --- Arco solar --- */
/* --- Contenedor del arco solar --- */
#sun-arc-container {
    width: 100%;
    max-width: 200px;
    height: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5rem;
    overflow: visible;
}

/* --- Estilo de los iconos solares --- */
#sun-arc image {
    transition: all 0.3s ease;
    overflow:  visible;

}

#sun-arc-container svg {
    width: 100%;
    height: auto;
    transform: translateY(10px);
    overflow: visible;
}

#sun-arc {
    position: relative;
    left: 14px;
    overflow: visible;
}

.sun-card {
    width: 100%; /* ancho de la tarjeta */
    height: auto; /* altura automática según contenido */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sun-card:hover {
    transform: translateY(+3px);
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.3);
}
