/* ================= CONFIGURAÇÕES GERAIS ================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
body, html { height: 100%; font-family: "Inter", sans-serif; color: #fff; overflow-x: hidden; }

/* ================= CABEÇALHO ================= */
.cabecalho {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.container-cabecalho {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marca__img {
  height: 36px;
}

.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ffbf00;
    
}

.whats {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* AQUI ESTÁ A CORREÇÃO: 
  O seletor foi atualizado de 'svg' para 'img'
*/
.whats img {
  width: 18px;
  height: 18px;
}

.whats:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* ================= CARROSSEL ================= */
.carrossel {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* MOBILE: banner mais baixo */
@media (max-width: 768px) {
  .carrossel {
    height: 95vh;      /* testa 70vh, 60vh, 50vh... até ficar bom */
  }
}

.slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.ativo {
  opacity: 1;
  z-index: 1;
}

.imagem {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 2s ease;
}

.slide.ativo .imagem {
  transform: scale(1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900 px;
  padding: 0 20px;
}

.texto h1 {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
}


.texto .amarelo {
  color: #ffbf00;
}

.texto p {
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-inline: auto;
  color: #ddd;
}

.texto .link {
  display: inline-block;
  margin-top: 20px;
  color: #ffbf00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #ffbf00;
  transition: color 0.3s ease;
}

.texto .link:hover {
  color: #fff;
}


.texto_4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 900px;
  padding: 0 20px;
}
.texto_4 h1 {
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
}
.texto_4 .amarelo_4 {
  color: #ffbf00;
}

.texto_4 p {
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 700px;

  color: #ddd;
}

.texto_4 .link {
  display: inline-block;
  margin-top: 20px;
  color: #ffbf00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #ffbf00;
  transition: color 0.3s ease;
}

.texto_4 .link:hover {
  color: #fff;
}

.texto_3 {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 900px;
  padding: 0 20px;
}
.texto_3 h1 {
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
}
.texto_3 .amarelo_3 {
  color: #ffbf00;
}

.texto_3 p {
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 700px;

  color: #ddd;
}

.texto_3 .link {
  display: inline-block;
  margin-top: 20px;
  color: #ffbf00;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid #ffbf00;
  transition: color 0.3s ease;
}

.texto_3 .link:hover {
  color: #fff;
}

.texto_2 .btn {
  margin-top: 14px;   
}

.texto_3 .btn {
  margin-top: 14px;   
}



/* Área de texto sobre o banner */
.texto_7 {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 900px;
  padding: 0 20px;
  color: white;
  z-index: 2;
}

/* LOGO do slide */
.logo_slide {
  display: block;
  width: 170px;
  height: 80px;
  object-fit: contain; /* mantém proporção sem distorcer */

  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0.95;
}



.slide.ativo .logo_slide {
  transform: scale(1.03);
  opacity: 1;
}

/* Título */
.texto_7 h1 {
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
  margin: 0;
}

/* Destaque amarelo */
.texto_7 .amarelo_7 {
  color: #ffbf00;
}

/* Parágrafo */
.texto_7 p {
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 700px;
  color: #ddd;
}

@media (max-width: 768px) {
  .texto_7 {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 900px;
  padding: 0 20px;
  color: white;
  z-index: 2;
}

.texto_7 h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
  margin: 0;
}

/* Destaque amarelo */
.texto_7 .amarelo_7 {
  color: #ffbf00;
}

/* Parágrafo */
.texto_7 p {
  margin-top: 10px;
  font-size: 1.1rem;
  max-width: 700px;
  color: #ddd;
}
}


/* BACKGROUND DESKTOP – SLIDE 2 */
.slide-2 .imagem {
  background-image: url("assets/Banners/banner_02.jpg");
  background-size: cover;
  background-position: center;
}

/* MOBILE – troca o background */
@media (max-width: 768px) {
  .slide-2 .imagem {
    background-image: url("assets/Banners/Mobile/m_banner_02.jpg"); /* coloque aqui a versão mobile */
    background-position: center right; /* ajuste se precisar enquadrar melhor */
  }
}

/* SLIDE 3 — DESKTOP */
.slide-3 .imagem {
  background-image: url("assets/Banners/banner_03.jpg");
  background-size: cover;
  background-position: center;
}

/* SLIDE 3 — MOBILE */
@media (max-width: 768px) {
  .slide-3 .imagem {
    background-image: url("assets/Banners/Mobile/m_banner_03.jpg"); /* sua imagem mobile */
    background-position: center right;  /* ajuste fino */
  }
}

/* SLIDE 4 — DESKTOP */
.slide-4 .imagem {
  background-image: url("assets/Banners/banner_04.jpg");
  background-size: cover;
  background-position: center;
}

/* SLIDE 4 — MOBILE */
@media (max-width: 768px) {
  .slide-4 .imagem {
    background-image: url("assets/Banners/Mobile/m_banner_04.jpg"); /* sua imagem mobile */
    background-position: center right;  /* ajuste fino */
  }
}

/* SLIDE 5 — DESKTOP */
.slide-5 .imagem {
  background-image: url("assets/Banners/banner_05.jpg");
  background-size: cover;
  background-position: center;
}
/* SLIDE 5 — MOBILE */
@media (max-width: 768px) {
  .slide-5 .imagem {
    background-image: url("assets/Banners/Mobile/m_banner_05.png"); /* versão mobile */
    background-position: center right; /* ajusta se precisar */
  }
}




.texto_1 {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 900px;
  padding: 0 20px;
}

.texto_1 h1 {
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
}

.texto_1 .amarelo_1 {
  color: #ffbf00;
}

.texto_1 p {
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 700px;
  color: #ddd;
}

/* MOBILE */
@media (max-width: 768px) {
  .texto_1 {
    padding: 0 16px;
    margin-left: 50px;   /* empurra pra direita */
    margin-top: 20px;    /* 👉 empurra pra BAIXO */
    text-align: left;
  }

  .texto_1 h1 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .texto_1 p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 100%;
  }
}



/* opcional: menor ainda */
@media (max-width: 480px) {
  .texto_1 {
    margin-left: 30px;       /* um pouco menos pra telas bem pequenas */
    padding: 0 12px;
  }

  .texto_1 h1 {
    font-size: 26px;
  }
}


/* Link/Botão */
.link_slide {
  display: inline-block;
  margin-top: 20px;
  color: #ffbf00;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid #ffbf00;
  transition: color 0.3s ease;
}

.link_slide:hover {
  color: #fff;
}

/* Botão */
.texto_1 .btn {
  margin-top: 14px;
}

/* Responsividade */









.texto_4 .btn {
  margin-top: 14px;   
}

.texto .btn {
  margin-top: 14px;   
}


.texto_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900 px;
  padding: 0 20px;
}
.texto_2 h1 {
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
}
.texto_2 .amarelo_2 {
  color: #ffbf00;
}

.texto_2 p {
  bottom: 10PX;
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 900px;

  color: #ddd;
}

.texto_2 .link {
  display: inline-block;
  margin-top: 20px;
  color: #ffbf00;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #ffbf00;
  transition: color 0.3s ease;
}

.texto_2 .link:hover {
  color: #fff;
}




.texto_1 .btn {
  margin-top: 14px;   
}


.texto_1 .link {
  display: inline-block;
  margin-top: 20px;
  color: #ffbf00;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid #ffbf00;
  transition: color 0.3s ease;
}

.texto_1 .link:hover {
  color: #fff;

}
/* ====== Layout base ====== */
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
}

.solucoes {
  padding: 80px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.titulo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #424242;
  text-transform: uppercase;
}

.titulo span {
  color: #ffbf00;
}

.subtitulo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #424242;
  margin: 10px auto 5px;
  max-width: 800px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* ====== Card ====== */
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 1.9rem;
  color: #ffbf00;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.card p {
  color: #444;
  line-height: 1.5;
  margin-bottom: 10px;
}

.saiba-mais {
  display: inline-block;
  color: #ffbf00;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.saiba-mais:hover { color: #ffbf00; }

.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.card li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
  color: #444;
}
.card li::before {
  content: "📊";
  position: absolute;
  left: 0;
  top: 0;
}




.card{
  display: flex;             
  flex-direction: column;  
}


.card .btn{
  margin-top: auto;          
  align-self: flex-start;     
}

.card ul{
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.card li{
  position: relative;
  padding-left: 28px;      
  margin-bottom: 12px;
  color: #444;
}

.card li::before{
  content: "➜";
  position:absolute; left:0; top:.1rem;
  color:#FFCF3C; font-weight:700;
}



/* ====== Animação de subida ====== */
.animar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.animar.em-visao {
  opacity: 1;
  transform: translateY(0);
}


/* ================= CONTROLES ================= */
.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
  z-index: 2;
}
/* ESCONDER NO MOBILE */
@media (max-width: 768px) {
  .seta {
    display: none;
  }
}
.seta:hover {
  background: rgba(0,0,0,0.7);
}

.anterior { left: 20px; }
.proximo { right: 20px; }

/* ================= INDICADORES ================= */
.indicadores {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

@media (max-width: 768px) {
  .indicadores {
    bottom: 90px; /* aumenta esse valor pra subir mais */
  }
}



.indicadores button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.indicadores button.ativo {
  background: #fff;
  transform: scale(1.3);
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
  .menu { display: none; }
  .whats { font-size: 0.9rem; }
}


/* ================= SEÇÃO: SOBRE NÓS ================= */
.secao-sobre-nos{
  background: #fff;
  padding: clamp(36px, 6vw, 80px) 0;
}

.sobre-nos__container{
  width: min(1200px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;            /* imagem maior à esquerda */
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
}

/* Cartão da imagem com “aura” suave */
.sobre-nos__cartao-imagem{
  position: relative;
  border-radius: 20px;
  padding: clamp(6px, 1vw, 10px);
  background: linear-gradient(135deg, #eef7ff 0%, #e9fcf4 100%);
    display: block; width: 90%; height: 400px;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.12);
  overflow: hidden;
}
.sobre-nos__cartao-imagem::before{
  /* vinheta leve no topo-esquerda */
  content: "";
  position: absolute; inset: -30% 40% 40% -30%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(30,163,255,0.25), transparent 60%);
  pointer-events: none;
}

.sobre-nos__imagem{
  display: block; 
  width: 100%;
   height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .sobre-nos__cartao-imagem {
    width: 100%;
    height: auto;            /* deixa o card crescer conforme o conteúdo */
    padding: 10px;
    margin-inline: 0;
    border-radius: 16px;
  }

  .sobre-nos__imagem {
    height: 230px;           /* altura fixa pra recortar a foto, estilo “card” */
    border-radius: 16px;
    object-fit: cover;       /* garante que preencha sem distorcer */
  }

  .sobre-nos__cartao-imagem::before {
    /* vinheta um pouco menor no mobile pra não poluir */
    inset: -40% 20% 40% -20%;
  }
}

/* Bloco de texto */
.sobre-nos__titulo{
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #424242;
  margin: 0 0 6px;
}
.sobre-nos__subtitulo{
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #424242;
  margin: 0 0 14px;
}
.sobre-nos__paragrafo{
  color: #475569;
  line-height: 1.6;
  margin: 0 0 12px;
}
.sobre-nos__acoes{ margin-top: 12px; }
.sobre-nos__botao{
  display: inline-block;
  background: #ffbf00;
  color: #444;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
}
.sobre-nos__botao:hover{ filter: brightness(1.05); transform: translateY(-1px); transition: .2s }

/* Responsivo: empilha no mobile */
@media (max-width: 980px){
  .sobre-nos__container{ grid-template-columns: 1fr; }
}

/* ================= ANIMAÇÃO "SUBINDO" AO ENTRAR NA TELA ================= */
.animar{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.animar.em-visao{
  opacity: 1;
  transform: translateY(0);
}

/* =============== CLIENTES — versão simples =============== */
.clientes-simples{
  background:#fff;
  padding: clamp(0px, 7vw, 0px) 0;
}
.clientes-simples__container{
  width:min(1240px, 94vw);
  margin:0 auto;
}
.clientes-simples__cabecalho{ margin-bottom:24px }
.clientes-simples__titulo{
  color:#424242; 
  font-weight:1500; 
  font-size: clamp(1.4rem, 3vw, 2rem);
   margin:0;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   top: -50px;
}
.clientes-simples__subtitulo{
  color:#64748b; margin:6px 0 0; font-size:.95rem;
}

.clientes-simples__lista{
  list-style:none;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  align-items:center;
  gap: clamp(30px, 5vw, 70px) clamp(30px, 6vw, 110px); 
}
@media (max-width: 1200px){ .clientes-simples__lista{ grid-template-columns: repeat(4,1fr); } }
@media (max-width: 900px) { .clientes-simples__lista{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .clientes-simples__lista{ grid-template-columns: repeat(2,1fr); } }

.clientes-simples__item{
  display:flex; align-items:center; justify-content:center;
}

.clientes-simples__item img{
  width:100%;
  max-width: 260px;               
  max-height: 56px;           
  object-fit: contain;
  transition: transform .2s ease;
  filter: saturate(1);
}

@media (hover:hover){
  .clientes-simples__item:hover img{ transform: scale(1.06); }
}


.clientes-simples__item2{
  display:flex; align-items:center; justify-content:center;
}

.clientes-simples__item2 img{
  width:100%;
  max-width: 250px;               
  max-height: 90px;           
  object-fit: contain;
  transition: transform .2s ease;
  filter: saturate(1);
}
@media (hover:hover){
  .clientes-simples__item2:hover img{ transform: scale(1.06); }
}

.animar{ opacity:0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.animar.em-visao{ opacity:1; transform: translateY(0); }

/* ================= SEÇÃO ================= */

/* ===== Áreas de Atuação (escopo ie-area-*) ===== */

 
/* ===== SEÇÃO PRINCIPAL – FUNDO PRETO TOTAL ===== */


/* ===== Título alternativo (isolado para não dar conflito) ===== */
.ie-heading-2{
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 70px 16px 0px 16px;
  text-align: center;
  color: #fff;
}

/* Overline em “pílula” */
.ie-heading-2__kicker{
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 14px;
  font: 700 13px/1.1 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f7c566;
  background: rgba(247, 197, 102, 0.08);
  border: 1px solid rgba(247, 197, 102, 0.25);
  border-radius: 999px;
}

/* Título com highlight em gradiente + sublinhado luminoso */
.ie-heading-2__title{
  margin: 0 auto 10px;
  max-width: 1000px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.05;
  font-size: clamp(28px, 4.2vw, 58px);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  position: relative;
}

.ie-heading-2__highlight{
  color: #f7c566;
 
}



/* Subtítulo opcional */
.ie-heading-2__subtitle{
  margin: 10px auto 0;
  max-width: 800px;
  color: #cfcfcf;
  font: 500 16px/1.5 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  opacity: .9;
}

/* Animação do sublinhado (leve expansão) */
@keyframes ie-heading-2-underline{
  0%   { transform: scaleX(.15); opacity: .0; }
  60%  { transform: scaleX(1.05); opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}

/* responsividade fina */
@media (max-width: 480px){
  .ie-heading-2__kicker{ font-size: 12px; padding: 5px 10px; }
  .ie-heading-2__subtitle{ font-size: 15px; }
}


.ie-bg-preto {

  color: #fff;
  width: 100%;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

/* ===== HERO / TÍTULOS ===== */
.ie-hero {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 16px;
  text-align: center;
}

.ie-hero__kicker {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: .8px;
  font-weight: 800;
}

.ie-kicker__amarelo {
  color: #f2a41e;
}

.ie-kicker__roxo {
  background: linear-gradient(90deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ie-hero__title {
  margin: 0 auto;
  max-width: 1100px;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: .6px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .55);
}

/* ===== GRID ===== */
.ie-areas-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

@media (max-width: 1024px) {
  .ie-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .ie-areas-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ===== CARD ===== */
.ie-areas-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10.5;
  text-decoration: none;
  color: #ffffff;
  background: #0b0b0b;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ie-areas-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .6);
}

/* ===== IMAGEM DE FUNDO OPACA ===== */
.ie-areas-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.65) contrast(1.05) saturate(.9);
  transform: scale(1.03);
  z-index: 0;
}

.ie-areas-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .3);
}

.ie-areas-card__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 180px rgba(0, 0, 0, .55);
  pointer-events: none;
}

/* ===== CONTEÚDO ===== */
.ie-areas-card__content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== ÍCONE DENTRO DO CÍRCULO ===== */
.ie-areas-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .55);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .35),
              inset 0 0 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(1.5px);
}

.ie-areas-card__icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  /* Caso o ícone seja preto, descomente: */
  /* filter: brightness(0) invert(1); */
}

/* ===== TÍTULO ===== */
.ie-areas-card__title {
  margin: 12px 0 auto 0;
  font-size: 36px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

@media (max-width: 640px) {
  .ie-areas-card__title {
    font-size: 28px;
  }
}

/* ===== CTA “Saiba mais” ===== */
.ie-areas-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: #f2a41e;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .25);
  transition: color .2s ease;
}

.ie-areas-card__cta-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f2a41e;
  color: #151515;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  transition: transform .2s ease, background .2s ease;
}

.ie-areas-card__cta-arrow {
  width: 18px;
  height: 18px;
}

.ie-areas-card:hover .ie-areas-card__cta-circle {
  transform: translateX(4px);
  background: #ffb642;
}

.ie-areas-card:hover .ie-areas-card__cta {
  color: #ffb642;
}

/* ===== ANIMAÇÃO (ligada ao seu JS) ===== */
.ie-animate-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0ms);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ie-animate-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}



/* ===== Base ===== */



/* ===== Hero ===== */
.secao-hero{ padding: clamp(32px, 6vw, 80px) 0; }
.hero__grid{
  width: min(1200px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 3.6vw, 44px);
  align-items: center;
}
@media (max-width: 980px){ .hero__grid{ grid-template-columns: 1fr; } }

.hero__titulo{
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: #424242;
}
.hero__paragrafo{
  margin: 0 0 18px;
  max-width: 58ch;
  color: #475569;
}

/* Botões */
.btn {
  display: inline-block;
  text-align: center;
  padding: 14px 14px;
  border: 2px solid #ffbf00;
  color: #ffbf00;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;

  border-radius: 14px;
}
.btn:hover {
  background: #ffbf00;
  color: #ffffff;
}

.btn--amarelo{
  background: #ffcc47; color: #444; box-shadow: 0 14px 32px rgba(255, 194, 33, .35);
}
.btn--amarelo:hover{
  background: #ffc221; transform: translateY(-2px);
}

.btn2{
  display: inline-block;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 900;
  top: 100px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn--amarelo{
  background: #ffcc47; color: #ffffff; box-shadow: 0 14px 32px rgba(255, 194, 33, .35);
}
.btn--amarelo:hover{
  background: #ffc221; transform: translateY(-2px);
}
/* alternativa roxo:
.btn--roxo{ background: var(--roxo); color:#fff; box-shadow: var(--sombra-roxo); }
.btn--roxo:hover{ background: var(--roxo-hover); transform: translateY(-2px); }
*/

.hero__video{
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  display: block;
  box-shadow: 0 18px 58px rgba(2, 6, 23, .12);
}

/* ===== Container da seção ===== */
.secao-faq{
  padding: clamp(28px, 6vw, 70px) 0;
  background: #ffffff;
  color: #0f172a;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.faq__container{
  width: min(980px, 94vw);
  margin: 0 auto;
}

/* ===== Título ===== */
.faq__titulo{
  text-align: center;
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
}

/* ===== Lista/itens ===== */
.faq__lista{ margin-top: 18px; }

.faq__item{
  background: #f6f7f8;
  border: 1px solid #eceff1;
  border-radius: 12px;
  margin: 10px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2,6,23,.05);
}

.faq__pergunta{ margin: 0; }

.faq__botao{
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  font-weight: 300;
  font-size: 0.98rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq__botao:focus-visible{
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
  border-radius: 10px;
}

.faq__icone{
  transition: transform .25s ease;
  color: #64748b;
}

/* conteúdo colapsável */
.faq__resposta{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 18px;
  color: #475569;
  transition: max-height .28s ease, opacity .28s ease, padding .28s ease;
  line-height: 1.55;
}

/* estado aberto */
.faq__item.aberto .faq__resposta{
  padding: 10px 18px 16px;
  max-height: 300px;           /* valor seguro: ajuste conforme seus textos */
  opacity: 1;
}
.faq__item.aberto .faq__icone{
  transform: rotate(90deg);
}

/* ===== Animação “subindo” ===== */
.animar[data-anim="subir"]{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1),
              transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.animar.em-visao{ opacity: 1; transform: translateY(0); }

/* “stagger”: delay progressivo usando data-i (0,1,2,...) */
.animar[data-anim="subir"][data-i]{
  transition-delay: calc(attr(data-i number) * 90ms);
}

@media (prefers-reduced-motion: reduce){
  .animar[data-anim="subir"]{ transition: none; opacity: 1; transform: none; }
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
}

/* ===== SEÇÃO ===== */
.secao-contato {
  padding: clamp(0, 6vw, 80px) 0;
}

.contato__container {
  width: min(1200px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
}

@media (max-width: 900px) {
  .contato__container {
    grid-template-columns: 1fr;
  }
}

h4 {
  color: #424242;
}

.enderecos-container {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px 0;
  /* NÃO usar flex-wrap aqui se você quer as 3 sempre na mesma linha */
  /* flex-wrap: wrap;  <- pode tirar */
}

.endereco-imagem {
  flex: 1 1 0;      /* cada imagem ocupa 1/3 do espaço */
  max-width: 150px;  /* libera o limite de 250px */
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* Opcional: no mobile, empilhar as imagens */
@media (max-width: 768px) {
  .enderecos-container {
    flex-wrap: wrap;
  }

  .endereco-imagem {
    flex: 1 1 100%;
  }
}


/* ===== ESQUERDA ===== */
.contato__info h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: -10px;
  color: #424242;
}
.contato__texto {
  color: #475569;
  margin-bottom: 24px;
}

.contato__lista {
  list-style: none;
  padding: 0;
  margin: 10px 0 22px;
}
.contato__lista li {
  margin-bottom: 10px;
  color: #334155;
  display: flex;
  align-items: start;
  gap: 6px;
}

/* ===== FORMULÁRIO ===== */
.contato__form {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.05);
}

.contato__form h4 {
  font-weight: 800;
  margin-bottom: 16px;
}

.contato__form input,
.contato__form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.contato__form input:focus,
.contato__form textarea:focus {
  border-color: #f59e0b;
}

.contato__check {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  color: #475569;
  gap: 8px;
  margin-bottom: 16px;
}

/* ===== BOTÃO LARANJA ===== */
.btn-laranja {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #ffcc47;
  color: #444;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
}

.btn-laranja:hover {
  background: #ffc221;
  transform: translateY(-2px);
}

/* ===== ANIMAÇÃO “SUBINDO” ===== */
.animar[data-anim="subir"] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1),
              transform 0.55s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.animar.em-visao {
  opacity: 1;
  transform: translateY(0);
}
.animar[data-anim="subir"][data-i] {
  transition-delay: calc(attr(data-i number) * 90ms);
}

/* ===== Rodape ===== */
.rodape {
  padding: 24px 0 38px;
  background: #fff;
  color: #0f172a;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.rodape__container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

/* Social */
.rodape__social {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 4px 16px;
}
.social {
  color: #0f172a;
  opacity: .85;
  display: inline-flex;
  transition: opacity .2s ease, transform .2s ease;
}
.social:hover { opacity: 1; transform: translateY(-2px); }

/* Divider */
.rodape__div {
  border: 0;
  height: 1px;
  background: #e5e7eb;
  margin: 14px 0 20px;
}

/* Link columns */
.rodape__links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 2.4vw, 30px);
}
@media (max-width: 900px) {
  .rodape__links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .rodape__links { grid-template-columns: 1fr; }
}

.coluna h4 {
  margin: 0 0 10px;
  font-size: .96rem;
  font-weight: 900;
}
.coluna a {
  display: block;
  color: #334155;
  font-size: .92rem;
  margin: 8px 0;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.coluna a:hover { color: #FFCF3C; transform: translateX(2px); }

/* ===== Animação “subindo” ===== */
.animar[data-anim="subir"]{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1),
              transform .55s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.animar.em-visao{ opacity: 1; transform: translateY(0); }

/* Stagger com data-i (0,1,2...) */
.animar[data-anim="subir"][data-i]{
  transition-delay: calc(attr(data-i number) * 90ms);
}

@media (prefers-reduced-motion: reduce){
  .animar[data-anim="subir"]{ transition: none; opacity: 1; transform: none; }
}


/* ===== Layout base ===== */
.mapa-brasil{
  background: #0f0f10;
  color: #fff;
  padding: 60px 16px 100px;
}
.mapa-brasil .container{
  max-width: 1200px;
  margin: 0 auto;
}
.headline{
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 32px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

/* ===== Mapa ===== */
.br-map{
  position: relative;
  width: 100%;
  max-width: 1100px;           /* opcional: para limitar a largura */
  aspect-ratio: 16 / 11;       /* ajuste conforme a proporção da sua arte */
  margin-inline: auto;
  isolation: isolate;
}

/* Imagem do Brasil (fica no fundo do container) */
.br-svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;         /* mantém proporção da arte */
  opacity: .95;                /* levemente translúcido */
  filter: drop-shadow(0 10px 40px rgba(0,0,0,.45));
  pointer-events: none;        /* deixa os pins “clicáveis” por cima */
  z-index: 1;
}

/* ===== Pins ===== */
.pin{
  position: absolute;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb74d 0%, #ff8a00 55%, #7c2ae8 100%);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06), 0 8px 20px rgba(0,0,0,.35);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;                  /* acima da imagem */
  animation: pulse 2.2s ease infinite;
}
.pin::after{
  content: "+";
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Tooltip */
.tooltip{
  position: absolute;
  left: 50%;
  transform: translate(-50%, calc(-100% - 10px));
  background: #18181b;
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  pointer-events: none;
  opacity: 0;
  translate: 0 6px;
  transition: opacity .25s ease, translate .25s ease;
  z-index: 5;
}
.pin:hover .tooltip{
  opacity: 1;
  translate: 0 0;
}

/* Animação de entrada */
.animar{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.animar.em-visao{
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse{
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,.06), 0 8px 20px rgba(0,0,0,.35); }
  50%      { box-shadow: 0 0 0 6px rgba(255,255,255,.12), 0 8px 26px rgba(0,0,0,.45); }
}


/* Visual do bloco/itens – igual ao anterior */
.faqie-bloco { max-width: 980px; margin: 0 auto; padding: 24px 16px 48px; }
.faqie-titulo-da-secao { margin: 0 0 18px; font-size: 2.2rem; line-height: 1.2; text-align: center; font-weight: 800; color: #424242; }

.faqie-item {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 10px 30px rgba(15, 26, 43, 0.06);
  overflow: hidden;
}

.faqie-pergunta::-webkit-details-marker { display: none; }
.faqie-pergunta { list-style: none; }

.faqie-pergunta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 18px; cursor: pointer; font-weight: 600;
  color: #0f1a2b; background: #f7f9fc; transition: background-color .2s ease;
}
.faqie-pergunta:hover { background: #f3f2f2; }

.faqie-icone-seta { font-size: 18px; line-height: 1; transform: rotate(0deg); transition: transform .2s ease; color: #414a1a; margin-left: auto; }
.faqie-item[open] .faqie-icone-seta { transform: rotate(90deg); }




.faqie-resposta { padding: 14px 18px 18px; color: #534f3b; font-size: 0.975rem; line-height: 1.6; background: #fff; border-top: 1px solid #eef0f4; }
.faqie-pergunta:focus { outline: 2px solid #ffb74d; outline-offset: 2px; border-radius: 12px; }

@media (max-width: 640px) {
  .faqie-titulo-da-secao { font-size: 1.8rem; }
  .faqie-pergunta { padding: 14px 16px; }
  .faqie-resposta { padding: 12px 16px 16px; }
}

/* ===== Animação “subindo” (usa a sua lógica de IntersectionObserver) ===== */
.ie-animate-up {
  opacity: 0;
  transform: translateY(16px);
  /* delay controlado por --ie-delay; cada card recebe via JS */
  transition:
    opacity .5s ease var(--ie-delay, 0ms),
    transform .5s ease var(--ie-delay, 0ms);
  will-change: opacity, transform;
}

.ie-animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respeita prefers-reduced-motion: o JS já faz isso, mas reforçamos aqui */
@media (prefers-reduced-motion: reduce) {
  .ie-animate-up { opacity: 1; transform: none; transition: none; }
}

.card__cartao-imagem{
  width: min(90vw, 520px);
  aspect-ratio: 13 / 10;        /* ~520x400 */
  border-radius: 20px;          
  overflow: hidden;              
  display: grid;
  place-items: center;

}

.card__imagem{
  width: 100%;
  height: 100%;      
  border-radius: inherit;    
  display: block; 
  border-radius: 16px;
  object-fit: cover; 
}

.card__cartao-imagem::before{
  border-radius: inherit;
}


.ie-animate-up{ opacity:1 !important; transform:none !important; }



.amarelo_text {
  color: #ffb74d;
}

/* =============== BOTÃO WHATSAPP FIXO =============== */

.ie-botao-whats1 {
  position: fixed !important;
  right: 30px;
  bottom: 18px;

  width: 70px;
  height: 70px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;                 /* verde mais forte */
  box-shadow: 0 7px 13px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  z-index: 99999 !important;
  cursor: pointer;

  /* animação “respirando” */
  animation: ie-botao-whats1-pulse 2.4s ease-in-out infinite;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

/* img do ícone dentro do botão */
.ie-botao-whats1__icone {
  width: 55%;
  height: 55%;
  object-fit: contain;
  display: block;
}

/* hover */
.ie-botao-whats1:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  filter: brightness(1.05);
}

/* keyframes do “pulse” */
@keyframes ie-botao-whats1-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.08);
  }
}

/* ajuste em telas pequenas */
@media (max-width: 480px) {
  .ie-botao-whats1 {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
