/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background-color: #e8f5e9; /* verde bem claro */
  color: #1b5e20; /* verde escuro */
  line-height: 1.6;
}

/* Navegação */
header {
  width: 100%;
  padding: 20px 40px;
  background: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

nav ul li a {
  color: #1b5e20;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #388e3c;
}

/* Título central */
.page-title {
  text-align: center;
  margin: 20px 0 25px 0; /* espaço reduzido até o card */
}

.page-title h1 {
  font-size: 3rem; /* fonte maior */
  font-weight: bold;
  color: #1b5e20;
}

/* Hero principal */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 70vh;
}

/* Card central */
.hero-card {
  background-color: #c8e6c9; /* verde médio */
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  max-width: 1100px;
  width: 100%;
}

/* Coluna esquerda */
.hero-left {
  flex: 1;
  padding-right: 40px;
}

.hero-left h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1b5e20;
}

.hero-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #1b5e20;
}

.btn {
  display: inline-block;
  background-color: #1b5e20;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #388e3c;
}

/* Coluna direita */
.hero-right {
  flex: 1;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Rodapé */
footer {
  background-color: #c8e6c9;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #1b5e20;
  border-top: 2px solid #a5d6a7;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .hero-left {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .hero-left h2 {
    font-size: 1.8rem;
  }

  .hero-left p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .page-title h1 {
    font-size: 2.2rem; /* ajusta para telas menores */
  }

  .hero-left h2 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
