/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variáveis de cores */
:root {
    --white-color: #fff;
    --dark-color: #8cabaf;
    --body-bg-color: #f4f7f6; /* Fundo geral mais suave */
    --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --box-shadow: 0 5px 25px rgb(0 0 0 / 15%);
    --primary-color: #00509e; /* Tom de azul mais sóbrio */
    --secondary-color: #002952;
}

/* Reset Padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Corpo */
body {
    background-color: var(--body-bg-color);
    color: var(--dark-color);
}

/* Header (mantém o seu estilo original) */
header {
    background-color: #00000078;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    transition: 0.5s;
}

header.scrolled {
    background-color: #000000;
}
.logo{
    width: 200px;
    height: auto;
}

/* ... (restante do seu CSS de header pode ser mantido aqui) ... */

/* Main Content Wrapper */
.main-content {
    padding-top: 80px; /* Espaço para o header fixo */
}

/* Hero Section */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--dark-color);
    color: var(--white-color);
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 10px auto 0;
    opacity: 0.9;
}

/* Seção de serviços */
.services-section {
    padding: 60px 20px;
    background-color: var(--body-bg-color);
}

.services-section:nth-child(odd) {
    background-color: #ffffff; /* Fundo alternado para separar visualmente */
}

/* Container de serviços */
.services-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--primary-color);
}

.services-section:nth-child(odd) .services-container {
     background-color: var(--body-bg-color);
}


/* Cabeçalho da Categoria */
.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Lista de Serviços */
.service-list ul {
    list-style: none;
    padding: 0;
    columns: 2; /* Divide a lista em 2 colunas */
    column-gap: 40px;
}

.service-list li {
    font-size: 1rem;
    color: #555;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    break-inside: avoid; /* Evita que o item quebre entre colunas */
}

.service-list li::before {
    content: '\f058'; /* Ícone de check do Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-top: 5px;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .service-list ul {
        columns: 1; /* Transforma em coluna única em telas menores */
    }
    .services-container {
        padding: 30px;
    }

    .category-header h2 {
    font-size: 1rem;
}
}