/* ==========================================================
   Decreto — Estilo refinado e moderno
   Atualização: visual limpo para texto e cartões apenas nas imagens
========================================================== */

/* ===== Hero Section ===== */
.section-decreto-hero {
  background: var(--white);
  padding: 56px 0 40px;
}
.section-decreto-hero .hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
}
.section-decreto-hero h1 {
  color: var(--secondary-color);
  font-size: clamp(1.6rem, 1.6vw + 1rem, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 6px solid var(--primary-color);
}
.section-decreto-hero p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-figure {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-figure:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
}
.hero-figure svg { width: 100%; height: auto; display: block; }
.hero-figure figcaption {
  text-align: center;
  font-size: .9rem;
  color: var(--dark-gray);
  margin-top: 8px;
}

/* ===== Zebra Section ===== */
.section-zebra {
  background: var(--white);
  padding: 40px 0 80px;
}
.zebra-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 60px 0;
}

/* Alternância imagem ↔ texto */
.section-zebra .zebra-row:nth-of-type(odd) .side--image { order: 1; }
.section-zebra .zebra-row:nth-of-type(odd) .side--text { order: 2; }
.section-zebra .zebra-row:nth-of-type(even) .side--image { order: 2; }
.section-zebra .zebra-row:nth-of-type(even) .side--text { order: 1; }

/* ===== Texto ===== */
.section-zebra .card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.section-zebra .card h3 {
  font-size: clamp(1.4rem, 1.2vw + 1rem, 1.9rem);
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.section-zebra .card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 12px;
}
.section-zebra .card ul {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  padding-left: 18px;
  border-left: 2px solid var(--primary-color);
  margin-top: 8px;
}
.section-zebra .card ul li + li { margin-top: 4px; }

/* ===== Imagens (mantém estilo de cartão) ===== */
.section-zebra .art {
  background: #fff;
  border: 1px solid #e6eef8;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-zebra .art:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.section-zebra .art figcaption {
  font-size: 0.95rem;
  color: #5a5a5a;
  margin-top: 10px;
  text-align: center;
}

/* ===== Placeholder para imagens futuras ===== */
.placeholder .ph {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,#eef2f9 25%,#ffffff 25%,#ffffff 50%,#eef2f9 50%,#eef2f9 75%,#ffffff 75%) 0 0/36px 36px;
  border: 1px dashed #cfe0fb;
}

/* ===== CTA ===== */
.section-zebra .cta {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Responsividade ===== */
@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .zebra-row { grid-template-columns: 1fr; margin: 40px 0; }
  .section-zebra .zebra-row .side--image,
  .section-zebra .zebra-row .side--text { order: initial !important; }
}
