/* ============================================================
   ASSOCIADOS.CSS — Estilo da página "Associe-se ao IDEAM"
   ============================================================ */

/* ---------- Estrutura Geral ---------- */
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9fafb;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
}

/* ---------- Cabeçalhos e Sessões ---------- */
h1, h2, h3 {
  color: #064e3b; /* Verde Amazônico */
  margin-bottom: 15px;
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 100px;
  color: #064e3b;
}

h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 80px;
}

h2 i {
  color: #16a34a;
  margin-right: 10px;
}

p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 20px;
  text-align: center;
}

/* ---------- Seções dos Eixos ---------- */
.eixo {
  margin-top: 60px;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.vantagem {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vantagem:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.vantagem img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #16a34a;
}

.vantagem h3 {
  font-size: 1.2rem;
  color: #064e3b;
  margin: 15px;
}

.vantagem p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 15px 20px;
  line-height: 1.5;
}

/* ---------- Benefícios ---------- */
.beneficios {
  background: #ecfdf5;
  border-radius: 12px;
  padding: 40px 30px;
  margin-top: 80px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.beneficios h2 {
  color: #047857;
  margin-bottom: 20px;
}

.beneficios ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beneficios ul li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.beneficios ul li::before {
  content: "✓";
  color: #16a34a;
  font-weight: bold;
}

/* ---------- Botão CTA ---------- */
.cta-container {
  text-align: center;
  margin-top: 60px;
}

.botao-cta {
  background: #047857;
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.botao-cta:hover {
  background: #059669;
  transform: scale(1.05);
}

/* ---------- Popup do Formulário ---------- */
.popup-formulario {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

/* Personaliza a barra de rolagem */
.popup-formulario::-webkit-scrollbar {
  width: 10px;
}

.popup-formulario::-webkit-scrollbar-thumb {
  background-color: #047857;
  border-radius: 6px;
}

.popup-formulario::-webkit-scrollbar-track {
  background: #d1fae5;
}

.popup-formulario .conteudo {
  background: #fff;
  padding: 20px;
  max-width: 800px;
  width: 100%;
  border-radius: 12px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-formulario .fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  transition: color 0.2s;
}

.popup-formulario .fechar:hover {
  color: #047857;
}

iframe {
  width: 100%;
  height: 550px;
  border: none;
}

/* ---------- Animação ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsividade ---------- */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
    margin-top: 60px;
  }

  .vantagem img {
    height: 150px;
  }

  .botao-cta {
    width: 90%;
  }

  .beneficios ul li {
    flex-direction: column;
    text-align: center;
  }
}
