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

.pet-form {
    background-color: #FFF0E6; /* tom pêssego claro contrastando com #FFF9F5 */
    padding: 25px;
    max-width: 400px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #2C2C2C;
}

.pet-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #222;
}

.pet-animals {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.pet-button {
    background-color: transparent;
    border: 2px solid #D9D9D9;
    color: #2C2C2C;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.pet-button.active,
.pet-button.is-active,
.pet-button:active {
    background-color: #FF7C1D;
    border-color: #FF7C1D;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 124, 29, 0.2);
}

.pet-weight {
    margin-bottom: 15px;
}

.pet-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.pet-button.pet-calc {
    width: 100%;
    margin-top: 10px;
    background-color: #28C941; /* verde limão */
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
}

.pet-button.pet-calc:hover {
    background-color: #22b53a;
}

.pet-result {
    margin-top: 25px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    color: #222;
}

@media (max-width: 480px) {
    .pet-animals {
        flex-direction: column;
    }

    .pet-button {
        margin-bottom: 10px;
        width: 100%;
    }
}
