/* ==========================================================
   CSS GLOBAL - RESET E TIPOGRAFIA
   ========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    background-color: #ffffff; /* Fundo Branco */
    color: #1a1a1a; /* Texto Preto Principal */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia e Headings */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000000;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #333333;
}

/* ==========================================================
   BOTÕES (CTAS)
   ========================================================== */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: 2px solid #000000;
}

.cta-button:hover {
    background-color: #333333;
}

.cta-button.secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.cta-button.secondary:hover {
    background-color: #f0f0f0;
}

/* ==========================================================
   CABEÇALHO (HEADER)
   ========================================================== */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Aumentado */
.logo-img {
    height: 45px; 
    width: auto;
    vertical-align: middle;
}

.nav a {
    text-decoration: none;
    color: #1a1a1a;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #555555;
}

.nav .cta-header {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    margin-left: 25px;
}

.nav .cta-header:hover {
    background-color: #333333;
    color: #ffffff;
}

/* ==========================================================
   SEÇÃO HERO (DESTAQUE) - FOTO RETANGULAR E CLEAN
   ========================================================== */
.hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Estilo limpo e sutil para a moldura da foto */
    background-color: #ffffff; 
    padding: 0; 
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    overflow: hidden;
}

/* Estilo para a Foto do Founder (Mais alta) */
.founder-photo {
    width: 100%; 
    height: 400px; 
    object-fit: cover;
    border-radius: 6px; 
    border: none;
    box-shadow: none; 
}

/* ==========================================================
   SEÇÃO INTRODUÇÃO/PILARES
   ========================================================== */
.intro-section {
    padding: 80px 0;
    background-color: #f7f7f7;
    text-align: center;
}

.intro-section .intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.pillars-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.pillar-item {
    flex: 1;
    max-width: 350px;
    padding: 30px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    text-align: left;
    background-color: #ffffff;
    transition: box-shadow 0.3s;
}

.pillar-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pillar-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

/* ==========================================================
   SEÇÃO PORTFÓLIO
   ========================================================== */
.portfolio-section {
    padding: 80px 0;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-item {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-info h3 {
    margin-top: 0;
}

.cta-text-link {
    margin-top: 40px;
    font-size: 1.1rem;
}

.cta-text-link a {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
}

/* ==========================================================
   SEÇÃO CLIENTES
   ========================================================== */
.clients-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f7f7f7; /* Cor de fundo sutil para a seção de clientes */
}

.client-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.client-logo-item {
    max-width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logo-item:hover {
    opacity: 1;
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
}

/* ==========================================================
   SEÇÃO DIFERENCIAL - MOLDURA BRANCA REMOVIDA
   ========================================================== */
.differential-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.differential-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.differential-image, .differential-content {
    flex: 1;
}

.differential-image {
    /* Ajustes para remover o box-shadow e padding extra */
    display: flex; 
    justify-content: center;
    align-items: center;
    padding: 0; 
}

.differential-image img {
    width: 100%;
    border-radius: 6px;
    /* Remove a sombra da imagem (mantendo o visual clean) */
    box-shadow: none; 
    display: block; 
}

.differential-content h2 {
    text-align: left;
    margin-top: 0;
}

.differential-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 30px;
}

.differential-content li {
    padding: 8px 0;
    font-size: 1.1rem;
    border-bottom: 1px dashed #cccccc;
    color: #000000;
}
/* Remove a borda do último item da lista */
.differential-content li:last-child {
    border-bottom: none;
}


/* ==========================================================
   SEÇÃO CONTATO
   ========================================================== */
.contact-section {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.contact-section h2, .contact-section p {
    color: #ffffff;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #333333;
    color: #ffffff;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #aaaaaa;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #dddddd;
}

/* ==========================================================
   RODAPÉ (FOOTER)
   ========================================================== */
.footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #555555;
    border-top: 1px solid #eeeeee;
}

/* ==========================================================
   RESPONSIVIDADE (MOBILE)
   ========================================================== */
@media (max-width: 992px) {
    /* Ajustes Gerais */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    .hero, .intro-section, .portfolio-section, .clients-section, .differential-section, .contact-section {
        padding: 50px 0;
    }

    /* Hero e Foto */
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 2; /* Coloca o texto depois da foto no mobile */
    }

    .hero-image {
        order: 1; /* Coloca a foto antes do texto no mobile */
        margin-bottom: 30px;
        padding: 15px; /* Ajuste o padding para mobile */
    }
    
    .founder-photo {
        width: 100%; 
        height: 250px; /* Altura ajustada para mobile */
        border-radius: 6px; 
    }

    /* Navegação */
    .nav {
        display: none; /* Simplificando a navegação no mobile */
    }
    
    .logo-img {
        height: 35px; /* Ajusta o logo para o mobile */
    }

    /* Pilares */
    .pillars-grid {
        flex-direction: column;
        gap: 20px;
    }
    .pillar-item {
        max-width: 100%;
        text-align: center;
    }
    .pillar-item .icon {
        text-align: center;
    }

    /* Diferencial */
    .differential-section .container {
        flex-direction: column;
    }
    .differential-image {
        margin-bottom: 30px;
    }
    .differential-content h2 {
        text-align: center;
    }
    .differential-content ul {
        padding-left: 20px;
        text-align: left;
    }

    /* Clientes */
    .client-logos-grid {
        gap: 20px;
    }
    .client-logo-item {
        max-width: 100px;
    }
}