

* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
}


@media (min-width: 1024px) {
    .servico-lista {
        flex-direction: row;
        justify-content: center;
    }

    .servico {
        width: 20%;
    }

    .hero {
        padding: 4rem;
    }
}

img#mobile { display: none;}
img#tablet { display: none;}
img#desktop { display: none;}

html {
    display: flex;
    justify-content: center;
    background-color: #33333362;
}

/* Estilos gerais para desktop */
body {

    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    width: 80vw;
    
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 20px 50px;
    color: white;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.menu a:hover {
    color: #005eff;
}

.cta-button {
    background: #013FFA;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0015ff;
}

.menu-toggle, .menu-close {
    display: none;
}

/* Seção Hero */
.hero {

    text-align: center;
    background: url('../img/top-desktop.png') bottom center no-repeat;
    color: white;

}

.hero-text {

    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3333339a;
    width: 80vw;
    padding-bottom: 10px;
}



.hero-image {
    height: 400px;
    position: relative;

}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.texto {
    width: 500px; /* Define uma largura fixa */
    padding-right: 80px;
    padding-left: 80px;
    word-wrap: break-word; /* Quebra palavras longas */
    overflow-wrap: break-word; /* Alternativa para navegadores modernos */
    white-space: normal; /* Garante que o texto possa quebrar linhas normalmente */
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: #013FFA;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s;
}

.button:hover {
    background: #013FFA;
    color: white;
}

/* Seção Serviços */
#servicos {
    text-align: center;
    padding: 50px;
    background: white;
}

.servico-lista {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.servico {
    background: #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
}

/* Seção Diferenciais */
#diferenciais {
    text-align: center;
    padding: 50px;
    background: #ddd;
}

/* Depoimentos */
#depoimentos {
    text-align: center;
    padding: 50px;
    background: white;
}

blockquote {
    font-size: 18px;
    font-style: italic;
    margin: 20px 0;
}

/* Empresas */
#empresas {
    text-align: center;
    padding: 50px;
    background: #f8f8f8;
}

.empresas-lista {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.empresa {
    text-align: center;
}

.empresa-imagem {
    width: 150px;
    height: auto;
}

/* Contato */
#contato {
    text-align: center;
    padding: 50px;
    background: white;
}

.wpp {
    display: inline-block;
    padding: 10px 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s;
}

.wpp:hover {
    background: #1da851;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}

.empresa-imagem {
    width: 150px; /* Ajuste conforme necessário */
    height: 100px; /* Ajuste conforme necessário */
    object-fit: cover; /* Mantém o enquadramento sem distorção */
    display: block;
    margin: 0 auto; /* Centraliza a imagem dentro do div */
    border-radius: 10px;
    
}

