@charset "UTF-8";

* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
}

img#mobile { display: none;}
img#tablet { display: block;}
img#desktop { display: none;}

/* Estilos para Tablet (601px - 1024px) */

/* Ajustando o layout do header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #333;
    color: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.495);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.menu-toggle, .menu-close {
    display: none;
} 

.cta-button {
    padding: 10px 20px;
    background-color: #013FFA;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Seção Hero */
.hero {
    text-align: center;
    padding: 1px 0px;
    height: 490px;
}

.hero {

    text-align: center;
    background: url('../img/top-desktop.png') bottom center no-repeat;
    color: white;

}

.hero-image img {
    width: 100vw;
    display: block;
    margin: 0 auto;
    background-size: cover;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.495);
    border-radius: 5px;
}

div.hero-image {
    position: relative;
}

.hero-text {
    position: absolute;
    width: 100vw;
    height: 70px;
    bottom:-480px;  /* Ajuste a distância do texto para a parte inferior da imagem */
    left: 0px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Para melhorar a visibilidade do texto */
    padding:25px;
    border-radius: 5px;
}



.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #013FFA;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Seção de Serviços */
.servico-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.servico {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

/* Seção Diferenciais */
#diferenciais ul {
    padding: 20px;
    list-style: none;
    font-size: 18px;
}

/* Empresas */
.empresas-lista {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.empresa {
    text-align: center;
}

.empresa-imagem {
    width: 150px;
}

/* Seção de Contato */
.wpp {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 20px auto;
    width: fit-content;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}

section#servicos > h2 {
    text-align: center;
}

/* 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;
    
}
