
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
/* =========================
   CORPO DA PÁGINA
   ========================= */
 
/* Define a cor de fundo, a cor do texto
   e o espaçamento entre linhas */
body {
    background-color: #f8f8f8;
    line-height: 1.6;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
 
.sobre {
    padding: 40px;
}
.sobre h1 {
    font-size: 48px;
    font-weight: 300;
    border-bottom: 1px solid #aaa;
    margin-bottom: 40px;
}
.conteudo {
    display: flex;
    min-height: 400px;
}
.texto {
    background: #4f7f4f;
    color: #fff;
    padding: 40px;
    width: 50%;
}
.texto h2{
    margin-top: 0;
}
.imagem {
    width: 50%;
}
.imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: inherit;
}
@media (max-width: 768) {
    .conteudo{
        flex-direction: column;
    }
    .texto, imagem {
        width: 100%;
    }
}
/* Container centralizado com largura máxima
   para organizar o conteúdo */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
 
/* =========================
   NAVBAR (BARRA DE NAVEGAÇÃO)
   ========================= */
 
/* Estilização da barra de navegação */
.navbar {
    background: #9e2525;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(255, 70, 70, 0.808);
}
 
/* Estilo do logo */
.logo {
    color: #f3f3f3;
    font-size: 24px;
    font-style: italic;
}
 
/* Destaque em parte do logo */
.logo span {
    color: #f5f5f5;
    font-weight: bold;
}
 
/* =========================
   BANNER DA SEÇÃO "SOBRE"
   ========================= */
 
/* Banner com imagem de fundo e overlay escuro */
.about-banner {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('https://via.placeholder.com/1200x400');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}
 
/* Título principal do banner */
.about-banner h2 {
    font-size: 48px;
    margin-bottom: 10px;
}
 
/* =========================
   SEÇÃO "QUEM SOMOS"
   ========================= */
 
/* Espaçamento vertical da seção */
.who-we-are {
    padding: 80px 0;
}
 
/* Layout em grid flexível para texto e imagem */
.content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
 
/* Bloco de texto responsivo */
.text-block {
    flex: 1;
    min-width: 300px;
}
 
/* Título da seção */
.text-block h3 {
    font-size: 32px;
    color: #618f37;
    margin-bottom: 20px;
}
 
/* Imagem com bordas arredondadas e sombra */
.image-placeholder img {
    /* Borda e altura da imagem */
    width: 100%;
    border-radius: 10px;
    /* Sombra da imagem */
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.938);
}
 
/* =========================
   MISSÃO, VISÃO E VALORES
   ========================= */
 
/* Seção com fundo branco */
.mvw-section {
    background: #ffffffc2;
    padding: 80px 0;
}
 
/* Grid responsivo para os cards */
.mvw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
 
/* Card individual */
.card {
    text-align: center;
    padding: 30px;
    /*cores do mine card*/
    border: 1px solid #a6a8a3;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
 
/* Efeito ao passar o mouse no card */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
 
/* Ícone do card */
.card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}
 
/* Título do card */
.card h4 {
    color: #fefffd;
    margin-bottom: 15px;
}
 
/* =========================
   RODAPÉ
   ========================= */
 
/* Estilo do footer */
.footer {
    text-align: center;
    padding: 40px 0;
    background: #4d5257;
    color: white;
}
 
 
/* ========================= parte inferior  ========================= */
:root {
  --verde-principal: #4f7f4f;
  --verde-claro: #d7eed7;
  --cinza-escuro: #2f2f2f;
  --cinza-medio: #6b6b6b;
  --cinza-claro: #f4f4f4;
  --branco: #ffffff;
}
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
/* ========================= img ========================= */
body {
  background-color: var(--verde-claro);
  color: var(--verde-principal);
  line-height: 1.7;
}
 
/* ========================= CONTAINER ========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
 
/* ========================= NAVBAR ========================= */
.navbar {
  background: var(--verde-principal);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.267);
}
 
.logo {
  color: var(--branco);
  font-size: 24px;
  font-style: italic;
}
 
.logo span {
  color: var(--verde-claro);
  font-weight: bold;
}
 
/* ======================part sobre ========================= */
.about-banner {
  background: linear-gradient(
    hsl(120, 23%, 40%)
    hsl(120, 25%, 55%)
  ),
  url('https://via.placeholder.com/1200x400');
  background-size: cover;
  background-position: center;
  color: var(--branco);
  padding: 120px 20px;
  text-align: center;
}
 
.about-banner h2 {
  font-size: 48px;
  margin-bottom: 10px;
}
 
/* ========================= SEÇÃO SOBRE ========================= */
.sobre {
  padding: 60px 20px;
}
 
.sobre h1 {
  font-size: 42px;
  font-weight: 300;
  color: var(--verde-principal);
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
 
/* ========================= sobre/missão ========================= */
.conteudo {
  display: flex;
  background: var(--branco);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  min-height: 400px;
}
 
.texto {
  background: var(--verde-principal);
  color: var(--branco);
  padding: 50px;
  width: 50%;
}
 
.texto h2 {
  margin-bottom: 20px;
}
 
.texto p {
  font-size: 0.95rem;
  color: #eef3ee;
}
 
.imagem {
  width: 50%;
}
 
.imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
 
/* ========================= QUEM SOMOS ========================= */
.who-we-are {
  padding: 80px 0;
}
 
.content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
 
.text-block {
  flex: 1;
  min-width: 300px;
}
 
.text-block h3 {
  font-size: 32px;
  color: var(--verde-principal);
  margin-bottom: 20px;
}
 
.image-placeholder img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
 
/* ========================= cards ========================= */
.mvw-section {
  background: var(--verde-claro);
  padding: 80px 0;
}
 
.mvw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
 
.card {
  background: var(--verde-principal);
  border: 1px solid #f5f5f5;
  color: var(--branco);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}
 
.card h4 {
  color: var(--branco);
  margin-bottom: 15px;
}
 
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
 
/* ========================= rodapé ========================= */
.footer {
  text-align: center;
  padding: 40px 0;
  background: var(--cinza-escuro);
  color: var(--branco);
}

/* Hero Section */
.hero-sobre {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px; /* ajuste conforme altura do header */
}

.hero-sobre .container {
    position: relative;
    z-index: 2;
}

.hero-sobre .hero-content {
    max-width: 600px;
}

.hero-sobre .hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;

}

.hero-sobre .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;  
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/fundo de planta 2.png') top center/cover no-repeat;
}

.hero-bg img {
    display: none;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #0b4e23;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #0b4e23;
}

.btn-primary:hover {
    background: #0b4e23;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 78, 35, 0.3);
}

/* História Section */
.historia-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-texto h2 {
    font-size: 2.5rem;
    color: #0b4e23;
    margin-bottom: 2rem;
    font-weight: 700;
}

.historia-texto p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-weight: 600;
}

.historia-imagem {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
   
}

.historia-imagem img {
    width: 100%;
    height: auto;
    display: block;
    
}

/* Section Header Comum */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0b4e23;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* MVV Section */
.mvv-section {
    padding: 5rem 0;
    background: #ffffff;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(11, 78, 35, 0.08);
}

.mvv-card:hover {
    transform: translateY(-10px);
    border-color: #0b4e23;
    box-shadow: 0 15px 40px rgba(11, 78, 35, 0.15);
    background: linear-gradient(135deg, #e8f5f2 0%, #f5f9f7 100%);
}

.mvv-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.mvv-card h3 {
    font-size: 1.6rem;
    color: #0b4e23;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mvv-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Diferenciais Section */
.diferenciais-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5f2 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.diferencial-item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #0b4e23;
}

.diferencial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(11, 78, 35, 0.15);
}

.diferencial-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.diferencial-item h3 {
    font-size: 1.3rem;
    color: #0b4e23;
    margin-bottom: 1rem;
    font-weight: 700;
}

.diferencial-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-sobre {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0b4e23 0%, #1a7a3e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-sobre .btn-primary {
    background: white;
    color: #0b4e23;
    font-weight: 700;
    border: 2px solid #0b4e23;
}

.cta-sobre .btn-primary:hover {
    background: #0b4e23;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-sobre {
        height: 50vh;
    }

    .hero-sobre .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-sobre .hero-content p {
        font-size: 1rem;
    }

    .historia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .historia-texto h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diferencial-item {
        padding: 2rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-sobre {
        height: 45vh;
    }

    .hero-sobre .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-sobre .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .historia-texto p {
        font-size: 0.9rem;
        text-align: left;
    }

    .mvv-card {
        padding: 2rem 1.5rem;
    }

    .mvv-icon {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }
}
 
/* ========================= conf pra cell ========================= */
@media (max-width: 768px) {
  .conteudo {
    flex-direction: column;
  }
 
  .texto,
  .imagem {
    width: 100%;
  }
 
  .texto {
    padding: 30px;
  }
 
  .about-banner h2 {
    font-size: 36px;
  }
}