/* Importação de fonte opcional */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* NAVBAR */
.navbar {
    padding: 1rem;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar a{
    color: #0e0d91;
}.navbar a:hover{
    color: #6d6dc0;
}
.navbar-toggler{
    background-color: #6d6dc0;
}

.navbar img {
    margin-right: 10px;
}

p{
    margin-bottom: 1.8rem !important;
}

/* PRODUTOS */
.container {
    padding: 40px 15px;
}

h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Estilização dos cards de produtos */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-body {
    text-align: center;
}

/* BOTÕES */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* FORMULÁRIO */
form {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* RODAPÉ */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 5px 0;
}

/* MAPA */
iframe {
    border-radius: 8px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }
}
/* Balão Fixo do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Ícone do WhatsApp */
.whatsapp-float i {
    font-size: 30px;
}

/* Responsividade para mobile */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    .whatsapp-float i {
        font-size: 24px;
    }
}
