/* ========================
   Cores Globais
======================== */
:root {
    --cor-primaria: #3498db;
    /* Azul principal */
    --cor-secundaria: #2ecc71;
    /* Verde secundÃ¡ria */
    --cor-fundo: #f5f5f5;
    /* Fundo cinza claro */
    --cor-texto: #333333;
    /* Cor padrÃ£o do texto */
}

/*============================= */


body {
      font-family: "Manrope", sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #f8f8f8;
    padding: 15px 0;
}

.barra {

    background: #2a2a2a;

    padding: 7px;
}

.servicos {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    /* Garante que o fundo azul nÃƒÂ£o ultrapasse */
}

/* Deixar os títulos dos cards em preto mesmo sobre fundo claro */
#servicos .card-title {
    color: #000;
}

/* Personalização do texto dos cards */
#servicos .card-text {
    color: #555;
}

.card{

background: #f6f7f7;
}

.card img{
    width: 50%;
    margin: 0 auto;
}
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #888;
    font-weight: bold;
}

.hero {
    background: url('../imagens/banner.webp') center / cover !important;
    height: 500px !important;
    width: 100%;
    color: white;
    padding: 80px 20px;
}


.hero .overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Escurece a imagem */
    z-index: 1;
    margin-top: 70px;
    height: 500px;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Coloca o texto acima da camada escura */
    max-width: 600px;
    margin: auto;
}

button {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #2a2a2a;
}

.services,
.testimonials,
.contact {
    padding: 40px 20px;
}

.service-boxes,
.testimonial-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.box,
.testimonial {
    width: 100%;
    height: auto;
    background: linear-gradient(45deg, #0df0fd, #0654c7);
    border-radius: 8px !important;
    color: #fff !important;
    margin: 8px 0px;
}

.box h3 {
    font-size: 18px;
    color: #fff !important;
}

.box a {
    text-decoration: none;
    color: #fff;
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input,
textarea {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
}

.map img {
    width: 100%;
    max-height: 300px;
}

#depoimentos img {
    width: 144px;
}

#depoimentos p, h2{
    text-align: left;
}

.mt-15 {
    margin-top: 15vh;
}

.btn {
    background: #2a2a2a !important;
    color: #fff !important;
    border: none !important;
    padding: 14px;
}

.btn:hover {
    background: #898989 !important;
    transition: 2.5s;
}

footer {
    background: #000000 !important;
    color: #fff;
    padding: 10px;
}

.whatsapp {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #00f870;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000000;
    box-shadow: 0 0 0 0 00f870;
    transform: scale(1);
    animation: pulse 1s infinite;
}

#reputacao{
    background: #2a2a2a;
    color: #fff;
    padding: 30px;
    font-size: 23px;
}

@media (max-width: 765px) {
    #reputacao img{
        margin: 8px;
        width: 100%;
    }

    #servicos, .col-md-4{
        margin: 8px 0px;
    }

    .hero .overlay{
        
    }
}