* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: url('assets/fundo\ preto2.png') center/cover fixed no-repeat;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #f4f4f4;
    padding: 20px;
}

.logo {
    width: 50%;
    max-width: 120px;
    height: auto;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nome {
    margin: 10px auto;
    width: 80%;
    max-width: 600px;
    padding: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    
}

.menu {
    margin: 20px auto;
    width: 80%;
    max-width: 400px;
    padding: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin: 10px;
    transition: color 0.3s ease-in-out;
}

.menu a:hover {
    color: #007BFF;
    text-decoration: underline;
}

.conteudo {
    margin-top: 40px;
    padding: 25px;
    min-height: 250px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    color: #f4f4f4;
}

.servicos fieldset {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px;
    border: none;
}

.servicos figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    margin: 0;
    text-align: center;
}

.servicos img {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.servicos img:hover {
    transform: scale(1.05);
}

.servicos figcaption {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 10px;
}

.diferenciais {
    text-align: center;
    padding: 50px 20px;
    background-color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    border-radius: 10px;
    max-width: 1200px;
    color: #fff;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    width: 250px;
    padding: 20px;
    background: #222;
    border-radius: 10px;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .logo {
        width: 70%;
        max-width: 100px;
    }

    .menu {
        width: 90%;
    }

    .servicos fieldset {
        flex-direction: column;
    }

    .grid {
        flex-direction: column;
        align-items: center;
    }
}

.footer {
    color: #fff;
    margin-top: auto;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
}

