<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* --- SeÃ§Ã£o de ConteÃºdo Principal --- */

.faq-box details[open] {
    background-color: #fff;
    border-color: #D32F2F;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .faq-box summary {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem;
  }
  
  /* --- Hero Section --- */
  .hero-section {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 420px; /* ajuste conforme necessÃ¡rio */
      padding-top: 60px;
      padding-bottom: 60px;
      position: relative;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;    /* 30px do topo */
    padding-bottom: 20px; /* 20px do bottom */
    min-height: 0;        /* Garante que padding funcione corretamente */
    box-sizing: border-box;
  
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100%;
      height: 100%;
  }
  
  .faq-box summary::after {
    content: "âž•";
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .faq-box details[open] summary::after {
    content: "âž–";
    transform: rotate(180deg);
  }
  
  .faq-box p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .content-area {
      grid-template-columns: 1fr;
    }
  
    .main-content {
      grid-template-rows: auto;
    }
  
    .area-details,
    aside.faq-box {
      grid-row: auto;
    }
  
    .faq-box {
      margin-top: 2rem;
    }
  }
  
  /* Container principal */
  .container {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto;
  }
  
  /* Ãrea em grid com estrutura vertical */
  .content-area {
    display: grid;
    grid-template-rows: auto 1fr; /* TÃ­tulo em cima, conteÃºdo abaixo */
    height: 100%;
    gap: 1rem;
  }
  
  /* TÃ­tulo do cabeÃ§alho */
  .header-title {
    width: 100%;
  }
  
  /* ConteÃºdo principal */
  .main-content {
    display: grid;
    grid-template-rows: 2fr 1fr; /* 2 partes em coluna, altura ajustÃ¡vel */
    width: 100%;
    gap: 1rem;
  }
  
  .area-details, aside.faq-box {
    padding: 1rem;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
  }
  
  /* Ãrea de FAQ (details) */
  .faq-box details {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1rem;
    background-color: #fdfdfd;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .faq-box details[open] {
    background-color: #fff;
    border-color: #D32F2F;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .faq-box summary {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem;
  }
  
  .faq-box summary::after {
    content: "âž•";
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .faq-box details[open] summary::after {
    content: "âž–";
    transform: rotate(180deg);
  }
  
  .faq-box p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .content-area {
      grid-template-columns: 1fr;
    }
  
    .main-content {
      grid-template-rows: auto;
    }
  
    .area-details,
    aside.faq-box {
      grid-row: auto;
    }
  
    .faq-box {
      margin-top: 2rem;
    }
  }

  /* Estilo do bloco de leitura expandida */
.faq-leia {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-leia-summary,
.faq-leia-summary-bottom {
  font-weight: 600;
  color: #D32F2F;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 0;
  margin: 10px auto;
  text-align: center;
  font-size: 1rem;
}

/* Oculta o botÃ£o inferior atÃ© abrir */
.faq-leia-summary-bottom {
  display: none;
}

/* Mostra o botÃ£o inferior ao abrir e oculta o superior */
.faq-leia[open] .faq-leia-summary {
  display: none;
}

.faq-leia[open] .faq-leia-summary-bottom {
  display: block;
}

.sec-content-box {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1; /* permite crescer e empurrar o botÃ£o */
}

.content-title {
  font-size: 1.8rem;
  color: #0D47A1;
  font-weight: 700;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #1976D2;
  padding-bottom: 0.5rem;
}

.content-subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0D47A1;
  margin-top: 1rem;
}

.content-description {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

.content-faq-toggle {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* BotÃ£o sempre ao final da pÃ¡gina */
.content-faq-toggle summary {
  list-style: none;
  cursor: pointer;
  text-align: center;
  border: none;
  background: none;
  margin-top: auto; /* empurra para o final */
  margin-bottom: 0.5rem;
  order: 2;
}

.content-faq-toggle summary::marker {
  display: none;
}

.content-faq-toggle summary::before {
  content: "";
  display: block;
  height: 1rem;
}

.content-faq-toggle summary::after {
  content: "LER      âž•";
  display: inline-block;
  background-color: #fff;
  color: #0D47A1;
  border: 1.5px solid #90CAF9;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.content-faq-toggle summary:hover::after {
  background-color: #1976D2;
  color: white;
  transform: scale(1.05);
}

/* Quando aberto */
.content-faq-toggle[open] summary::after {
  content: "LER   âž–";
}

/* ConteÃºdo extra */
.content-faq-extra {
  padding-top: 1rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px dashed #ddd;
  order: 1;
}

.detalhes {
  width: 90%;
  margin: 0 auto; /* centraliza horizontalmente */
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0; /* sem espaÃ§amento entre as Ã¡reas */
}

.detalhes-esquerda, .area-direita {
  padding: 16px;
  border: 1px solid #ccc;
}

.detalhes-esquerda {
  background-color: #f0f0f0;
}

.detalhes-direita {
  background-color: #e0e0e0;
}

@media (max-width: 768px) {
  .detalhes {
    grid-template-columns: 1fr;
  }
  .detalhes-direita {
    display: none;
  }
}

  </pre></body></html>