/* RESET BÁSICO */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #e7ecf1;           /* cinza claro de fundo */
  color: #1f2933;
  line-height: 1.4;
}

/* CONTAINER GERAL */
.page {
  min-height: 100vh;
  padding: 16px;
  max-width: 1120px;             /* largura máxima para desktop */
  margin: 0 auto;
}

/* HERO / HEADER */
.hero {
  background:#2f3a45;  /* cinza escuro azulado */
  color: #f9fafb;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  margin-bottom: 24px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* LOGO */
.logo-area {
  flex-shrink: 0;
}

.logo-placeholder {
  width: 170px;
  height: 170px;
  border-radius: 999px;
  border: 2px dashed rgba(248, 250, 252, 0.55);
  background: radial-gradient(circle at 30% 30%, #4b5563 0, #111827 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
/* .logo-img {
  width: 170px;
  height: 170px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(248, 250, 252, 0.8);
}
@media (min-width: 1024px) {
  .logo-img {
    width: 190px;
    height: 190px;
  }
} */


/* TEXTO HERO */
.hero-text {
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-bottom: 4px;
}

.hero-title {
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* GRID PRINCIPAL (MOBILE FIRST: 1 COLUNA) */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* CARD BASE */
.card {
  background: #f5f7fa;           /* mais claro que o fundo, mas não branco puro */
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 10px;
}

.card-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 16px;
}

/* LISTAS */
.card-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.9rem;
  color: #374151;
}

.card-list li + li {
  margin-top: 6px;
}

/* BOTÃO PRINCIPAL */
.primary-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #111827;
  color: #f9fafb;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.45);
  background: #020617;
}

/* PLACEHOLDERS DE IMAGEM */
.image-placeholder {
  border-radius: 16px;
  background: #dde3eb;
  border: 2px dashed rgba(148, 163, 184, 0.9);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  color: #4b5563;
  padding: 8px;
}
.media-thumb {
  border-radius: 16px;
  width: 100%;
  height: 120px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}


.image-placeholder-lg {
  height: 180px;
}
.trips-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.trips-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .trips-image {
    height: 230px;
  }
}


/* GRID DE FOTOS & VÍDEOS */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

/* GRID PATROCINADORES */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sponsor-placeholder {
  border-radius: 14px;
  background: #e5ebf3;
  border: 2px dashed rgba(148, 163, 184, 0.9);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  color: #4b5563;
  padding: 4px;
}

/* CARD REDES SOCIAIS (ÍCONES) */
.card-social-icons .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(148, 163, 184, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
}

/* HOVERS SIMPLES */
.social-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(148, 163, 184, 0.7);
}

/* ====== RESPONSIVIDADE ====== */

/* Tablets e telas méd*
