/* ==========================================================
   index.css — estende BB-Style.css, mesma paleta
   (--yellow, --yellow-soft, --black, --white, --gray-text,
   --gray-muted, --cream)
   ========================================================== */

body.home {
  margin: 0;
}

/* ---------- Hero em duas colunas coloridas ---------- */

.home-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 560px;
}

.home-hero__pitch {
  background: var(--yellow);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero__pitch > * {
  max-width: 460px;
  width: 100%;
  margin-left: auto;
}

.home-hero__titulo {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 6px;
}

.home-hero__titulo small {
  display: block;
  font-size: 0.4em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4a4416;
  margin-top: 6px;
}

.home-hero__slogan {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin: 18px 0 0;
  max-width: 30ch;
  line-height: 1.4;
}

.home-hero__opcoes {
  background: var(--cream);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero__opcoes > * {
  max-width: 460px;
  width: 100%;
}

.hero-selecao__label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray-text);
  margin: 0 0 18px;
}

/* ---------- Cartões de escolha (visitante / anunciante) ---------- */
/* Assinatura visual: leve rotação de "aba de guia" que se
   endireita e levanta no hover, com sombra suave — reservada
   só para elementos interativos como este. */

.hero-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.explorar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  color: var(--black);
  transform: rotate(-1deg);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.15s ease, box-shadow 0.18s ease;
}

.explorar-card:nth-child(even) {
  transform: rotate(1deg);
}

.explorar-card:hover,
.explorar-card:focus-visible {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  outline: none;
}

.explorar-card--visitante:hover {
  background: var(--yellow-soft);
}

.explorar-card--anunciante {
  background: var(--black);
  color: var(--white);
}

.explorar-card--anunciante:hover {
  background: #222222;
}

.explorar-card--anunciante .explorar-card__texto {
  color: var(--gray-muted);
}

.explorar-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.explorar-card__tag--visitante {
  background: var(--yellow);
  color: var(--black);
}

.explorar-card__tag--anunciante {
  background: var(--black);
  color: var(--yellow);
}

.explorar-card--anunciante .explorar-card__tag--anunciante {
  background: var(--yellow);
  color: var(--black);
}

.explorar-card__titulo {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 6px;
}

.explorar-card__texto {
  font-size: 14px;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.explorar-card__seta {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  transition: transform 0.15s ease;
}

.explorar-card:hover .explorar-card__seta {
  transform: translateX(4px);
}

/* ---------- Rodapé com marca + contato ---------- */

.footer__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--yellow);
  display: block;
}

.footer__tagline {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--gray-muted);
}

.footer__contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--yellow);
  outline: none;
}

.footer__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--yellow);
}

.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: var(--gray-muted);
  margin-top: 14px;
}

/* ---------- Responsivo ---------- */

@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero__pitch,
  .home-hero__opcoes {
    padding: 40px 24px;
  }

  .home-hero__pitch > *,
  .home-hero__opcoes > * {
    max-width: none;
    margin-left: 0;
  }

  .topbar {
    padding: 14px 20px;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .nav a {
    font-size: 13px;
    padding: 8px 10px;
  }

  .explorar-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .explorar-card__seta {
    align-self: flex-end;
  }
}