/*
Theme Name: Timavo Site
Author: Timavo
Description: Novo site Timavo
Version: 1.0
*/

{ 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    /* Removendo max-width e padding para o site poder ocupar a tela toda */
}

.container {
    max-width: 1200px; /* Mantém o cabeçalho alinhado e contido */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

h1 {
    color: #111;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Reset básico para tirar margens indesejadas */
* { margin: 0; padding: 0; box-sizing: border-box; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Estilo do Cabeçalho */
.site-header {
    background-color: #0b0b14;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-area {
    display: flex !important;
    flex-direction: row !important; 
    align-items: center;          
    gap: 25px;                   
}

.logo-area img {
    height: 55px;                 
    width: auto;
    display: block;
}

.logo {
    height: 20px
    width: auto;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 500;
    transition: 0.3s;
}

.main-menu a:hover {
    color: #ccc;
}

/* Prepara o item principal para segurar a caixinha do submenu */
.main-menu .has-submenu {
    position: relative; 
}

/* O visual da caixinha do submenu escondida */
.main-menu .submenu {
    position: absolute;
    top: 100%; /* Fica colado exatamente embaixo da palavra Sobre */
    left: 0;
    background-color: #12141c; /* A mesma cor escura do seu header */
    min-width: 180px; /* Largura da caixinha */
    padding: 10px 0;
    display: none; /* A mágica começa aqui: esconde por padrão */
    flex-direction: column; /* Coloca um link embaixo do outro */
    gap: 0;
    border-radius: 4px; /* Arredonda as pontinhas */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Uma sombra pra descolar do fundo */
    z-index: 100; /* Garante que fique por cima do carrossel */
}

/* Faz a caixinha aparecer quando o mouse passa no item principal */
.main-menu .has-submenu:hover .submenu {
    display: flex;
}

/* Estilo dos itens e links dentro do submenu */
.main-menu .submenu li {
    width: 100%;
}

.main-menu .submenu a {
    padding: 12px 20px;
    display: block; /* Ocupa a linha toda pra ficar mais fácil de clicar */
    font-size: 13px;
    text-transform: capitalize;
}

/* Efeito ao passar o mouse nos itens do submenu */
.main-menu .submenu a:hover {
    background-color: rgba(255, 255, 255, 0.05); /* Dá uma clareada sutil no fundo */
    color: #fff;
}

/* Estilo da Seção Hero */
.hero-section {
    width: 100%; /* Garante largura total */
    height: 100vh; /* Ocupa a altura inteira da tela */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff; /* Define a cor padrão para branco para todo o conteúdo aqui */
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff; /* Garante que o H1 seja branco */
    text-shadow: 8px 8px 4px rgba(0, 0, 0, 0.9);

}

.hero-content p {
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff; /* Garante que o parágrafo seja branco */
    text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.9);
}

/* Ajuste para o texto não ficar colado no topo por causa do header fixo */
body {
    padding: 0; 
}

/* A seção pai precisa ser relativa para segurar o conteúdo absoluto */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Camada do texto fixo */
.hero-fixed-content {
    position: absolute;
    top: 55%; /* Ajusta a altura (50% é o meio exato) */
    left: 50%;
    transform: translate(-50%, -50%); /* Truque para centralizar perfeitamente */
    z-index: 10; /* Garante que o texto fique na frente das fotos */
    text-align: center;
    width: 100%;
    pointer-events: none; /* Deixa os cliques passarem para as setas do carrossel se precisar */
}

.hero-fixed-content h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: none;
}

.hero-fixed-content p {
    color: #fff;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Swiper fundo */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

/* SEÇÃO BOAS-VINDAS */
.welcome-section {
    background-color: #cadb6e; 
    padding: 100px 20px; 
    text-align: center;
    color: #1a2b4b; /* Tom de azul marinho escuro para o texto */
}

.container-small {
    max-width: 900px; /* Isso impede que o texto fique comprido demais em telas grandes */
    margin: 0 auto;
}

.welcome-section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
}

.welcome-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: left;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .welcome-section h2 { font-size: 30px; }
    .welcome-section { padding: 60px 20px; }
}

/* SEÇÃO SOBRE */
.about-section {
    display: flex;
    flex-wrap: wrap; /* Permite que uma coluna vá para baixo no celular */
    width: 100%;
    min-height: 850px; /* Garante uma altura mínima legal */
}

/* Configuração geral das duas colunas */
.about-column {
    flex: 1; /* Cada uma ocupa 50% do espaço disponível */
    min-width: 50%; /* Garante o 50/50 no desktop */
}

/* Estilo do Lado Esquerdo (Azul) */
.about-text-side {
    background-color: #4e8ab6; 
    color: #fff;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    padding: 80px 10%; /* Padding lateral em % ajuda na responsividade */
}

.about-inner-content {
    max-width: 500px; /* Impede o texto de ficar largo demais na coluna */
}

.about-logo {
    width: 150px;
    margin-bottom: 30px;
}

.about-text-side h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-subtitle {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text-side p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Estilo do Lado Direito (Imagem) */
.about-image-side {
    background-size: cover;
    background-position: center;
    min-height: 400px; /* Altura para garantir que a imagem apareça no celular */
}

/* Ajuste para Celular: As colunas ficam uma em cima da outra */
@media (max-width: 992px) {
    .about-column {
        flex: 100%;
        min-width: 100%;
    }
}

/* Seção Tigu (Reuso da estrutura de colunas) */
.tigu-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 850px;
}

/* Lado Direito (Laranja) */
.tigu-text-side {
    background-color: #f19066;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
}

/* Lado Esquerdo (Imagem) */
.tigu-image-side {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Reutilizamos os estilos de texto da seção anterior para manter o padrão */
.tigu-text-side h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.tigu-text-side p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Ajuste de responsividade para inverter a ordem no celular */
@media (max-width: 992px) {
    .tigu-section {
        flex-direction: column-reverse; /* No celular, o texto sobe e a imagem desce */
    }
}

/*ESPAÇAMENTO ENTRE AS SESSÕES */
.spacer {
    width: 100%;
    height: 40px; /* Altere aqui para a altura que você desejar */
    background-color: #fff; /* Se quiser que o espaço seja branco */
}

/* VENDA DE TECIDOS */
.sales-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 800px;
}

.sales-column {
    flex: 1;
    min-width: 50%;
}

/* Lado do Texto */
.sales-text-side {
    background-color: #344455; 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
}

.sales-inner-content {
    max-width: 450px;
}

.sales-text-side h2 {
    font-size: 45px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.sales-text-side p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Estilização do Botão */
.btn-sales {
    display: inline-block;
    background-color: #fff;
    color: #344455;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 50px; /* Deixa o botão bem arredondado */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

/* Efeito ao passar o mouse no botão */
.btn-sales:hover {
    background-color: #f0f0f0;
    transform: scale(1.05); /* Dá um leve zoom no botão */
}

/* Lado da Imagem */
.sales-image-side {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Responsividade para Celular */
@media (max-width: 992px) {
    .sales-column {
        flex: 100%;
        min-width: 100%;
    }
}

/* Título Principal da Seção */
.main-title {
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    color: #344455;
    margin: 20px 0; /* Espaço em cima e embaixo do título */
    text-transform: uppercase;
}

/*Título perfeitamente no centro */
.section-title-wrapper {
    width: 100%;
    text-align: center;
}

.main-title {
    font-size: 40px;
    font-weight: 900;
    color: #344455;
    margin-top: 0px; 
    margin-bottom: 20px; 
    text-transform: uppercase;
}

/* Seção Aplicações */
.apps-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #db9eb0; /* O rosa preenche toda a faixa do site */
}

.apps-column {
    flex: 1;
    min-width: 50%;
}

/* Lado do Texto */
.apps-text-side {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Empurra o conteúdo um pouco mais para o centro da tela */
    padding: 80px 10% 80px 10%;
    color: #344455;
}

.apps-inner-content {
    max-width: 500px;
}

.apps-text-side h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.apps-text-side p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Imagem Retangular */
.apps-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 7% 40px 0%; 
}

.apps-image-side img {
    width: 100%; 
    height: auto; 
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}

.btn-dark {
    display: inline-block;
    background-color: #344455;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-dark:hover {
    background-color: #1a2b4b;
    transform: translateY(-3px);
}

/* Ajuste Responsivo */
@media (max-width: 992px) {
    .apps-column {
        flex: 100%;
        min-width: 100%;
    }
    .apps-text-side {
        justify-content: center;
        padding: 60px 5%;
    }
    .apps-image-side {
        padding: 20px 5% 60px 5%;
    }
}

/* Seção Estamparia Digital */
.digital-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #49636e; 
}

/* Lado do Texto */
.digital-text-side {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Mantém o alinhamento centralizado com o resto do site */
    padding: 80px 10% 80px 10%;
    color: #fff; /* Aqui o texto fica branco */
}

.digital-text-side h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.digital-text-side p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Lado da Imagem */
.digital-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 2% 40px 0%; 
}

.digital-image-side img {
    width: 100%; 
    height: auto; 
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15); 
}

/* Responsividade Celular */
@media (max-width: 992px) {
    .digital-text-side {
        justify-content: center;
        padding: 60px 5%;
    }
    .digital-image-side {
        padding: 20px 5% 60px 5%;
    }
}

/* Seção Lavanderia */
.lavanderia-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #FADD8B;
}

/* Lado do Texto */
.lavanderia-text-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 10% 80px 10%;
    color: #344455; /* Texto escuro */
}

.lavanderia-text-side h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.lavanderia-text-side p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Responsividade Celular */
@media (max-width: 992px) {
    .lavanderia-text-side {
        justify-content: center;
        padding: 60px 5%;
    }
}

/* Seção Tinturaria */
.tinturaria-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #5d2e3b;
}

/* Lado do Texto */
.tinturaria-text-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 10% 80px 10%;
    color: #fff; 
}

.tinturaria-text-side h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.tinturaria-text-side p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Responsividade Celular */
@media (max-width: 992px) {
    .tinturaria-text-side {
        justify-content: center;
        padding: 60px 5%;
    }
}

/* Seção Trabalhe Conosco */
.work-section {
    padding: 100px 5%;
    background-color: #fff;
    color: #344455;
}

.work-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto; /* Centraliza a caixa e dá um espaço de 60px embaixo */
}

/* Reduz a margem do título só pra essa seção ficar mais próxima do texto */
.work-header .main-title {
    margin-top: 0;
    margin-bottom: 30px;
}

.work-intro {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.email-link {
    color: #344455;
    font-weight: bold;
    text-decoration: underline; 
}

.email-link:hover {
    color: #f19066; 
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    column-gap: 40px; 
    row-gap: 50px; 
    max-width: 1000px; 
    margin: 0 auto; 
}

/* Cada item individual do grid */
.benefit-item {
    display: flex;
    align-items: center; 
    gap: 20px; 
}

.benefit-item img {
    width: 70px; /
    height: auto;
}

.benefit-item span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #344455;
}

/* Responsividade: Ajustando o Grid para Celulares e Tablets */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .work-intro br {
        display: none; 
    }
}

/* --- RODAPÉ GLOBAL --- */
.site-footer {
    background-color: #12141c;
    padding: 80px 5%;
    color: #fff;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 50px; 
}

.footer-column {
    flex: 1;
    min-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-column a {
    color: #fff;
    text-decoration: underline;
}

.footer-column a:hover {
    color: #f19066;
}

/* Container do Mapa */
.footer-map {
    width: 100%;
    max-width: 380px;
    margin-top: 15px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsividade Celular */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 60px;
    }
}

/* Título centralizado sem interferência */
.historia-section {
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

/* Ajuste fino no título */
.historia-centralizada {
    text-align: center;
    width: 100%;
    display: block;
    margin-bottom: 60px;
    font-size: 40px;
    color: #12141c;
    font-weight: 900;
    border: none;
}

/* Forçando o Grid a ter 2 colunas de 50% cada */
.historia-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* O card escuro */
.historia-card {
    background-color: #12141c;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Imagens do carrossel dentro do card */
.historia-card .swiper {
    width: 100%;
    height: 300px;
}

.historia-card .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.historia-card-content {
    padding: 40px;
    color: #fff;
}

/* Ajuste para telas menores (Celular) */
@media (max-width: 850px) {
    .historia-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Caixa geral que segura todos os tecidos */
.tecidos-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 60px 40px;
    max-width: 1200px;
    margin: 50px auto 100px auto;
    padding: 0 20px;
}

/* O cartão individual de cada tecido */
.tecido-card {
    text-align: center;
}

/* A foto do tecido */
.tecido-card img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    margin-bottom: 25px;
    background-color: #f5f5f5; 
}

/* Título do tecido */
.tecido-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #12141c;
    margin-bottom: 15px;
}

/* Especificações */
.tecido-card p {
    font-size: 13px;
    color: #555555; 
    margin-bottom: 6px;
    line-height: 1.2;
}

/* Quebrando o grid para telas menores */
@media (max-width: 992px) {
    .tecidos-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

@media (max-width: 600px) {
    .tecidos-grid-container {
        grid-template-columns: 1fr; /* 1 coluna no celular */
    }
}

/* --- SESSÃO DE ORÇAMENTO --- */

.orcamento-section {
    max-width: 850px;
    margin: 80px auto 100px auto;
    padding: 0 20px;
}

/* Textos do cabeçalho */
.orcamento-header {
    text-align: center;
    margin-bottom: 40px;
}

.orcamento-header h2 {
    font-size: 32px;
    font-weight: 900;
    color: #12141c;
    margin-bottom: 15px;
}

.orcamento-header p {
    font-size: 18px;
    font-weight: 600;
    color: #12141c;
}

/* A caixa azul clara */
.orcamento-box {
    background-color: #e8f0fc;
    padding: 50px;
}

.orcamento-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px; 
}

/* Alinhamento dos campos e labels */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width, 
.form-submit.full-width {
    grid-column: 1 / -1; 
}

.form-group label {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #555;
    background-color: #fff;
    font-size: 14px;
    font-family: inherit;
}

/* Estilo do botão preto */
.form-submit {
    text-align: center;
    margin-top: 15px;
}

.form-submit button {
    background-color: #12141c;
    color: #fff;
    border: none;
    padding: 15px 60px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit button:hover {
    background-color: #344455;
}

/* Responsividade: no celular, tudo vira uma coluna só */
@media (max-width: 768px) {
    .orcamento-form {
        grid-template-columns: 1fr;
    }
    
    .orcamento-box {
        padding: 30px 20px;
    }
}

/* --- PÁGINA APLICAÇÕES --- */

.aplicacoes-container {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

/* O quadro escuro */
.aplicacao-card {
    background-color: #12141c;
    border-radius: 10px;
    padding: 50px 60px; 
    display: grid;
    grid-template-columns: 4fr 6fr; 
    gap: 50px; 
    align-items: center; 
    margin-bottom: 40px; 
}

/* Ajuste da foto */
.aplicacao-imagem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; 
}

/* Textos dentro do quadro */
.aplicacao-texto h2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
}

.aplicacao-texto p {
    color: #e5e7eb; 
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.aplicacao-texto p:last-child {
    margin-bottom: 0;
}

/* Responsividade: No celular a foto vai pra cima e o texto pra baixo */
@media (max-width: 850px) {
    .aplicacao-card {
        grid-template-columns: 1fr; /* Vira uma coluna só */
        padding: 40px 25px;
        gap: 35px;
    }
}

.aplicacao-card.card-inverso {
    grid-template-columns: 6fr 4fr; 
}

/* Ajuste de responsividade exclusivo para o quadro invertido */
@media (max-width: 850px) {
    .aplicacao-card.card-inverso {
        grid-template-columns: 1fr; /* Volta a ser uma coluna só no celular */
    }
    
    /* Joga a imagem para cima do texto na tela do celular */
    .aplicacao-card.card-inverso .aplicacao-imagem {
        order: -1; 
    }
}

/* --- PÁGINA SUSTENTABILIDADE --- */

.sustentabilidade-section {
    padding: 0 20px 100px 20px;
    background-color: #ffffff;
}

/* Container centralizado */
.container-sustentabilidade {
    max-width: 1000px; 
    margin: 0 auto;
}

/* Formatação do Texto */
.sustentabilidade-texto {
    text-align: center;
    margin-bottom: 50px;
}

.sustentabilidade-texto p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444; 
    margin-bottom: 25px;
}

/* Ajuste da Imagem Grande */
.sustentabilidade-imagem img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .sustentabilidade-texto p {
        font-size: 15px; 
        text-align: left; 
    }
}

/* --- PÁGINA CONTATO --- */

/* Faixa escura pegando de ponta a ponta */
.contato-faixa-escura {
    background-color: #12141c; 
    padding: 70px 20px 90px 20px;
    margin-bottom: 80px; /* Dá o espaço antes de chegar na newsletter */
}

/* Limita a largura do formulário para não esticar demais na tela toda */
.contato-container {
    max-width: 800px;
    margin: 0 auto;
}

.contato-chamada {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
}

/* A caixa azul clara que abriga o form */
.contato-caixa-azul {
    background-color: #e8f0fc;
    padding: 50px 60px;
}

/* Grid do Formulário de Contato */
.contato-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
    gap: 25px 40px;
}

.campo-grupo {
    display: flex;
    flex-direction: column;
}

/* Força o elemento a ocupar as duas colunas */
.linha-cheia {
    grid-column: 1 / -1;
}

.campo-grupo label {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
}

.campo-grupo input,
.campo-grupo textarea {
    padding: 12px;
    border: 1px solid #777; /* Uma borda cinza fina e elegante */
    background-color: transparent; /* Deixa o fundo do input com a mesma cor da caixa */
    font-size: 14px;
    font-family: inherit;
}

.botao-enviar-container {
    text-align: center;
    margin-top: 10px;
}


/* --- SEÇÃO NEWSLETTER --- */

.newsletter-section {
    padding: 0 20px 100px 20px;
    background-color: #ffffff;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-container h2 {
    font-size: 28px;
    font-weight: 800;
    color: #12141c;
    margin-bottom: 40px;
}

.newsletter-grupo {
    text-align: left;
}

.newsletter-grupo label {
    display: block;
    font-size: 12px;
    color: #333;
    margin-bottom: 5px;
}

/* Cola o input de email e o botão "Assinar" um no outro */
.newsletter-linha-botao {
    display: flex;
}

.newsletter-linha-botao input {
    flex-grow: 1; /* O input cresce para ocupar o espaço que sobrar */
    padding: 15px;
    border: 1px solid #12141c;
    font-size: 16px;
}

/* Botão escuro padrão usado nos dois formulários */
.botao-escuro {
    background-color: #12141c;
    color: #ffffff;
    border: none;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.botao-escuro:hover {
    background-color: #344455;
}


/* --- RESPONSIVIDADE (CELULARES) --- */
@media (max-width: 768px) {
    .contato-form-grid {
        grid-template-columns: 1fr; /* Quebra para uma coluna só */
    }
    
    .contato-caixa-azul {
        padding: 30px 20px;
    }
    
    .newsletter-linha-botao {
        flex-direction: column; /* Coloca o botão embaixo do input */
        gap: 10px;
    }
    
    .botao-escuro {
        width: 100%; /* Botão preenche a tela no celular */
    }
}


/* Zera as margens padrão do navegador */
html, body {
    margin: 0;
    padding: 0;
}

/* Transforma o corpo do site em uma coluna flexível que ocupa 100% da tela */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

footer, .site-footer {
    margin-top: auto;
}