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


:root{
    --rosa-principal: #ff4d6d;
    --rosa-claro: #ffc2d1;
    --marrom: #5a2d2d;
    --marrom-claro: #7a4a4a;
    --branco: #ffffff;
}

* {
    box-sizing: border-box;
}

body{
    background:linear-gradient(to bottom, #f8d7df, #fbe4ea);
    color: #5a2d2d;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


 
    section{
        width:100%;
        max-width: 100%;
        padding: 0 15px;;
    }





.btn-fixo{
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 200px;
    height: 50px;

    background: #25d366;
    color: white;
    border: none;
    border-radius: 25px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 9999; /*garante que fica na frente*/
}

.btn-adicionar{
    transition: 0.2s;
}

.btn-adicionar:active{
    transform: scale(0.95);
}


@media(max-width: 480px){
    .card{
        flex-direction: row;
        gap: 10px;

    }
    .card img{
        width: 70px;
        height: 70px;
    }
    button{
        width: 100px;
        height: 32px;
        font-size: 12px;

    }
}













