/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background: #83C1D9;
    color: #333;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #333;
    color: white;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

div#menu-close {
    position: relative;
    transform: translate(-50%,-50%);

}

.cta-button {
    background: #007BFF;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* Seção Hero */
.hero {
    text-align: center;
    padding: 2rem;
    background: #007BFF;
    color: white;
}

.hero {

    text-align: center;
    background: url('../img/top-site.png') center no-repeat;
    background-size: cover;
    color: white;

}
/* Serviços */
#servicos {
    padding: 2rem;
    text-align: center;
}

.servico-lista {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servico {
    background: white;
    margin: 10px;
    padding: 15px;
    width: 80%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Diferenciais */
#diferenciais {
    padding: 2rem;
    text-align: center;
}

#diferenciais ul {
    list-style: none;
}

/* Depoimentos */
#depoimentos {
    padding: 2rem;
    text-align: center;
    background: #BBD1DA;
}

/* Empresas que confiam em nós */
#cliente-empresa {
    padding: 2rem;
    text-align: center;
    background:#BBD1DA;
}

blockquote {
    font-style: italic;
    background: white;
    padding: 1rem;
    margin: 1rem auto;
    width: 80%;
    border-left: 5px solid #007BFF;
}

/* Contato */
#contato {
    padding: 2rem;
    text-align: center;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: white;
}

/* Estilos para a seção de empresas */
#empresas {
    text-align: center;
    margin: 50px 0;
}

#empresas h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.empresas-lista {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.empresa {
    text-align: center;
}

section#empresas > h2 {
    margin: 20px;
}


.empresa-imagem {
    width: 120px; /* Tamanho das imagens */
    height: 120px;
    border-radius: 50%; /* Tornar a imagem circular */
    object-fit: cover; /* Para que a imagem se ajuste bem ao círculo */
    border: 3px solid #ccc; /* Borda ao redor da imagem */
    margin-bottom: 10px;
}

.empresa p {
    font-size: 1em;
    color: #333;
}


