/* --------------------
   Reset básico
-------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    /* Supondo que a cor de fundo principal seja um cinza claro do PPT */
    background-color: #f2f2f2;
    font-family: 'Montserrat', sans-serif; /* Ajuste para a fonte do PPT se necessário */
    line-height: 1.6;
    color: #333; /* Cor de texto padrão */
  }
  
  /* --------------------
     Containers padrão
  -------------------- */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* --------------------
     Header
  -------------------- */
  .header {
    background-color: #fff; /* Ajuste conforme a identidade visual */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    color: #2A4C7F; /* Exemplo de cor primária (ajuste conforme PPT) */
    font-weight: 700;
  }
  
  .navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .navigation a {
    text-decoration: none;
    color: #333; 
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navigation a:hover {
    color: #2A4C7F; /* Mudança de cor no hover (pode ser a cor primária) */
  }
  
  /* --------------------
     Hero (Banner Principal)
  -------------------- */
  .hero {
    /* Exemplo de cor de fundo em gradiente, ajustável conforme a identidade */
    background: linear-gradient(rgba(42,76,127,0.8), rgba(42,76,127,0.8)), 
                url('https://via.placeholder.com/1200x600?text=Banner+Catarse') no-repeat center center / cover;
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
  }
  
  .btn-hero {
    background-color: #FF6E00; /* Exemplo de cor de destaque (secundária) */
    color: #ffffff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .btn-hero:hover {
    background-color: #cc5800; 
  }
  
  /* --------------------
     Seção Quem Somos
  -------------------- */
  .quem-somos {
    background-color: #ffffff;
    padding: 3rem 0;
  }
  
  .quem-somos h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    color: #2A4C7F;
  }
  
  .quem-somos p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: justify;
    line-height: 1.8;
  }
  
  .valores {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .valores li {
    margin-bottom: 0.5rem;
  }
  
  /* --------------------
     Seção Nossas Soluções
  -------------------- */
  .nossas-solucoes {
    padding: 3rem 0;
    background-color: #f8f8f8;
  }
  
  .nossas-solucoes h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    color: #2A4C7F;
  }
  
  .nossas-solucoes p {
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: justify;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem auto;
  }
  
  .grid-solucoes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .box-solucao {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .box-solucao h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2A4C7F;
    font-weight: 600;
  }
  
  .box-solucao p {
    line-height: 1.6;
    font-weight: 300;
  }
  
  /* --------------------
     Seção Contato
  -------------------- */
  .contato {
    padding: 3rem 0;
  }
  
  .contato h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2A4C7F;
    font-weight: 700;
  }
  
  .contato p {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
  }
  
  .form-contato {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
  }
  
  .form-contato input,
  .form-contato textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  .form-contato button {
    background-color: #FF6E00;
    color: #fff;
    padding: 0.8rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .form-contato button:hover {
    background-color: #cc5800;
  }
  
  /* --------------------
     Rodapé
  -------------------- */
  .footer {
    background-color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid #eaeaea;
  }
  
  .footer p {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* ==========================================
   Seção/Banner da Área Restrita
   (Pequeno topo para o "Área Restrita")
=========================================== */
.banner-area-restrita {
    background: linear-gradient(rgba(42,76,127,0.8), rgba(42,76,127,0.8)),
                url("https://via.placeholder.com/1200x300?text=Area+Restrita") 
                no-repeat center center/cover;
    text-align: center;
    color: #fff;
    padding: 3rem 0;
  }
  
  .banner-area-restrita h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .banner-area-restrita p {
    font-size: 1.1rem;
    font-weight: 300;
  }
  
  /* ==========================================
     Seção Principal da Área Restrita
  =========================================== */
  .portal-section {
    padding: 3rem 0;
    background-color: #f8f8f8;
  }
  
  .portal-container {
    display: flex;
    justify-content: space-evenly; /* Espaço igual entre os dois lados */
    gap: 2rem;
    flex-wrap: wrap; /* Caso a tela fique menor, os blocos quebram para baixo */
  }
  
  .portal-box {
    background-color: #fff;
    width: 100%;
    max-width: 400px; /* Largura máxima para cada box */
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
  }
  
  /* Título de cada Portal (Cliente ou Consultor) */
  .portal-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2A4C7F; /* Exemplo de cor principal */
    font-weight: 600;
  }
  
  /* Formulário de login */
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left; /* Para alinhar os rótulos e inputs à esquerda */
  }
  
  .login-form label {
    font-weight: 500;
    color: #333;
  }
  
  .login-form input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Botão de Acessar */
  .login-form button {
    margin-top: 1rem;
    padding: 0.6rem 1rem;
    background-color: #FF6E00; /* Exemplo de cor secundária */
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .login-form button:hover {
    background-color: #cc5800;
  }
  