body {
    padding-top: 0px; /* apenas para barra navbar ficar masi otimizada */

}

.card-flutuante {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-flutuante:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.card-link {
    text-decoration: none;
    color: inherit;
}


/* Banner Hero Section */

.banner-hero {
    position: relative;
    background-image: url('imagens/exemplo3.jpeg');
    /* Imagem de fundo do banner */
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.banner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Camada escura para dar contraste ao texto */
    z-index: 1;
}

.banner-hero .container {
    position: relative;
    z-index: 2;
    /* Garante que o conteúdo fique acima da camada escura */
}

.banner-hero .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.banner-hero .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: scale(1.05);
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: transform 0.5s;
    z-index: 1000;
}

.whatsapp:hover {
    transform: scale(1.1);
}

.secao-avaliacoes {
    padding: 60px 0;
    background-color: #fff;
}

.card-depoimento {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-depoimento:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.avatar-cliente {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.nome-cliente {
    font-weight: bold;
    font-family: 'Georgia', serif;
    margin-bottom: 0;
}

.local-cliente {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.avaliacao {
    margin-bottom: 20px;
}

.avaliacao .fa-star {
    font-size: 1.2rem;
    color: #ccc;
}

.avaliacao .fa-star.checked {
    color: #0d6efd;
    /* Alterado para azul */
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '“';
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    /* Alterado para azul */
    margin: 0 5px;
    vertical-align: middle;
    line-height: 0;
}

.testimonial-text::after {
    content: '”';
}


/* Estilos da Galeria de Fotos */

.galeria {
    background-color: #f8f9fa;
    /* Fundo cinza claro para a galeria */
}

.galeria img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    cursor: pointer;
}

.galeria img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Estilos da Seção Quem Somos */

.quem-somos {
    background-color: #f8f9fa;
    /* Um fundo cinza claro para destacar a seção */
}

.quem-somos img {
    max-width: 350px;
    /* Limita o tamanho do logo para não ficar muito grande */
    border: 5px solid #fff;
}


/* Estilos da Seção "Com o que Trabalhamos" */

.trabalhamos-com .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
}


/* Estilo da Faixa de Localização */

.localizacao-faixa {
    background-color: #0d6efd;
    /* Cor principal azul */
    color: #ffffff;
    /* Texto em branco */
}


/* SESSÃO NAVBAR */

.navbar {

    width: 100%;
    z-index: 1000;
    padding: 5px 15px;  /* altura */
    height: auto;       /*e ajustar ao conteúdo */
}


.navbar-brand img {
    /* Mantive seu estilo de logo */
    width: 100px;
}

/* SUGESTÃO: Estilizando os links padrões da navbar */
.nav-link {
    margin: 10px 15px;
    transition: color 0.3s;
}

/* SUGESTÃO: Criando um botão de "Call to Action" customizado */
.botao-wpp-nav {
    background-color: #25D366; /* Seu tom de vermelho */
    color: #ffffff; /* Texto branco para melhor contraste */
    border-radius: 50px; /* Deixa o botão no formato de "pílula" */
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block; /* Importante para o padding funcionar bem */
}

.botao-wpp-nav:hover {
    transform: scale(1.05); /* Efeito de crescimento sutil */
}

/* SESSÃO FAQ */

.accordion-header {
    border-bottom: 1px solid rgba(0,0,0,.125);
    margin-bottom: 0;
}

.accordion-button {
    color: #0d6efd; /* Alterado para azul */
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0c5dd8;
}

.accordion-button:hover {
    color: #0c5dd8; /* Tom mais escuro de azul no hover */
}