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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* Mantém um fundo global cinza muito claro */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

a {
    color: #28a745; /* Verde principal para links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Cabeçalho e Navegação */
header {
    background: #fff; /* Fundo branco */
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky; /* Faz o header ficar fixo no topo */
    top: 0;
    z-index: 1000; /* Garante que o header fique sobre outros elementos */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px; /* Ajuste a altura conforme necessário */
    width: auto;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #333;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #28a745; /* Verde principal no hover */
    text-decoration: none;
}

/* Seção Hero (Página Inicial) */
#hero {
    background: #28a745; /* Verde principal */
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #218838; /* Verde mais escuro para destaque */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #1e7e34; /* Verde ainda mais escuro no hover */
    text-decoration: none;
}

/* Seções Gerais */
section {
    padding: 3rem 0;
}

section#intro, section#pillars, section#about-short, 
section#training-intro, section#training-topics, section#methodology, section#benefits, section#cta-training,
section#solutions-intro, section#services-offered, section#process, section#areas, section#cta-solutions,
section#cases-list, section#cta-cases,
section#about-content,
section#contact-options {
    background: #fff; /* Fundo branco para conteúdo principal */
    margin-bottom: 1rem; /* Espaço entre seções brancas */
}

.page-title {
    background: #f8f9fa; /* Cinza muito claro */
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-title h1 {
    margin-bottom: 0.5rem;
}

/* Seção Pilares (Página Inicial) */
#pillars .container {
    display: flex;
    justify-content: space-between;
    gap: 2rem; /* Espaço entre os pilares */
}

.pillar {
    background: #f8f9fa; /* Cinza muito claro */
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    flex: 1; /* Faz os pilares ocuparem espaço igual */
}

.pillar h3 {
    color: #28a745; /* Verde principal */
}

.learn-more-button {
    display: inline-block;
    margin-top: 1rem;
    background: #28a745; /* Verde principal */
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more-button:hover {
    background: #218838; /* Verde mais escuro no hover */
    text-decoration: none;
}

/* Listas nas páginas internas */
#training-topics ul, #methodology ul, #benefits ul,
#services-offered ul,
#about-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}

#training-topics ul li, #methodology ul li, #benefits ul li,
#services-offered ul li,
#about-content ul li {
    margin-bottom: 0.5rem;
}

#process ol {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 1rem;
}

#process ol li {
    margin-bottom: 0.5rem;
}

/* Página Cases */
.case-item {
    background: #f8f9fa; /* Cinza muito claro */
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #28a745; /* Verde principal */
    border-radius: 0 5px 5px 0;
}

.case-item h3 {
    color: #218838; /* Verde mais escuro */
}

/* Página Sobre */
.about-flex {
    display: flex;
    gap: 2rem;
    align-items: flex-start; /* Alinha itens no topo */
}

.about-text {
    flex: 2; /* Ocupa 2/3 do espaço */
}

.about-image {
    flex: 1; /* Ocupa 1/3 do espaço */
    text-align: center;
}

.about-image img {
    border-radius: 5px;
    max-width: 300px; /* Limita tamanho da foto */
}

/* Página Contato */
.contact-flex {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form-section {
    flex: 1;
}

.contact-whatsapp-section {
    flex: 1;
    background-color: #f8f9fa; /* Cinza muito claro */
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

.whatsapp-button {
    display: inline-flex; /* Para alinhar imagem e texto */
    align-items: center;
    background-color: #25D366; /* Verde WhatsApp */
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-button:hover {
    background-color: #1DAE51; /* Verde WhatsApp mais escuro */
    text-decoration: none;
}

.whatsapp-icon {
    height: 20px;
    width: auto;
    margin-right: 10px;
}

/* Rodapé */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* Responsividade Básica */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header nav ul {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 5px 0;
    }

    #pillars .container {
        flex-direction: column;
    }

    .about-flex {
        flex-direction: column;
    }

    .contact-flex {
        flex-direction: column;
    }

    .about-image img {
        margin-top: 1rem;
    }
}

