/* ==========================================================================
   SECTION 3: PRESS ASSETS SECTION
   Ajustado 1:1 com a imagem de referência (03-press-assets.jpg)
   ========================================================================== */

#press-assets {
  padding: var(--space-3xl) 0;
  background-color: var(--color-white);
  color: var(--color-black);
}

.assets-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  width: 100%;
}

.assets-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Tag de Seção: 02 // PRESS em Geist Mono com Preto (#060505) */
.assets-tag {
  font-family: var(--font-mono);
  font-weight: var(--text-mono-weight-medium);
  font-size: 11px;
  line-height: var(--text-mono-line-height);
  letter-spacing: var(--text-mono-letter-spacing);
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
}

/* Título de Seção: Press Assets em 2 Linhas (Refrankt 900 em Fundo Branco) */
.assets-title {
  font-family: var(--font-display);
  font-weight: 900; /* REGRA SPEC: Refrankt Black (900) em fundo branco */
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 90%;
  letter-spacing: var(--text-title-letter-spacing);
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Fotos Oficiais Empilhadas / Grid Responsivo */
.assets-photo-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  width: 100%;
}

.asset-photo-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #e2deda;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-xl);
}

.asset-photo-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.asset-photo-item:hover img {
  transform: scale(1.02);
}

/* Pill Button "Baixar foto" Centralizado no Rodapé da Foto */
.photo-download-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(6, 5, 5, 0.75);
  border: 1px solid rgba(249, 247, 246, 0.7);
  border-radius: 5px;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-weight: var(--text-mono-weight-medium);
  font-size: 12px;
  text-transform: none;
  text-decoration: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  min-height: 44px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.photo-download-pill:hover {
  background-color: var(--color-black);
  border-color: var(--color-white);
}

/* Botões Duplos de Ação no Rodapé de Press Assets */
.press-action-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.btn-press-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 20px var(--space-xl);
  background-color: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
  font-family: var(--font-mono);
  font-weight: var(--text-mono-weight-semibold);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 56px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-press-primary:hover {
  background-color: transparent;
  color: var(--color-black);
}

.btn-press-secondary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 18px var(--space-xl);
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 52px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-press-secondary:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   GAVETA DE IDENTIDADE VISUAL (Pré-visualização de Logos Hi-Fi)
   -------------------------------------------------------------------------- */
.brand-identity-drawer {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-top: var(--space-2xl);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(6, 5, 5, 0.15);
}

.drawer-title {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
}

.logo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  width: 100%;
}

.logo-preview-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(6, 5, 5, 0.2);
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--color-white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(6, 5, 5, 0.1);
}

.logo-preview-box {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  position: relative;
}

.bg-dark-grid {
  background-color: #060505;
  background-image: linear-gradient(rgba(249, 247, 246, 0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(249, 247, 246, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
}

.bg-light-grid {
  background-color: #efeae6;
  background-image: linear-gradient(rgba(6, 5, 5, 0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(6, 5, 5, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
}

.logo-preview-img {
  max-width: 82%;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-preview-img.invert-white {
  filter: brightness(0) invert(1);
}

.logo-card-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background-color: var(--color-white);
  border-top: 1px solid rgba(6, 5, 5, 0.1);
  gap: var(--space-xs);
}

.logo-card-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-black);
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.logo-pill:hover {
  background-color: transparent;
  color: var(--color-black);
}
