/* ============================================================
   VALIDACAO-VERRA.CSS — Exclusivos de pages/validacao-verra.html
   - Tabela de dados + badge Verra
   - Layout 2-col texto+imagem
   - Aviso legal
   - Ornament tamanho menor (texto curto em vez de números)
   ============================================================ */

h1.h1-display {
  font-size: clamp(2.4rem, 6.2vw, 5.25rem);
}

/* Ornaments com texto curto em vez de números */
.ornaments { padding: 32px 0 56px; }
.ornament { padding: 22px 22px; }
.ornament-num {
  font-size: clamp(1.375rem, 1.9vw, 1.75rem);
  line-height: 1.05;
  word-break: keep-all;
}
.ornament-title {
  color: var(--branco-puro);
  font-size: 0.8125rem;
  opacity: 0.92;
}

/* ---------- TABELA DE DADOS + BADGE ---------- */
.data-section { background: var(--branco-puro); }
.data-section h2 { margin-bottom: clamp(28px, 4vw, 48px); max-width: 1280px; }
.data-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 900px) { .data-grid { grid-template-columns: 1.6fr 1fr; } }

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--branco-puro);
  border: 1px solid var(--verde-nevoa);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table tr { transition: background var(--t-fast); }
.data-table tbody tr:hover { background: var(--branco-floresta); }
.data-table th, .data-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--verde-nevoa);
  vertical-align: middle;
}
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: none; }
.data-table th {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-medio);
  width: 38%;
  background: var(--branco-floresta);
}
.data-table td {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--quase-preto);
  font-size: 1rem;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--verde-nevoa);
  color: var(--verde-floresta);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.status-pill::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--verde-vivo);
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

/* Badge Verra (placeholder visual estilizado) */
.verra-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--branco-floresta);
  border: 1px solid var(--verde-nevoa);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.verra-badge-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.verra-badge-mark {
  width: clamp(96px, 14vw, 140px);
  height: clamp(96px, 14vw, 140px);
  border-radius: 50%;
  background: var(--verde-medio);
  color: var(--branco-puro);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(45,106,79,0.30);
}
.verra-badge-mark svg { width: 55%; height: 55%; }
.verra-badge-text { text-align: center; }
.verra-badge-text .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  letter-spacing: 0.06em;
  color: var(--verde-floresta);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.verra-badge-text .brand-sub {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  color: var(--verde-medio);
  text-transform: uppercase;
  display: block;
}
.verra-badge-text .brand-caption {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--cinza-suave);
  font-style: italic;
}

/* ---------- LAYOUT 2-COL (texto + imagem lado a lado) ---------- */
.text-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .text-with-image { grid-template-columns: 1fr 1fr; gap: clamp(36px, 4.5vw, 64px); }
  .text-with-image.reverse .text-with-image-photo { order: 2; }
}
.text-with-image-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--verde-nevoa);
  box-shadow: var(--shadow-lg);
}
.text-with-image-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.text-with-image-photo:hover img { transform: scale(1.04); }
.text-with-image-content h2 { margin-bottom: 24px; }
.text-with-image-content .closing-box { margin: 0 0 24px; max-width: 100%; }

/* ---------- AVISO LEGAL ---------- */
.legal-notice {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--branco-floresta);
  border-top: 1px solid var(--verde-nevoa);
}
.legal-notice p {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--cinza-suave);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  font-style: italic;
}
.legal-notice .legal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.legal-notice .legal-icon svg {
  width: 22px; height: 22px;
  color: var(--verde-medio);
}
