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

/* Estilos do corpo */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header fixo */
header {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0.8;
  transition: top 0.3s ease;
}

header.visible {
  top: 0;
}

.logo-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  max-width: 100%;
}

/* Seção hero com imagem wide */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/cover.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
}

.logo-container-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logo-container-hero.hidden {
  opacity: 0;
}

.logo-hero {
  width: 80vw;
  max-width: 600px;
  min-width: 200px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rodapé */
footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: auto;
}

footer p a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
}

footer p a:hover {
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
  .logo {
      height: 40px;
  }

  footer {
      font-size: 14px;
  }
}

/* Estilo para a seção quote */
.quote {
  padding: 50px 20px;
  background-color: #f5f5f5;
  text-align: center;
  font-family: 'Georgia', serif;
}

.text-content {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .text-content {
      font-size: 32px;
  }
}

@media (max-width: 500px) {
  .text-content {
      font-size: 24px;
  }
}

/* Estilo da seção Missão, Visão e Valores */
.mission-vision-values {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.mission-vision-values .container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mission-vision-values .column {
  flex: 1;
  margin: 0 20px;
  min-width: 280px;
}

.mission-vision-values h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.mission-vision-values p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .mission-vision-values .container {
    flex-direction: column;
    align-items: center;
  }

  .mission-vision-values .column {
    margin: 20px 0;
  }
}

/* Estilos para as Páginas de Termos de Uso e Política de Privacidade */
.terms-content, .privacy-content {
  padding: 20px 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.terms-content h2, .privacy-content h2 {
  margin-top: 30px;
  font-size: 24px;
  color: #2c3e50;
}

.terms-content p, .privacy-content p {
  margin-top: 10px;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}

.terms-content ul, .privacy-content ul {
  margin-top: 10px;
  margin-left: 20px;
}

.terms-content ul li, .privacy-content ul li {
  margin-bottom: 10px;
  font-size: 18px;
  color: #555;
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2c3e50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  opacity: 1;
  box-sizing: border-box;
}

.page-header h1 {
  font-size: 24px;
  margin: 0;
}

.page-header p {
  font-size: 12px;
  margin: 0;
}

main {
  padding-top: 80px;
}

.update-date {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 20px;
  }

  .page-header p {
    font-size: 10px;
  }
  
  .terms-content, .privacy-content {
    padding: 30px 15px;
  }

  .terms-content h2, .privacy-content h2 {
    font-size: 22px;
  }

  .terms-content p, .privacy-content p,
  .terms-content ul li, .privacy-content ul li {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
    
  .terms-content, .privacy-content {
    padding: 20px 10px;
  }

  .terms-content h2, .privacy-content h2 {
    font-size: 20px;
  }

  .terms-content p, .privacy-content p,
  .terms-content ul li, .privacy-content ul li {
    font-size: 14px;
  }
}
