@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130vh;
    zoom: 75%;
    background: linear-gradient(135deg, #ebcb16 0%, #6ebcbe 70%, #64e6bf 100%);
    background-size: 400% 400%;
    animation: moverFundo 15s ease infinite;
    color: #333;
    text-align: center;
    overflow: hidden;
}

@keyframes moverFundo {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 90%;
    max-width: 600px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

#relogio-data p {
    margin: 10px 0;
}

#dia-semana {
    font-size: 2rem;
    font-weight: 300;
}

#data-atual {
    font-size: 1.5rem;
}

#horario {
    font-size: 4rem;
    font-weight: 600;
}

.frase-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

h2 {
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

#frase-motivacional {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    font-weight: 400;
    min-height: 20px;
}

.clima-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

#clima-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#clima-icone {
    width: 80px;
    height: 80px;
}

#clima-texto {
    text-align: left;
}

#clima-texto p {
    margin: 5px 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {

    .container {
        padding: 20px;
    }

    #dia-semana {
        font-size: 1.5rem;
    }

    #data-atual {
        font-size: 1.2rem;
    }

    #horario {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    #frase-motivacional {
        font-size: 1rem;
    }

    #clima-info {
        flex-direction: column;
        gap: 10px;
    }

    #clima-texto {
        text-align: center;
    }
}