@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

/* ===== CORES DA IDENTIDADE ===== */
:root {
  --azul-escuro: #071a2f;
  --azul-profundo: #04101f;
  --verde-principal: #19c6a7;
  --verde-claro: #3fe0b8;
  --verde-destaque: #b6f000;
  --texto-claro: #f5f7fa;
  --texto-secundario: #a0a8b7;
  }

/* ===== CORPO ===== */
body {
  margin: 0;
  font-family: 'Roboto Mono', monospace, Arial, sans-serif;
  background: linear-gradient(
    135deg,
    var(--azul-escuro),
    #0b2d4f,
    #0f6f63
  );
  color: var(--texto-claro);
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.highlight {
  background: linear-gradient(
    45deg,
    var(--verde-principal),
    var(--verde-claro)
  );
  color: var(--azul-escuro);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin: 0 0 20px;
}

.green {
  color: var(--verde-claro);
}

.hero-text p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

.date-location {
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--texto-secundario);
}

/* ===== BOTÕES ===== */
.hero-buttons a {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(
    45deg,
    var(--verde-principal),
    var(--verde-claro)
  );
  color: var(--azul-escuro);
  margin-right: 20px;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--verde-claro);
  color: var(--verde-claro);
}

/* ===== IMAGEM HERO ===== */
.hero-image img {
  width: 60%;
  border-radius: 350px;
  box-shadow: 0 0 30px #19c6a755;
}

/* ===== SEÇÕES ===== */
section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
}

h2 {
  color: var(--verde-claro);
  border-left: 4px solid var(--verde-principal);
  padding-left: 12px;
}

/* ===== GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===== CARDS ===== */
card {
  background: rgba(255,255,255,0.06);
  padding: 25px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 160px; /* aumenta altura do card */
}

/* ===== LOGOS ===== */
.card img {
  max-height: 120px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
}


/* ===== MAPA ===== */
iframe {
  width: 100%;
  border-radius: 16px;
}

/* ===== RODAPÉ ===== */
footer {
  background: var(--azul-profundo);
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--texto-secundario);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 840px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-buttons a {
    display: block;
    margin-bottom: 15px;
    width: fit-content;
  }
}
