.weather-card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: 'DM Sans', sans-serif;
    color: #333;
    box-sizing: border-box;
}

.weather-top {
    text-align: center;
    margin-bottom: 20px;
}

.weather-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.min img, 
.max img {
    vertical-align: middle;
    margin-right: 5px;
}

.weather-info h2 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.current-temp {
    font-size: 28px;
    font-weight: bold;
    margin: 5px 0;
}

.desc {
    text-transform: capitalize;
    font-size: 14px;
    color: #666;
}

.weather-forecast {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.weather-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.weather-day:last-child {
    border-bottom: none;
}

.day-name {
    width: 30%;
    font-size: 16px;
}

.mini-icon {
    width: 30px;
    height: 30px;
}

.temps {
    display: flex;
    gap: 10px;
    font-size: 14px;
    flex-direction: row-reverse;
}

.max {
    color: #d00;
    font-weight: bold;
}

.min {
    color: #00f;
    font-weight: bold;
}

/* 🌐 Responsividade */
@media (max-width: 480px) {
    .weather-card {
        padding: 15px;
        max-width: 100%;
    }

    .weather-info h2 {
        font-size: 18px;
    }

    .current-temp {
        font-size: 24px;
    }

    .weather-day {
        flex-direction: row;
        justify-content: space-between;
    }

    .day-name {
        width: 40%;
        font-size: 13px;
    }

    .temps {
        font-size: 13px;
    }

    .mini-icon {
        width: 24px;
        height: 24px;
    }
}