/* ============================================================
   PROC-PAGE.CSS — Estilos das páginas de procedimentos
   ============================================================ */

/* ---- Hero ---- */
.proc-hero {
  padding: calc(var(--header-h, 72px) + var(--space-16)) 0 var(--space-16);
  text-align: center;
}

.proc-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-4);
}

.proc-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.proc-breadcrumb a:hover {
  color: var(--accent);
}

.proc-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.proc-hero h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto var(--space-5);
}

.proc-hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

/* ---- Intro ---- */
.proc-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.proc-intro p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.proc-sub {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

/* ---- Cards grid ---- */
.proc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1040px;
  margin: 0 auto;
}

.proc-card {
  background: var(--bg);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.proc-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(201,168,76,0.12);
}

.proc-card-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.proc-card-icon svg {
  width: 100%;
  height: 100%;
}

.proc-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.proc-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Steps ---- */
.proc-steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.proc-step {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.proc-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #0B1D3A;
  font-family: 'Georgia', serif;
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-step h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.proc-step p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Team ---- */
.proc-team-section {
  text-align: center;
}

.proc-team {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-10);
}

.proc-team-card {
  max-width: 240px;
  text-align: center;
}

.proc-team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-bottom: var(--space-4);
}

.proc-team-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.proc-team-role {
  font-size: var(--text-sm);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.proc-team-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.proc-faq {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.proc-faq-list {
  margin-top: var(--space-10);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.proc-faq-item {
  border: 1px solid rgba(11,29,58,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}

.proc-faq-item[open] {
  border-color: var(--accent);
}

.proc-faq-item summary {
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.proc-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.proc-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.proc-faq-item p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- CTA Final ---- */
.proc-cta {
  padding: var(--space-20) 0;
}

.proc-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.proc-cta-inner h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-4);
}

.proc-cta-inner p {
  color: rgba(255,255,255,0.72);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* ---- Section header alignment ---- */
.proc-section .section-title {
  text-align: center;
}

.proc-section .section-label {
  text-align: center;
  display: block;
}

.proc-section .gold-line {
  margin: var(--space-4) auto var(--space-8);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .proc-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .proc-cards {
    grid-template-columns: 1fr;
  }

  .proc-step {
    flex-direction: column;
    gap: var(--space-3);
  }

  .proc-hero h1 {
    font-size: 1.75rem;
  }

  .proc-hero-sub {
    font-size: var(--text-base);
  }

  .proc-faq-item summary {
    padding: var(--space-4) var(--space-4);
  }
}
