/* about.css */

/* 1. IMPORTAÇÃO DAS FONTES (coloque no seu CSS principal ou aqui) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Lato:wght@400;700&display=swap');

/* 2. VARIÁVEIS E ESTILOS GERAIS */
:root {
  /* Substituindo a fonte padrão pela nova combinação */
  --font-family-headings: 'Montserrat', sans-serif;
  --font-family-body: 'Lato', sans-serif;
  --section-padding: 6rem 0;
  --card-background: #FFFFFF;
  --card-shadow: 0 4px 15px rgba(33, 50, 74, 0.05);
  --card-shadow-hover: 0 8px 25px rgba(33, 50, 74, 0.1);
  --border-radius: 8px;
}

body {
  /* Garantindo que a nova fonte de corpo seja aplicada */
  font-family: var(--font-family-body);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  /* Espaçamento interno para telas menores */
  position: relative;
  /* Necessário para que o conteúdo fique sobre o bg-animated */
  z-index: 2;
}

/* 3. ESTILOS DAS SEÇÕES */
.about-section,
.about-hero,
.about-cta {
  padding: var(--section-padding);
  text-align: center;
}

.section-content {
  max-width: 750px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-family-headings);
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--accent-hover);
  /* Um pouco mais suave que o título */
}

/* 4. COMPONENTES ESPECÍFICOS */

/* Hero */
.about-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about-hero__title {
  font-family: var(--font-family-headings);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.about-hero__subtitle {
  font-size: 1.25rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--accent-hover);
}

/* Missão */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.mission-card {
  background-color: var(--card-background);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.mission-card__icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.mission-card__title {
  font-family: var(--font-family-headings);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.mission-card__text {
  font-size: 1rem;
  line-height: 1.6;
}

/* Valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  border: 1px solid #E0E8F2;
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.value-card:hover {
  border-color: var(--accent);
  background-color: var(--white);
}

.value-card h3 {
  font-family: var(--font-family-headings);
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* CTA */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--font-family-headings);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.cta-button.primary {
  background-color: var(--accent);
  color: var(--white);
}

.cta-button.primary:hover {
  background-color: var(--accent-hover);
  color: var(--white);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}


/* 5. ANIMAÇÕES DE SCROLL */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* 6. RESPONSIVIDADE */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .about-hero__title {
    font-size: 2.75rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 2rem 1rem;
  }

  .about-section,
  .about-hero,
  .about-cta {
    padding: 4rem 0;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 80%;
    text-align: center;
  }
}

/* ============================================ */
/* 7. SEÇÃO FUNDADOR (NOVO)                     */
/* ============================================ */

.founder-section-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  /* Coluna da imagem com tamanho fixo e texto flexível */
  gap: 3rem;
  align-items: center;
  text-align: left;
  max-width: 950px;
  /* Limita a largura para melhor leitura */
  margin: 0 auto;
}

.founder-image-wrapper {
  width: 250px;
  height: 250px;
}

.founder-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garante que a imagem preencha o círculo sem distorcer */
  border-radius: 50%;
  /* Transforma a imagem em um círculo perfeito */
  box-shadow: var(--card-shadow);
  border: 4px solid var(--accent-hover);
}

.founder-name {
  font-family: var(--font-family-headings);
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.founder-role {
  font-family: var(--font-family-headings);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-bio p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--accent-hover);
  margin-bottom: 1rem;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

/* ============================================ */
/* 8. RESPONSIVIDADE PARA SEÇÃO FUNDADOR (NOVO) */
/* ============================================ */

@media (max-width: 992px) {
  .founder-section-grid {
    gap: 2rem;
    grid-template-columns: 200px 1fr;
  }

  .founder-image-wrapper {
    width: 200px;
    height: 200px;
  }

  .founder-name {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .founder-section-grid {
    grid-template-columns: 1fr;
    /* Coluna única em telas menores */
    text-align: center;
  }

  .founder-image-wrapper {
    margin: 0 auto 2rem auto;
    /* Centraliza a imagem e adiciona espaço abaixo */
  }

  .founder-text-wrapper {
    text-align: center;
  }

  .founder-bio {
    text-align: left;
    /* Mantém o texto da bio alinhado à esquerda para melhor leitura */
  }
}