/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variáveis globais */
:root {
  --primary-color: #00c851;
  --secondary-color: #3b4a3f;
  --background-color: #f4f4f4;
  --text-color: #333;
  --text-muted: #555;
  --font-size-large: 1.6rem;
  --font-size-small: 1rem;
  --card-radius: 10px;
}

/* Estilo geral */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Cabeçalho */
header {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--secondary-color);
  height: 8vh;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.logo img {
  margin-left: 8px;
  width: 30px;
  height: 30px;
}

.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  margin-left: 20px;
}

.nav-list a {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-list a:hover {
  background-color: var(--primary-color);
}

/* Seções e Cards */
.section-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  background-color: #fff;
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.section-icon {
  width: 40px;
  height: 40px;
}

h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Cards */
.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 15px;
  width: 18rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  border-radius: var(--card-radius);
  object-fit: cover;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card-body {
  margin-top: 10px;
}

.card-text {
  font-size: var(--font-size-small);
  color: var(--text-muted);
}

/* Botões */
.btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background-color: #028a3b;
}

/* Rodapé */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-info h4,
.footer-social h4,
.footer-location h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.footer-info a,
.footer-social a {
  color: #fff;
  text-decoration: none;
}

.footer-info a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

.footer-location p {
  color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  .nav-list {
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-list li {
    margin: 10px 0;
  }

  .card {
    width: 100%;
  }

  .section-container {
    padding: 20px 10px;
  }
}
