body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Estilos para a Navbar */
.navbar {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #e2e6ea;
}

.navbar-brand {
    color: #008080 !important;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #008080 !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #40E0D0 !important;
}

.header-mk {
    background-color: #40E0D0;
    color: #000;
    padding: 40px 0;
    text-align: center;
}

.header-mk .logo-mk {
    max-width: 180px;
    margin-bottom: 20px;
}

.header-mk .titulo {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: none;
}

.header-mk .lead-mk {
    font-size: 1.4em;
    font-weight: 300;
    color: #1A1A1A;
    text-shadow: none;
}

/* Estilos para a seção de serviços */
#vitrine {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.titulo-secao {
    font-size: 2.2em;
    color: #008080;
    margin-bottom: 50px !important;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: center;
}

.subtitulo-secao {
    font-size: 1.8em;
    color: #008080;
    margin-top: 25px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.featurette-heading {
    font-size: 2em;
    color: #008080;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.featurette-heading .text-muted {
    color: #6c757d !important;
    font-size: 0.8em;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.footer-mk {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    margin-top: 50px;
}

.footer-mk p {
    margin-bottom: 5px;
}

/* Estilos para o botão flutuante do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
}

/* Estilos dos cards de produto na vitrine */
.card-produto {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.card-produto .imagem-produto {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card-produto .subtitulo {
    font-size: 1.5em;
    color: #008080;
    margin-bottom: 15px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2);
}

/* Estilos para as imagens dentro dos modais */
.imagem-produto-modal {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Estilos para botões Bootstrap com cor turquesa e texto preto */
.btn-primary {
    background-color: #40E0D0 !important;
    border-color: #40E0D0 !important;
    color: #000 !important;
}

.btn-primary:hover {
    background-color: #20B2AA !important;
    border-color: #20B2AA !important;
    color: #000 !important;
}

.btn-success {
    background-color: #40E0D0 !important;
    border-color: #40E0D0 !important;
    color: #000 !important;
}

.btn-success:hover {
    background-color: #20B2AA !important;
    border-color: #20B2AA !important;
    color: #000 !important;
}

/* Estilos para o subtítulo dentro do modal */
.modal-subtitulo {
    color: #008080;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (min-width: 768px) {
    .card-produto {
        min-height: 450px;
    }
}

@media (max-width: 767.98px) {
    #vitrine .card-produto {
        margin-bottom: 30px;
    }
}