/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000; /* Fundo preto para o corpo */
    color: #fff; /* Texto branco */
    line-height: 1.6;
    padding-top: 50px; /* Espaço para o header fixo */
}

/* Cabeçalho com fundo preto */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000; /* Fundo preto */
    color: #fff; /* Texto branco no cabeçalho */
    padding: 15px 20px;
    z-index: 100;
    display: flex;
    justify-content: center; /* Centraliza os itens */
    align-items: center;
}

/* Ajuste do menu */
header nav ul {
    position: relative;
    left: 110%; /* Ajuste para centralização dos itens */
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: center; /* Centraliza os itens dentro do menu */
}

header nav ul li a {
    color: #00bcd4; /* Cor inicial dos links */
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #03a9f4; /* Cor ao passar o mouse */
}

/* Menu responsivo (hambúrguer) */
header .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

header .menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #fff; /* Cor das barras do menu hambúrguer */
    border-radius: 5px;
}

/* Estilos para telas menores */
@media (max-width: 768px) {
    header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9); /* Fundo preto translúcido para o menu responsivo */
        padding: 10px 0;
        text-align: center;
        gap: 15px;
    }

    header nav ul.active {
        display: flex;
    }

    header .menu-toggle {
        display: flex;
    }
}

/* Conteúdo Principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0 30px; /* Espaçamento inferior para o footer */
    background-color: #1e1e1e; /* Cor de fundo do conteúdo */
    border-radius: 8px;
}

/* Títulos e seções */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h2 {
    color: #00bcd4;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Estilo para as seções de serviço */
.service {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 20px;
    flex: 1 1 calc(50% - 30px); /* 2 colunas com espaçamento */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #333;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.service-item h2 {
    color: #00bcd4;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-item p {
    color: #ddd;
    margin-bottom: 20px;
}

.service-item video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Seção Sobre Introdução */
.sobre-introducao {
    text-align: center;
    margin-bottom: 40px;
}

.sobre-introducao h1 {
    font-size: 2.5rem;
    color: #00bcd4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sobre-introducao p {
    font-size: 1.1rem;
    color: #ddd;
    margin-top: 10px;
    line-height: 1.8;
    font-weight: 300;
}

/* Missão e Visão */
.missao-visao {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.missao, .visao {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.missao h2, .visao h2 {
    color: #00bcd4;
    margin-bottom: 20px;
}

/* Valores */
.valores {
    margin-bottom: 40px;
    text-align: center;
}

.valores h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.valores ul {
    list-style: none;
    color: #ddd;
    font-size: 1.1rem;
}

.valores li {
    margin: 10px 0;
    transition: color 0.3s ease;
}

.valores li:hover {
    color: #00bcd4;
}

/* Equipe */
.equipe {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.membro {
    background-color: #2a2a2a;
    padding: 20px;
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membro:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.membro img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #00bcd4;
}

.membro h3 {
    color: #00bcd4;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.membro p {
    color: #ddd;
    font-size: 1.1rem;
}

/* Formulário de Contato */
.contato {
    text-align: center;
    margin-bottom: 40px;
}

.contato h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.contato form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contato input, .contato textarea {
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #1e1e1e;
    color: #fff;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contato input:focus, .contato textarea:focus {
    border-color: #00bcd4;
    background-color: #2a2a2a;
}

.contato button {
    padding: 12px;
    background-color: #00bcd4;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contato button:hover {
    background-color: #03a9f4;
    transform: scale(1.05);
}

/* Rodapé */
footer {
    background-color: #121212;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    font-size: 1rem;
}

@media (max-width: 768px) {
    /* Estilos para dispositivos móveis */
}

/* História da Empresa */
.historia {
    margin-bottom: 60px;
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.historia h2 {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 20px;
}

.historia p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Nossos Clientes */
.clientes {
    margin-bottom: 60px;
    text-align: center;
}

.clientes h2 {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 30px;
}

.clientes .logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.clientes .logos img {
    width: 120px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.clientes .logos img:hover {
    opacity: 1;
}

/* Certificados e Reconhecimentos */
.certificados {
    margin-bottom: 60px;
    text-align: center;
}

.certificados h2 {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 30px;
}

.certificados .certificados-lista {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.certificados .certificados-item img {
    width: 150px;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Localização */
.localizacao {
    margin-bottom: 60px;
    text-align: center;
}

.localizacao h2 {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 20px;
}

.localizacao iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* Redes Sociais */
.redes-sociais {
    margin-bottom: 60px;
    text-align: center;
}

.redes-sociais h2 {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 20px;
}

.redes-sociais ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.redes-sociais ul li {
    font-size: 1.5rem;
}

.redes-sociais ul li a {
    color: #00bcd4;
    transition: color 0.3s ease;
}

.redes-sociais ul li a:hover {
    color: #03a9f4;
}

/* Depoimentos */
.depoimentos {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 60px;
}

.depoimentos h2 {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 20px;
}

.depoimentos p {
    color: #ddd;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.depoimentos .depoimento-item {
    margin-bottom: 20px;
}

.depoimentos .depoimento-item:last-child {
    margin-bottom: 0;
}
