* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mukta', sans-serif;
}

/* --- Estilos do Corpo da Página --- */
body {
    background-image: url('./assets/background.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; 
    background-attachment: fixed; 
    min-height: 100vh; 
    display: flex;
    flex-direction: column; 
    color: white; 
}

/* --- Máscara de Fundo (Gradiente Escuro) --- */
.mascara {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    z-index: -1;
}

/* --- Header (Cabeçalho) - ALINHADO À ESQUERDA --- */
.header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px; 
    position: relative; 
    z-index: 2; 
    width: calc(100% - 60px); 
    box-sizing: border-box;
}

.header img {
    height: 70px; 
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)); 
}

.header a {
    color: white;
    font-size: 20px; 
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 5px;
}

.header a:hover {
    color: #C51111; 
}

#link-whatsapp {
    color: white; 
    font-size: 20px; 
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 5px;
}

#link-whatsapp:hover {
    color: #C51111;
    transition: all 0.3s ease-in-out;
}

/* --- Conteúdo Principal (Main e Seção de Serviços)--- */
.content {
    flex-grow: 1; 
    padding: 40px 20px; 
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    position: relative; 
    z-index: 1;
}

.services-section {
    padding: 40px;
    border-radius: 10px;
    max-width: 900px; 
    width: 100%; 
    color: #fff; 
}

.services-section h1 {
    font-size: 3em; 
    color: #fff; 
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
}

/* --- Categorias de Serviço --- */
.service-category {
    margin-bottom: 25px;
    padding: 15px 20px;
    border-left: 5px solid #C51111;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    font-size: 1.6em; 
    color: #fff;
    margin-bottom: 10px; 
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); 
    padding-bottom: 8px;
}

.service-category ul {
    list-style: none;
    padding-left: 0;
}

.service-category ul li {
    font-size: 1em; 
    line-height: 1.4; 
    padding: 6px 0; 
    color: #fff;
    position: relative;
    padding-left: 25px;
}

.service-category ul li::before {
    content: '✓'; 
    position: absolute;
    left: 0;
    color: #28a745; 
    font-weight: bold;
    font-size: 1.2em; 
    top: 50%;
    transform: translateY(-50%);
}

/* --- Rodapé (Footer)--- */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* --- Responsividade (Ajustada para o header) --- */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start; 
        padding: 15px 20px;
        gap: 15px;
    }

    .header nav {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start; 
        width: 100%; 
    }

    .header a {
        font-size: 18px;
        width: 100%; 
        text-align: left; 
    }

    #link-whatsapp {
        width: 100%;
        text-align: center; 
    }

    .content {
        padding: 20px 10px;
    }

    .services-section {
        padding: 25px;
    }

    .services-section h1 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .service-category h2 {
        font-size: 1.5em;
    }

    .service-category ul li {
        font-size: 1em;
        padding-left: 20px; 
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px;
    }

    .header a {
        font-size: 16px;
    }

    .services-section {
        padding: 15px;
    }

    .services-section h1 {
        font-size: 1.8em;
    }
}