/* 
   Paleta de Cores:
   - Preto: #000000
   - Branco: #ffffff 
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zeyada', cursive; /* Fonte principal */
    background-color: #000000; /* Cor de fundo preta */
    color: #ffffff; /* Cor do texto branca */
    font-size: 1.8em;
}

/* Estilização Geral */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-align: center;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: #ffffff; /* Cor do link branca */
    text-decoration: none;
    transition: color 0.3s ease; /* Efeito de transição suave na cor do link */
}

a:hover {
    color: #cccccc; /* Cor do link ao passar o mouse */
}

hr {
    border: none;
    height: 1px;
    background-color: #ffffff; /* Cor da linha branca */
    margin: 40px 0;
}

/* Cabeçalho */
header {
    background-color: #000000; 
    padding: 20px 0;
    position: fixed; /* Cabeçalho fixo no topo */
    width: 100%;
    z-index: 10; /* Garante que o cabeçalho fique acima de outros elementos */
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px; 
    border-radius: 50%;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left: 30px;
}

/* Botão do Menu (para telas menores) - Estilize como desejar */
.menu-toggle {
    display: none; 
}

/* Hero (Seção Principal) */
.hero {
    text-align: center;
    padding: 100px 0; /* Ajuste o espaçamento interno conforme necessário */
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 50%;
    height: auto;
    border-radius: 10px; /* Borda arredondada opcional */
    margin-right: 30px;
}

.hero-text {
    text-align: left;
    max-width: 50%;
}

/* Botão */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff; /* Cor de fundo branca */
    color: #000000; 
    text-transform: uppercase;
    border-radius: 5px; 
    transition: background-color 0.3s ease; 
}

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

/* Seções Sobre, Portfólio, Produtos */
.about, 
.portfolio,
.products {
    padding: 40px 0;
}

/* Galeria de Fotos (Portfólio) - Exemplo Simples */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery img {
    width: 24%; 
    margin-bottom: 20px;
    border-radius: 10px; 
    transition: transform 0.3s ease; 
}

.gallery img:hover {
    transform: scale(1.05); 
}

/* Logotipos dos Produtos - Exemplo Simples */
.brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; 
}

.brands img {
    height: 80px; 
    margin: 20px;
    border-radius: 50%;
}

/* Seção de Contato */
.contact {
    padding: 40px 0;
}

.contact-info {
    text-align: center; 
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.social-media li {
    margin: 0 10px;
}

.social-media a {
    font-size: 2em; /* Ajuste o tamanho dos ícones conforme necessário */
}

/* Mapa - Ajustar largura conforme necessário */
.contact iframe {
    width: 100%; 
}

/* Rodapé */
footer {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
}

/* Botão Voltar ao Topo */
.voltar-topo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none; /* Oculta o botão inicialmente */
    opacity: 0;   /* Define a opacidade como 0 */
    transition: opacity 0.3s ease; /* Adiciona uma transição suave */
}

.voltar-topo svg {
    font-size: 1.5em;
}

.voltar-topo.show {
    opacity: 1;  /* Define a opacidade como 1 quando a classe 'show' for adicionada */
    display: block; /* Exibe o botão */
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    /* Ajustes para telas menores (tablets e celulares) */

    .hero-content {
        flex-direction: column; 
        text-align: center;
    }

    .hero-image {
        max-width: 90%; /* Imagem ocupa mais largura em telas menores */
        margin: 0 0 20px 0; /* Margem apenas na parte inferior */
    }

    .hero-text {
        max-width: 100%;
    }

    .gallery img {
        width: 48%; 
    }

    .brands img {
        height: 60px; 
        margin: 10px;
    }

    /* Mostrar o botão do menu em telas menores */
    .menu-toggle {
        display: block; 
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px; 
    }

    /* Estilização das barras do menu - Personalize como desejar */
    .menu-toggle span {
        display: block;
        width: 30px; 
        height: 3px; 
        background-color: #ffffff; 
        margin: 5px 0; 
    }

    .nav-list {
        display: none; 
        position: absolute;
        top: 100%; /* Posiciona abaixo do cabeçalho */
        left: 0;
        width: 100%;
        background-color: #000000;
    }

    .nav-list li {
        margin: 0; 
        padding: 15px 20px;
        border-bottom: 1px solid #ffffff; 
    }

    .nav-list.show { /* Mostrar o menu quando .menu-toggle for clicado */
        display: block;
    }
}