@charset "utf-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}


body {
    
    font-family: var(--font-family);
    scroll-padding-top: 100px;
}

 /* TITULO-HERO */
.titulo-2025 {
  text-align: center;
  padding: 130px 20px 60px 20px;
}

.subtitulo-azul {
  color: var(--azul-color);
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 400;
  margin: 0; /* menos espaço */
}

.titulo-principal {
  font-family: var(--font-family);
  font-size: 56px; /* antes estava enorme */
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}


/* Responsividade*/
@media (max-width: 768px) {
  .titulo-2025 {
  padding: 130px 20px 60px 20px;
  }

  .subtitulo-azul {
    font-size: 24px;
  }

  .titulo-principal {
    font-size: 32px;
  }
}

#colaboradores,
#organograma,
#diversidade,
#trabalho,
#saude{
  scroll-margin-top: 120px;
}
 

.title-verde {
    color: var(--verde-color);
    font-family: var(--font-family);
    font-size: 32px;
}

.title-azul{
    color: var(--azul-color);
    font-family: var(--font-family);
    font-size: 32px;
}

.title-amarelo {
   color: #FCAF17;
    font-family: var(--font-family);
    font-size: 32px;
}

.title-cinza {
   color: var(--cinza-escuro-color);
    font-family: var(--font-family);
    font-size: 32px;
}



/* CORPO GERAL */

.corpo-geral-section {

  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 30px;

}


.corpo-geral-content strong{
  font-size: 32px;
   color: var(--cinza-escuro-color);
   max-width: 1200px;
   text-align: center;
   
  margin: 0 auto;
 
}

.corpo-geral-content {

  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 32px;
}

.corpo-geral-container {
   max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 513px 1fr;
  gap: 60px;
  align-items: flex-start;
  font-family: var(--font-family);
  color: var(--texto-color)

  
}

.corpo-geral-container-2 {
   max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--texto-color)

  
}

.corpo-geral-texto p {
  font-size: var(--texto-size);
  line-height: 1.6;
  color: var(--texto-color);
  
}

 

@media (max-width: 900px) {
  .corpo-geral-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}




/* =========================
   BOXES COM SOMBRA
========================= */

/* grids */
#boxes{
  display:grid;
  
 gap: 30px; /* espaço entre todos os boxes */
  padding:80px;
  display: grid;
  
  justify-content: center;               
   padding-top: 40px;  
  grid-template-columns:repeat(4,1fr);/* aproxima (ajuste: 8 a 14px) */
}
#boxes2{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap: 30px; /* espaço entre todos os boxes */
  padding:80px;
}
#boxes3{
  display:grid;
  grid-template-columns:repeat(2,1fr);
 
  padding:80px;
 
  gap: 30px; /* espaço entre todos os boxes */
}
#boxes4{
  display:grid;
  grid-template-columns:repeat(5,10fr);
  gap:10px;
  padding:80px;
}
/* responsivo */
@media (max-width: 1024px){
  #boxes{ grid-template-columns:repeat(2,1fr); }
  #boxes2{ grid-template-columns:repeat(2,1fr); }
  #boxes3{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 768px){
  #boxes{ grid-template-columns:1fr; padding:14px 20px; }
  #boxes2{ grid-template-columns:1fr; padding:40px 20px; }
   #boxes3{ grid-template-columns:1fr; padding:40px 20px; }
    #boxes4{ grid-template-columns:1fr; padding:40px 20px; }
}

/* cards (box, box2, box3) */
.box{

  background:#fff;
  width:260px;
  min-height:180px; 
  
  border-radius:16px;
  border:2px solid var(--amarelo-color);

  box-shadow: 0 10px 0 rgba(246,163,0,.65);
  padding:18px 18px 14px;

  display:flex;
  flex-direction:column;
  align-items:flex-start;

  transform: translate3d(0,0,0);
  backface-visibility:hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}


.box-azul{

  background:var(--azul-color);
  width:260px;
  min-height:180px; 
  
  border-radius:16px;
 

  box-shadow: 0 10px 0 #5FC1EE;
  padding:18px 18px 14px;

  display:flex;
  flex-direction:column;
  align-items:flex-start;

  transform: translate3d(0,0,0);
  backface-visibility:hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}

.box-azul p {
    
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
}

.box-verde{

  background:var(--verde-color);
  width:260px;
  min-height:180px; 
  
  border-radius:16px;
  box-shadow: 0 10px 0 #97C865;
  padding:18px 18px 14px;

  display:flex;
  flex-direction:column;
  align-items:flex-start;

  transform: translate3d(0,0,0);
  backface-visibility:hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}

.box-verde p {
    
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
}
/* hover suave */
.box-azul:hover{
  transform: translate3d(0,-2px,0);
  box-shadow: 0 14px 0 var(--azul-color);
}
.box-verde:hover{
  transform: translate3d(0,-2px,0);
  box-shadow: 0 14px 0 #97C865;
}
/* ÍCONE CENTRALIZADO */
.box img{
  width:52px;
  height:52px;
  margin:0 auto 14px; /* centraliza */
  display:block;
}

/* TEXTO */
.box p{
  margin:0;
  font-size:20px;
  line-height:1.3;
  font-weight:400;
  color:var(--amarelo-color);
  text-align:left;
}

.box2 {
  background:#FCAF17;
   text-align: left;
  border-radius:16px;
  padding:30px 30px 30px 30px;
  border:2px solid #FAB938;
  box-shadow: 0 10px 0 #FAB938;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
  gap: 10px;
}

.box2 p{
    
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 20px;
    text-align: center;
    
}
 .box2:hover {
  
  transform: translate3d(0,-2px,0);
  box-shadow: 0 14px 0 #FAB938;
}

.box3 {
  color: #1EA1DD;
  
  background:#fff;
  text-align: left;
  border-radius:16px;
  padding:10px 10px 10px;
  border:2px solid #E3E3E3;
  box-shadow: 0 10px 0 #1EA1DD;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
     
}
 
.box3 p{
    
   font-weight: 600;
    font-family: var(--font-family);
    font-size: 26px;
    text-align: center;
    
}


 .box3:hover {
  
  transform: translate3d(0,-2px,0);
  box-shadow: 0 14px 0 var(--azul-color);
}



.box4 {

  background:var(--azul-escuro-color);
  font-weight: 400;
   color: #ffffff;
  text-align: center;
  border-radius:16px;
  padding:20px 10px 20px;
  border:2px solid  #5FC1EE;
  box-shadow: 0 10px 0 #5FC1EE;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}

 .box4:hover {
  
  transform: translate3d(0,-2px,0);
  box-shadow: 0 14px 0 #5FC1EE;
}



/* hover SEM reamostragem agressiva */
.box:hover {
  /* lift pequeno + 3d (menos blur) */
  transform: translate3d(0,-2px,0);
  box-shadow: 0 14px 0 rgba(246,163,0,.65);
}
/* ícones */
.box img, .box2 img, .box3 img{
  display:block;
  margin:0 auto 14px;
  width:56px;       /* ajuste se quiser maior */
  height:56px;
  image-rendering: auto; /* remove crisp-edges */
}

/* BOX 2 - FLEX BOX */

.box2{
  display: flex;
  align-items: center;   /* alinha verticalmente */
  gap: 14px;             /* espaço entre ícone e texto */
  text-align: left;      /* texto alinhado à esquerda */
}

/* ícone */
.box2 img{
  width: 48px;
  height: 48px;
  flex-shrink: 0;  
  margin: 0;      
}

/* texto */
.box2 p{
  margin: 0;
}


___________






 















/* ===== SEÇÃO NOVIDADES - GRUPO dE AFINIDADE ===== */
.novidades-section {
  background-color: #ffffff;

  width: 100%;
}

.novidades-container {
  max-width: 1200px;
  margin: 0 auto;
  
}

/* Título principal */
.novidades-title {
  color: var(--azul-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Texto introdutório */
.novidades-intro {
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.novidades-intro p {
  margin-bottom: 12px;
}

/* Texto central */
.novidades-texto-central {
  color: #555555;
  font-size: 14px;
  line-height: 1.8;
  margin: 24px 0;
  text-align: left;
}


 




/* ===== SEÇÃO SELIC e Projetos D&I ===== */
.selic-section {
  margin-top: 40px;
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 12px;
}


 
.topicos-accordion {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
    
}


/* ===== ACCORDION NOVIDADES ===== */
.novidades-accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.novidades-accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.novidades-accordion-item.active {
  border: 1px solid var(--cinza-escuro-color); 
}

.novidades-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #666666;
  text-align: left;
  transition: color 0.3s ease;
    font-family: var(--font-family);
     font-weight: 500;
}

/* TÍTULO AZUL quando aberto */
.novidades-accordion-item.active .novidades-accordion-header {
  color: var(--cinza-escuro-color);
}

/* SETA/CHEVRON */
.novidades-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid #999999;
  border-bottom: 2px solid #999999;
  transform: rotate(45deg); /* Fechada: aponta para baixo */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* SETA GIRA e fica azul quando aberto */
.novidades-accordion-item.active .novidades-chevron {
  transform: rotate(-135deg); /* Aberta: aponta para cima */
  border-color: var(--cinza-escuro-color);
}

/* Corpo do accordion */
.novidades-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.novidades-accordion-item.active .novidades-accordion-body {
  max-height: 1000px; /* Valor alto para garantir que abra */
}

.novidades-accordion-body p {
  padding: 0 24px 20px 24px;
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.7;
}



.box-g{
  text-align: center;
  align-items: center;
}

.box-g p{
  font-size:16px;    
  line-height: 1.2;
  margin:0;
}

.box-g strong{
    font-size:30px;
    color:#fff;
}
@media (min-width: 700px){
  

    .boxes div{
      float:left;
      margin:0 10px;
      min-height: initial;
    }
    .boxes div:nth-child(1){
      height: 450px;
    }

    .boxes div:nth-child(2){
      height: 250px;
      margin-top: 200px;
    }

    .boxes div:nth-child(3){
      height: 160px;
      margin-top: 290px;
    }

    .boxes div:nth-child(4){
      height: 100px;
      margin-top: 350px;
    }
}

@media (max-width: 981px){
  .box-g{
    width: 150px;
  }
}

@media (max-width: 700px){
  .box-g{
    width: 100%;
    margin-bottom: 25px;
    height: auto;
    min-height: initial;
  }
}

.boxes{
  margin-bottom: 48px;
}




.boxes-supervisao{
  gap:40px;
}

.box-supervisao{
  border-radius:15px;
  padding:20px;
  box-shadow: 1px 1px 17px -3px rgba(0,0,0,0.34);
  font-size:1rem;
  text-align: center;
  align-items: center;
  margin:3rem auto;
  font-size:16px;
  font-weight: 400 !important;
}
.box-supervisao img{
  display: block;
  margin:auto auto;
}
.chamada-box-supervisao{
  text-align: center;
  margin-top:50px;
}


@media (min-width:980px){

  .boxes-supervisao{
    display:flex;
    justify-content: space-between;
    padding-top:50px;
    gap:20px;
  }
  
  .box-supervisao{
    display:flex;
    flex-direction: column;
    margin:0;
    width: 33%;
  }

}

.box-supervisao h3{
  margin-bottom: 0.2rem;
}

.projeto-di h4{
  margin-bottom: 0.3rem;
}


.secao-bg {
  background-image: url("../images/bg_distribuicao.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid transparent;
  color:#fff;
}

.secao-bg h2,
.secao-bg p{
  color:#fff;
}

.secao-bg2{
  background-color: #f5f5f0;
  margin:0 !important;
  padding: 5rem 0;
}

.secao-bg2 + .secao-cm{
  margin-top:0;
}
