/*
============================================================
--------------------------- CAPA ---------------------------
============================================================
*/
.ics-container {
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;    /* Centraliza o container horizontalmente */
}

/* Seção Geral (Fundo Azul) */
.ics {
  width: 100%;
  min-height: auto; 
  background-color: rgb(3, 40, 110);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; 
  padding: 40px 10px 20px; 
  box-sizing: border-box;
}

/* Título */
.ics-text-group {
  font-size: 40px;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  color: #f69700;
}

/* Container que envolve todos os botões e a barra */
.ics-buttons-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; 
  width: 100%;
}

/* Grupos de botões (Mantém os pares alinhados lado a lado) */
.ics-btn-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

/* Estilo estruturado para os botões */
.ics-nav-btn {
  display: inline-flex; /* Crucial: Alinha o conteúdo interno e ativa o comportamento de bloco */
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 3px solid #f69700;
  background-color: transparent; /* Fundo transparente */
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 99px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap; /* Impede que o texto quebre linha dentro do botão */
  transition: background 0.3s ease;
}

/* Efeito Hover (Passar o mouse) */
.ics-nav-btn:hover {
    border: 3px solid #ffffff !important;     /* Mantém a borda branca */
    background-color: #f69700 !important; /* Fundo laranja */
    color: #000000 !important;            /* Texto branco */
}

/* A Barra Vertical Separadora */
.ics-divider {
  display: block;
  width: 2px;
  height: 30px;             
  background-color: #ffffff; 
  align-self: center;
}



/*
============================================================
------------------- PRODUTOS E SERVIÇOS --------------------
============================================================
*/
/* Container da seção */
.cards-section {
  padding: 10px;
  width: 100%;
}

/* TÍTULOS DOS BLOCOS COM LINKS E ÍCONES */
/* Container do título h1 */
.titulo-secao-link {
  font-size: 58px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

/* Reseta o estilo padrão do link do título */
.titulo-secao-link a {
  color: rgb(3, 40, 110);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* Espaço entre o texto e o ícone */
  transition: color 0.3s ease;
}

/* Efeito ao passar o mouse por cima do título */
.titulo-secao-link a:hover {
  color: rgb(234, 139, 22);
}

/* O ícone de abrir em nova aba */
.icone-link {
  font-size: 32px; /* Um pouco menor que o texto para ficar harmônico */
  color: rgba(3, 40, 110, 0.4); /* Começa discretamente transparente */
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* Efeito de destaque exclusivo no ícone quando passa o mouse */
.titulo-secao-link a:hover .icone-link {
  color: rgb(234, 139, 22);
  transform: translate(
    2px,
    -2px
  ); /* Efeito sutil de empurrão para cima e direita */
}

/* Grid: 6 colunas em desktop */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* MODIFICAÇÃO 1: Define explicitamente que o grid terá no máximo 2 linhas */
  grid-template-rows: repeat(2, min-content);
  gap: 20px;
  padding: 10px;
}

/* MODIFICAÇÃO 2: Esconde qualquer card que passe de 12 (2 linhas x 6 colunas = 12) */
.cards-grid .card:nth-child(n+13) {
  display: none;
}

/* O card — link envolvente */
.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Área da imagem com separador laranja */
.card-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 4px solid rgb(234, 139, 22);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Corpo do card */
.card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  
  /* Mantém a linha que você já tem */
  -webkit-line-clamp: 2; 
  
  /* ADICIONE ESTA LINHA ABAIXO (A propriedade padrão) */
  line-clamp: 2; 
  
  overflow: hidden;
}

.card-fornecedor {
  font-size: 13px;
  color: #888;
}

.card-fornecedor strong {
  color: rgb(3, 40, 110);
}



/*
============================================================
--------------------- PROPAGANDA 1 E 2 ---------------------
Elementos: #marketing12
            .ics-marketing1-text  /  .ics-marketing2-text
============================================================
*/
/* Container pai — organiza os dois banners lado a lado */
#marketing12 {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 200px;
  padding: 0 60px;
  margin: 30px 0;
}

/* Estilo comum dos quatro espaços de propaganda */
.ics-marketing1,
.ics-marketing2 {
  flex: 1;
  height: 150px;
  background-color: #f5f5f5;
  border: 2px dashed rgb(3, 40, 110);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover — fundo laranja suave */
.ics-marketing1:hover,
.ics-marketing2:hover {
  background-color: rgba(234, 139, 22, 0.1);
  border-color: rgb(234, 139, 22);
}

/* Texto/link dentro do banner */
.ics-marketing1-text,
.ics-marketing2-text {
  color: rgb(3, 40, 110);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}



/*
============================================================
----------------------- ANUNCIANTES ------------------------
============================================================
*/
/* Container da seção */
.cards-section-anunciantes {
  padding: 10px;
  width: 100%;
}

/* Título da seção */
.titulo-anunciantes {
  font-size: 58px;
  color: rgb(3, 40, 110);
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

/* Grid: 6 colunas em desktop */
.cards-grid-anunciantes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* MODIFICAÇÃO 1: Define explicitamente que o grid terá no máximo 2 linhas */
  grid-template-rows: repeat(2, min-content);
  gap: 20px;
  padding: 10px;
}

/* MODIFICAÇÃO: Oculta qualquer card de anunciante a partir do 13º elemento filho */
.cards-grid-anunciantes .card-anunciantes:nth-child(n+13) {
  display: none;
}

/* O card — link envolvente */
.card-anunciantes {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-anunciantes:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Área da imagem */
.card-img-wrapper-anunciantes {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 4px solid rgb(234, 139, 22);
}

.card-img-wrapper-anunciantes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Corpo do card */
.card-body-anunciantes {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  
  /* Mantém a linha que você já tem */
  -webkit-line-clamp: 2; 
  
  /* ADICIONE ESTA LINHA ABAIXO (A propriedade padrão) */
  line-clamp: 2; 
  
  overflow: hidden;
}

.card-fornecedor-anunciantes {
  font-size: 13px;
  color: #888;
}

.card-fornecedor-anunciantes strong {
  color: rgb(3, 40, 110);
}



/*
============================================================
--------------------- PROPAGANDA 3 E 4 ---------------------
Elementos: #marketing34
            .ics-marketing3-text  /  .ics-marketing4-text
============================================================
*/
/* Container pai — organiza os dois banners lado a lado */
#marketing34 {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 200px;
  padding: 0 60px;
  margin-top: 30px;
}

/* Estilo comum dos quatro espaços de propaganda */
.ics-marketing3,
.ics-marketing4 {
  flex: 1;
  height: 150px;
  background-color: #f5f5f5;
  border: 2px dashed rgb(3, 40, 110);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover — fundo laranja suave */
.ics-marketing3:hover,
.ics-marketing4:hover {
  background-color: rgba(234, 139, 22, 0.1);
  border-color: rgb(234, 139, 22);
}

/* Texto/link dentro do banner */
.ics-marketing3-text,
.ics-marketing4-text {
  color: rgb(3, 40, 110);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}



/*
============================================================
------------------------ QUEM SOMOS ------------------------
============================================================
*/
.qs-sobre {
  position: relative;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: rgb(3, 75, 192);
  display: flex;
  align-items: center;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: white;
  justify-content: center;
  min-height: 650;
  gap: 6px;
}

.qs-sobre-titulo {
  font-size: 36px;
  margin-top: 10px;
  font-weight: 600;
}

.qs-sobre-subtitulo {
  font-size: 26px;
  padding: 0 30px;
  margin-top: 10px;
  font-weight: 600;
}

.qs-sobre-texto {
  font-size: 22px;
  padding: 0 30px;
  max-width: 1200px;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 400;
}

/*
============================================================
----------- IDENTIDADE - MISSÃO, VISÃO E VALORES -----------
CONTAINER PAI (Ajuste aqui para alinhar o que está dentro)
============================================================
*/
.qs-identidade {
  width: 100%;
  max-width: 1200px; /* Alinhado com o tamanho máximo que quer */
  margin: 0 auto; /* CRITICAL: Centraliza a secção inteira na página */
  display: flex;
  flex-direction: column;
  align-items: center; /* Garante que o título e o grid fiquem centrados */
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.qs-identidade-titulo {
  font-size: 36px;
  margin-top: 30px;
  font-weight: 800;
  margin-top: 20px;
  color: rgb(3, 75, 192);
  text-align: center;
  margin-bottom: 38px;
}
/*
============================================================
--------- FIM IDENTIDADE - MISSÃO, VISÃO E VALORES ---------
============================================================
*/



/*
============================================================
---------- INÍCIO GRID - MISSÃO, VISÃO E VALORES -----------
============================================================
*/
.qs-mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.qs-mvv-card {
  border-radius: 14px;
  background: #f0f6ff;
  border-top: 4px solid #1976d2;
  padding: 36px 28px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.qs-mvv-card:hover {
  transform: translateY(-15px);
  box-shadow: #1976d2;
}

.qs-mvv-icone {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d3b8e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 18px;
}

.qs-mvv-nome {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #0d3b8e;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qs-mvv-texto {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 14px;
  color: #5a6580;
  line-height: 1.7;
}
/*
============================================================
------------ FIM GRID - MISSÃO, VISÃO E VALORES ------------
============================================================
*/



/*
============================================================
--------- INÍCIO NOSSOS VALORES - SEÇÃO PRINCIPAL ----------
============================================================
*/
.qs-valores {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: -80px;
  box-sizing: border-box;
}

.qs-valores-titulo {
  font-size: 36px;
  font-weight: 800;
  color: rgb(3, 75, 192);
  text-align: center;
  margin-top: 20px; /* CORREÇÃO: Removido o duplicado de 30px */
  margin-bottom: 38px;
}
/*
============================================================
----------- FIM NOSSOS VALORES - SEÇÃO PRINCIPAL -----------
============================================================
*/



/*
============================================================
INÍCIO GRID DE VALORES (Transformado em Flexbox para Centralizar)
============================================================
*/
.qs-valores-grid {
  display: flex; /* CORREÇÃO: Mudado de grid para flex */
  flex-wrap: wrap; /* Permite que os cards quebrem de linha se não couberem */
  justify-content: center; /* SOLUÇÃO: Centraliza os 2 containers que sobrarem na segunda linha */
  gap: 36px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 10px;
}

.qs-valor-card {
  /* CORREÇÃO: Divide o espaço em 3 colunas e subtrai o tamanho do gap */
  flex: 1 1 calc(33.333% - 36px);
  min-width: 260px; /* Impede que fiquem muito esmagados nas linhas */
  max-width: 340px; /* SOLUÇÃO: Trava o tamanho máximo para os 2 de baixo não esticarem mais que os 3 de cima */
  border-radius: 14px;
  background: #f0f6ff;
  border-top: 4px solid #1976d2;
  padding: 36px 18px;
  text-align: center;
  box-sizing: border-box;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.qs-valor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(25, 118, 210, 0.25); /* CORREÇÃO: Sintaxe da sombra corrigida para funcionar */
}

.qs-valor-icone {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d3b8e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 10px;
}

.qs-valor-nome {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #0d3b8e;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qs-valor-texto {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 14px;
  color: #5a6580;
  line-height: 1.7;
}
/*
============================================================
FIM GRID DE VALORES (Transformado em Flexbox para Centralizar)
============================================================
*/



/*
============================================================
--------- INÍCIO PORTAIS ICSMIDIA, MOTOR E IMOVEIS ---------
============================================================
*/
.qs-portais {
  position: relative;
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  height: auto;
  background-color: rgb(3, 75, 192);
  display: flex;
  align-items: center;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: white;
  justify-content: center;
  min-height: 650;
  padding: 0 0px;
  gap: 6px;
}

.qs-portais-titulo {
  font-size: 36px;
  margin-top: 30px;
  font-weight: 800;
  margin-top: 20px;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 38px;
}
/*
============================================================
---------- FIM PORTAIS ICSMIDIA, MOTOR E IMOVEIS -----------
============================================================
*/



/*
============================================================
------------------- INÍCIO GRID PORTAIS --------------------
============================================================
*/
.qs-portais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.qs-portal-card {
  border-radius: 14px;
  background: #f0f6ff;
  border-top: 5px solid #f69700;
  padding: 36px 28px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.qs-portal-card:hover {
  transform: translateY(-15px);
  box-shadow: #1976d2;
}

.qs-portal-icone {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d3b8e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 18px;
}

.qs-portal-nome {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0d3b8e;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qs-portal-texto {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 14px;
  color: #0d3b8e;
  line-height: 1.7;
}
/*
============================================================
--------------------- FIM GRID PORTAIS ---------------------
============================================================
*/



/*
============================================================
------ INÍCIO MODELO DE NEGÓCIO - CONTAINER PRINCIPAL ------
============================================================
*/
.qs-modelo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza horizontalmente todos os filhos */
  justify-content: center; /* Centraliza verticalmente o conteúdo */
  width: 100%;
  max-width: 1200px;
  height: auto;
  min-height: 450px;
  background-color: rgb(255, 255, 255);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: rgb(3, 75, 192);
  padding: 60px 20px;
  margin: 0 auto; /* Centraliza a seção inteira na página */
  gap: 6px;
  box-sizing: border-box;
}
/*
============================================================
------- FIM MODELO DE NEGÓCIO - CONTAINER PRINCIPAL --------
============================================================
*/



/*
============================================================
------------ MANIPULAÇÃO DOS TEXTOS E ELEMENTOS ------------
============================================================
*/
.qs-modelo-titulo {
  font-size: 36px;
  font-weight: 800;
  text-align: center; /* Força centralização */
  margin-top: -120px;
  margin-bottom: 10px; /* Adicionado para controle de respiro */
}

/* Texto em Destaque (ex: Subtítulo) */
.qs-modelo-destaque {
  font-size: 26px;
  font-weight: 600;
  text-align: center; /* Força centralização */
  padding: 0 30px;
  margin: 10px auto; /* Centraliza o bloco na tela */
  max-width: 900px; /* Limite de largura para melhor leitura */
}

/* Texto Descritivo Padrão */
.qs-modelo-texto {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  padding: 0 30px;
  max-width: 1200px;
  margin: 10px auto 15px; /* O 'auto' centraliza o bloco de 800px na tela */
}

/* Número Estatístico Gigante */
.qs-stat-numero {
  font-size: 180px;
  font-weight: bold;
  text-align: center;
  width: 100%; /* Ocupa a largura total para alinhar pelo meio */
  max-width: 100%; /* Ajustado de 2900px para 100% para evitar quebras tortas */
  margin-top: -40px;
  margin-bottom: -30px;
}

/* Legenda do Número Estatístico */
.qs-stat-label {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  padding: 0 30px;
  max-width: 800px;
  margin: 10px auto -15px; /* O 'auto' garante a centralização impecável */
}
/*
============================================================
---------- FIM MANIPULAÇÃO DOS TEXTOS E ELEMENTOS ----------
============================================================

============================================================
--------------------- FIM QUEM SOMOS -----------------------
============================================================
*/



/*
============================================================
------------------ INÍCIO CONTATO / FAQ --------------------
============================================================
*/
.ics {
    flex-direction: column;
    width: 100%;
    height: auto;
    background-color: rgb(3, 40, 110);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-bottom: 20px;
    }

/* DISPLAY BLOCK */
.ics-text-group {
    background-color: rgb(234, 139, 22);
    margin-top: 15px;
    font-size: 40px;
    text-align: center;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

/* BOTÕES NAVEGAÇÃO NO SITE */
.ics-nav {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    justify-content: center;
    gap: 10px;
    }

.ics-nav-link {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 16px;
    padding: 7px 50px;
    margin-bottom: 10px;
    border-radius: 9999px;
    border: 2px solid rgb(255, 255, 255);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
    }

.ics-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    }
/* FIM NAVEGAÇÃO INTERNA NO SITE */

/* BOTÕES DE REDES SOCIAIS *
.box-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 36px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0PX;
    color: #ffffff;
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    font-weight: 700;
    }
/* FIM BOTÕES DE REDES SOCIAIS */

/* CONTATO */
  .contato {
    width: 100%;
    max-width: 1000px;
    margin: 10px auto;
    padding: 35px 30px;
    border-radius: 20px;
    border-color: 3px rgb(16, 19, 202);
    background: rgba(123, 125, 231, 0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  /* TÍTULO */
  .contato h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 40px;
    color: var(--text-light);
    font-weight: 700;
  }

  /* FORM */
  .contato form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* INPUTS E TEXTAREA */
  .contato input,
  .contato textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;

    border: 3px solid rgba(0, 0, 0, 0.15);
    background: rgba(255,255,255,0.05);

    color: rgb(0, 0, 0);
    font-size: 26px;

    transition: 0.25s;
  }

  /* PLACEHOLDER */
  .contato input::placeholder,
  .contato textarea::placeholder {
    color: rgba(86, 84, 84, 0.6);
  }

  /* FOCO */
  .contato input:focus,
  .contato textarea:focus {
    outline: none;
    border: 2px solid var(--secondary);
    background: rgba(255,255,255,0.08);
  }

  /* TEXTAREA */
  .contato textarea {
    min-height: 140px;
    resize: vertical;
  }

/* BOTÃO */
.contato button {
  margin-top: 10px;

  background-color: rgb(16, 19, 202);
  color: #fff;

  padding: 14px;
  border: none;
  border-radius: 12px;

  font-size: 18px;
  font-weight: bold;
  cursor: pointer;

  transition: 0.3s;
}

/* HOVER BOTÃO */
.contato button:hover {
  background-color: rgb(234, 139, 22);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* RESPONSIVO  - CONTATO *

@media (max-width: 750px) {

  .contato {
    max-width: 700px;
    margin: 30px 15px;
    padding: 25px 20px;
  }

  .contato h2 {
    font-size: 24px;
  }

  .contato input,
  .contato textarea {
    font-size: 16px;
    padding: 12px;
  }

  .contato button {
    font-size: 16px;
    padding: 12px;
  }
}

/* FIM CAMPO CONTATO */

/* CAMPO FAQ */
.faq {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 20px;
  box-sizing: border-box;
}

.faq h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 15px;
}

/* Busca */
#faqSearch {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 3px solid #ccc;
  font-size: 14px;
}

/* Item */
.faq-item {
  border-bottom: 3px solid #eee;
  transition: 0.3s;
}

/* Pergunta */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px;
  font-size: 26px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

/* Ícone animado */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 26px;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  padding: 0 15px 15px;
  margin: 0;
  font-size: 24px;
}

/* Mobile *
@media (max-width: 768px) {
  .faq {
    padding: 15px;
  }

  .faq-question {
    font-size: 25px;
  }
}
/* FIM CAMPO FAQ */
/*
============================================================
-------------------- FIM CONTATO / FAQ ---------------------
============================================================
*/



/*
============================================================
------------------------ INÍCIO MAIS -----------------------
============================================================
*/

/*
============================================================
------------------------- FIM MAIS -------------------------
============================================================
*/



/*
============================================================
---------------- INÍCIO TERMOS E CONDIÇÕES -----------------
============================================================
*/




/*
============================================================
------------------ FIM TERMOS E CONDIÇÕES ------------------
============================================================
*/



/*
============================================================
-------------- INÍCIO POLÍTICAS DE PRIVACIDADE -------------
============================================================
*/

/*
============================================================
-------------- FIM POLÍTICAS DE PRIVACIDADE ----------------
============================================================
*/



/*
============================================================
------------------- INÍCIO POLÍTICAS LGPD ------------------
============================================================
*/





.lgpd-content {
  background-color: #f9f9f9;
  padding: 36px 20px 60px;
}

.lgpd-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Topo ── */
.lgpd-topo {
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 2px solid rgb(5, 60, 150);
}

.lgpd-titulo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgb(5, 60, 150);
  margin-bottom: 8px;
}

.lgpd-subtitulo {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* ── Destaque principal ── */
.lgpd-destaque {
  background: rgb(5, 60, 150);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  color: #ffffff;
}

.lgpd-destaque-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.lgpd-destaque strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.lgpd-destaque p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.lgpd-destaque p:last-child {
  margin-bottom: 0;
}

/* ── Card de seção ── */
.lgpd-section {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.lgpd-section-header {
  background-color: rgb(5, 60, 150);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lgpd-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lgpd-section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

.lgpd-section-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lgpd-section-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* ── Lista ── */
.lgpd-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lgpd-lista li {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.lgpd-lista li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgb(5, 60, 150);
  font-weight: 700;
}

/* Lista com ✗ vermelho (o que NÃO fazemos) */
.lgpd-lista-nao li::before {
  content: "✗";
  color: #c0392b;
  font-size: 13px;
  top: 1px;
}

/* ── Aviso / destaque interno ── */
.lgpd-aviso {
  background: #f0f4ff;
  border-left: 4px solid rgb(5, 60, 150);
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lgpd-aviso span {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}

.lgpd-aviso p {
  font-size: 14px !important;
  color: #333 !important;
  line-height: 1.6 !important;
  margin: 0;
}

.lgpd-aviso-verde {
  background: #f0fff6;
  border-left-color: #27ae60;
}

/* ── Cards trio (seção 3) ── */
.lgpd-card-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 4px;
}

.lgpd-card-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lgpd-card-icon {
  font-size: 28px;
}

.lgpd-card-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgb(5, 60, 150);
}

.lgpd-card-item p {
  font-size: 13px !important;
  color: #555 !important;
  line-height: 1.5 !important;
  margin: 0;
}

/* ── Bloco de contato ── */
.lgpd-contato {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lgpd-contato-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.lgpd-contato strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgb(5, 60, 150);
  display: block;
  margin-bottom: 6px;
}

.lgpd-contato p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* ── Responsivo ── *
@media (max-width: 750px) {
  .lgpd-titulo { font-size: 22px; }

  .lgpd-destaque { flex-direction: column; gap: 12px; }
  .lgpd-destaque-icon { font-size: 28px; }

  .lgpd-card-trio { grid-template-columns: 1fr; }

  .lgpd-section-header h2 { font-size: 15px; }
  .lgpd-section-body { padding: 16px; }

  .lgpd-section-body p,
  .lgpd-lista li { font-size: 14px; }
}
*/


















/*
============================================================
-------------------- FIM POLÍTICAS LGPD --------------------
============================================================
*/



/*
============================================================
------------------- INÍCIO ABAS OCULTAS --------------------
============================================================
*/
/* Regra fundamental para o sistema de abas ocultas */
.aba-conteudo {
  display: none !important;
}

/* Mostra apenas a seção ativa na tela */
.aba-conteudo.ativo {
  display: block !important;
}







/* Quando o ID da seção for o alvo (#) atual da URL, ela aparece! */
.aba-conteudo:target {
    display: block;
}




/*
============================================================
--------------------- FIM ABAS OCULTAS ---------------------
============================================================
*/



/*
============================================================
-------------------- INÍCIO BOTÃO TOP ----------------------
============================================================
*/
.botoes-fixos {
  position: fixed !important;
  bottom: 20px !important;

  /* Mágica para centralizar e travar no limite do site */
  left: 50% !important;
  transform: translateX(-50%) !important; /* Centraliza a caixinha na tela */
  width: 100% !important;
  max-width: 1440px !important; /* Trava o tamanho máximo igual ao seu global */

  /* Alinha o botão internamente no canto direito desses 1440px */
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important; /* Empurra o botão para o fim dos 1440px */
  align-items: center !important;
  gap: 12px !important;

  /* Espaçamento interno para o botão não colar na borda em telas menores */
  padding-right: 20px !important;
  box-sizing: border-box !important;

  z-index: 999999 !important;
  pointer-events: none !important; /* Evita que a caixinha invisível de 1440px bloqueie cliques no site */
}

/* Precisamos reativar os cliques apenas nos botões de dentro */
.botoes-fixos a,
.botoes-fixos button {
  pointer-events: auto !important;
}

/* Botão Voltar ao Topo (Estilo base redondo) */
.btn-top {
  background-color: #000000;
  color: #ffffff;
  border: none;
  margin-bottom: 90px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
/*
============================================================
------------------ FIM INÍCIO BOTÃO TOP --------------------
============================================================
*/



/*
============================================================
--------------------- INÍCIO FOOTER ------------------------
============================================================
*/

.icsfooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: rgb(5, 60, 150);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    gap: 16px;
    }

.ics-linha-1 {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 16px;
    max-width: 1000px;
    display: block;
    width: 100%;
    margin: -2px 0;
    }

.ics-linha-2 {
    text-align: center;
    }

.ics-linha-2 a:link,
.ics-linha-2 a:visited {
    display: inline-block;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    }

.ics-linha-2 a:hover {
    color: #cccccc;
    text-decoration: underline;
    }
/*
============================================================
------------------------ FIM FOOTER ------------------------
============================================================
*/