@tailwind base;
@tailwind components;
@tailwind utilities;

.home {
    background-image: url('/img/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 420px;
    }

.logo{
    width: 8rem; 
    height: 8rem; 
    border-radius: 50%; 
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); 
    transition: transform 0.2s; 
}
.logo:hover{
    transform: scale(1.1); 
}
.produto1{
    width: 7rem;
    height: 7rem;
    border-radius: 0.375rem;
    transition: transform 0.3s;
}
.produto1:hover{
    transform: scale(1.1) rotate(-2deg);
}
.model{
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
}
.model2{
    background-color: white;
    padding: 1.25rem;
    border-radius: 0.375rem;
    min-width: 90%;
}

@media (min-width: 768px) {
    .model2 {
        min-width: 600px;
    }
}
.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1)) /* #22c55e */;
}