/* ==========================
   FGSC - CSS OTIMIZADO PARA DIFERENTES ESCALAS
   ========================== */

/* Variáveis principais - usando rem para escalabilidade */
:root {
  /* Tamanho base: 16px = 1rem. Ajustável via media queries */
  font-size: 16px;

  --cor-primaria: #f06b57;
  --texto-claro: #ffffff;
  --branco: #ffffff;
  --cinza-claro: #f4f4f4;
  --altura-cabecalho: 4.75rem;
  /* 76px */
  --card-radius: 0.75rem;
  /* 12px */
  --card-shadow: 0 0.875rem 1.875rem rgba(18, 22, 28, 0.12);
  --muted: #6b6b6b;
  --accent: #f77f73;
  --radius: 0.875rem;
  /* 14px */

  /* SESSAO 7 */
  --coral: #ef6b57;
  --coral-dark: #c94a3a;
  --white: #ffffff;
  --shadow: 0 1.75rem 2.5rem rgba(15, 20, 30, 0.06);
}

/* Ajuste de escala base para diferentes configurações do Windows */
@media (min-resolution: 120dpi) {
  :root {
    font-size: 15px;
    /* Reduz ligeiramente para 125% */
  }
}

@media (min-resolution: 144dpi) {
  :root {
    font-size: 14px;
    /* Reduz mais para 150% */
  }
}

@media (min-resolution: 192dpi) {
  :root {
    font-size: 12px;
    /* Reduz para 200% */
  }
}

/* Reset simples */
* {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* body {
  overflow-x: hidden;

} */

.ativo {
  width: 0.875rem;
  /* 14px */
  height: 0.875rem;
  border-radius: 50%;
  background: #c94a3a;
}

/* REMOVE SCROLL HORIZONTAL */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Evita elementos ultrapassarem a tela */
* {
    max-width: 100%;
}
/* main {
  background: #f4f4f4;
} */

/* Utility - Container fluido */
.container {
  width: min(72.5rem, 92%);
  /* 1160px */
  margin: 0 auto;
}

/* ------------- HEADER ------------- */
.cabecalho {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--altura-cabecalho);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.75rem;
  /* 28px */
  z-index: 60;
  background: transparent;
  color: var(--texto-claro);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  padding-top: px;
}

.botao-contactar {
  color: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
 /* */
  font-size: 0.95rem;
  font-weight: 300;
  background-color: #F36D53;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  /* Impede que o texto quebre */
}

/* .cabecalho.cabecalho-branco {
  background: #fff;
  color: #111;
  box-shadow: 0 0.375rem 1.25rem rgba(19, 21, 22, 0.06);
} */



/* nav básico */
.nav-principal {
  display: flex;
  gap: 1.125rem;
  /* 18px */
  align-items: center;
  margin-right: 15px;
}

.bg-laranja {
  background-color: #06a0d6;
}

.nav-links {
  display: flex;
  gap: 1.125rem;
  list-style: none;
  font-weight: 500;
}

.nav-links a {
  padding: 0.375rem 0.25rem;
  /* 6px 4px */
  color: inherit;
  text-decoration: none;
}

/* botão contactar */
.botao-contactar {
  justify-items: center;
  display: flex;
  background: #c94a3a;
  color: var(--branco);
  border-radius: 0.5rem;
  /* 8px */
  padding: 0.125rem 0.875rem;
  /* 2px 14px */
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.08);
}

.botao-contactar .texto {
  margin-top: 0.125rem;
}

.icone-telefone {
  margin-right: 0.25rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 1.25rem;
  /* 20px */
}

/* seletor de idioma (simples) */
.seletor-idioma {
  position: relative;
  font-weight: 600;
  cursor: pointer;
}

.lista-idiomas {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.12);
  display: none;
  overflow: hidden;
}

.seletor-idioma:hover .lista-idiomas {
  display: block;
}

.lista-idiomas li {
  padding: 0.625rem 0.875rem;
  /* 10px 14px */
  white-space: nowrap;
}

/* ---------- HERO CARDS ---------- */
.hero-cards-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin-top: -5rem;
  /* -80px */
  z-index: 60;
  position: relative;
}

.hero-cards {
  width: min(71.875rem, 94%);
  /* 1150px */
  display: flex;
  gap: 1.75rem;
  /* 28px */
  align-items: stretch;
  pointer-events: auto;
  transform: translateY(0);
}

/* card base */
.hero-cards .card {
  background: #ffffff;
  border-radius: 0.625rem;
  /* 10px */
  box-shadow: 0 1.125rem 1.875rem rgba(19, 19, 19, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 7.5rem;
  /* 120px */
  flex: 1 1 0%;
}

.card-inner {
  width: 100%;
  display: block;
  align-items: center;
}

/* Card 1 — número */
.card-stats {
  padding: 1.25rem !important;
  /* 20px */
  max-width: 22.5rem;
  /* 360px */
  height: 12.5rem;
  /* 200px */
  justify-content: center;
}

.card-stats .big-number {
  display: block;
  font-size: clamp(3rem, 5vw, 5.375rem);
  /* 86px responsivo */
  line-height: 0.9;
  font-weight: 700;
  color: #ee6b57;
 /* */
}

.card-stats .small-note {
  margin-top: 0.75rem;
  /* 12px */
  font-size: 0.9375rem;
  /* 15px */
  color: #6b6b6b;
  text-align: left;
  font-weight: 400;
}

/* CARD CTA */
.card-cta {
  padding: 0;
  display: flex;
  align-items: stretch;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 1.125rem 1.875rem rgba(19, 19, 19, 0.12);
  min-height: 10rem;
  /* 160px */
  width: 100%;
}

/* Lado laranja (esquerdo) */
.card-cta .cta-left {
  position: relative;
  flex: 1.8;
  background: linear-gradient(130deg, #f06f58 74%, #f06f5800 10%, #db5b4400 100%);
  display: flex;
  align-items: center;
  padding: 1.875rem 2.25rem;
  /* 30px 36px */
  color: #ffffff;
}

.cta-left-inner {
  position: relative;
  z-index: 5;
}

.cta-left-inner p {
  line-height: 1.4;
  padding: 1.5625rem;
  /* 25px */
}

.cta-top {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  /* 20px responsivo */
  font-weight: 400;
  line-height: 3.3;
 /* */
}

.cta-bold {
  font-weight: 700;
  display: block;
  margin-top: 0.6rem;
}

.cta-bold span {
  margin: 0;
  font-weight: 800;
}

.cta-bold br {
  margin: 0;
}

.botoes-navegacao {
  display: flex;
}

.botoes-navegacao .prev {
  margin-right: 0.625rem;
}

.botoes-navegacao .stats-arrow {
  border: 0;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.125rem);
  /* 50px responsivo */
}

.cta-contacto .bg-img {
  display: none;
}

/* Bandas diagonais */
.card-cta .cta-left::before,
.card-cta .cta-left::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 0;
  height: 100%;
  pointer-events: none;
  transform: skewX(-40deg);
  z-index: 3;
}

.card-cta .cta-left::before {
  width: 9%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.053) 0%, rgba(0, 0, 0, 0.303) 60%);
  opacity: 1;
  transform: skewX(-40deg) translateX(-6.8125rem);
}

.card-cta .cta-left::after {
  width: 9%;
  right: -2%;
  top: 8%;
  height: 92%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.303) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 2px;
  transform: skewX(-40deg) translateX(-8.625rem);
  z-index: 4;
}

/* Lado branco (direito) */
.card-cta .cta-right {
  background: #ffffff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2.25rem;
  /* 24px 36px */
  color: #111;
}

.cta-right-inner {
  text-align: left;
  padding: 0;
}

.cta-contact-title {
  margin: 0;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  /* 22px responsivo */
  font-weight: 700;
 /* */
  color: #111;
}

.cta-contact-phone {
  margin: 0.5rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  /* 20px responsivo */
  font-weight: 500;
  letter-spacing: 1px;
  color: #111;
}

.card-cta .cta-left,
.card-cta .cta-right {
  min-height: 7.5rem;
}

/* ------------- HERO / SESSAO 1 ------------- */
.sessao1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--altura-cabecalho);
  overflow: hidden;
  color: var(--texto-claro);
  z-index: 1;
  background: #f4f4f4;
   height: 180px;
}




/* =============================
        SESSAO 2
============================= */

.sessao-2 {
  position: relative;
  z-index: 10;
  background: #fafafa;
  padding: 7.5rem 1.25rem 0;
  text-align: center;
  min-height: 37.4375rem;
}

.fgsc-bloco {
  max-width: 79.375rem;
  /* 1270px */
  margin: -15.1875rem auto 6.875rem;
  /* -243px auto 110px */
  background: #fafafa;
  padding: 3.125rem;
  /* 50px */
  border-radius: 0 0 1.5625rem 1.5625rem;
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(54, 55, 55, 0.761);
  border-top: none;
  z-index: -1;
}

.linha-acento {
  width: 3.125rem;
  /* 50px */
  height: 3px;
  background: #e85c43;
  margin: 9.375rem auto 0.375rem;
  /* 150px auto 6px */
}

.fgsc-bloco h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  /* ~35pt responsivo */
  margin-bottom: 0.125rem;
}

.fgsc-bloco p {
  color: #555;
  line-height: 1.7;
}

/* cards */
.cards-servicos {
  position: relative;
  z-index: 20;
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -12rem;
  transform: translateY(4rem);
}

.card-servico {
  background: #fff;
  max-width: 33.125rem;
  /* 530px */
  padding: 4.375rem 1.375rem 1.375rem;
  /* 70px 22px 22px */
  border-radius: 0.75rem;
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.icone-topo {
  width: 7.5rem;
  /* 120px */
  height: 7.5rem;
  background: #ef6a4d;
  border-radius: 50%;
  position: absolute;
  top: -3.75rem;
  left: 50%;
  transform: translateX(-50%) scale(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.icone-topo:hover {
  transform: translateX(-50%) scale(1);
}

.icone-topo img {
  width: 5rem;
  /* 80px */
}

.card-servico h3 {
  margin: 2.5rem 0 2.5rem 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  /* ~36pt responsivo */
  margin-bottom: 0.9375rem;
}

.card-servico p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.9375rem;
  text-align: justify;
}

.card-servico a {
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1.1rem);
  /* ~15pt responsivo */
  color: #000;
  text-align: left;
  display: block;
  text-decoration: none;
}



/* =========================================
   HERO COM VÍDEO
   ========================================= */

.sessao12 {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  
}

/* VÍDEO */
.video_fundo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video_fundo video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* reproduz suave */
    pointer-events: none;
}

/* ESCURECER LEVEMENTE */
/* SOBREPOSIÇÃO / DEGRADÊ DO VÍDEO */
.video_fundo::after {
    content: "";
    position: absolute;
    inset: 0;

    /* degradê */
    background: linear-gradient(
        to bottom,
        rgba(5, 121, 164, 0.7) 0%,
        rgba(3, 117, 188, 0.507) 50%,
        rgba(19, 52, 64, 0.959) 100%
    );

    z-index: 1;
    pointer-events: none;
}

/* CONTEÚDO */
.conteudo-hero {
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin-top: 130px;
    margin-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
}

/* TÍTULO */
.titulo-principal {
    color: #fff;
    font-size: 2.4rem;
   font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

/* TEXTO */
.subtitulo {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
      font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    margin-bottom: 20px;
    font-weight: 100;
}

/* BOTÃO */
.botao-acao {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 5px 15px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;

     font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;

    transition: 0.3s;
}

/* HOVER */
.botao-acao:hover {
    background: #fff;
    color: #111;
}






/* =============================================
   SEÇÃO ÚLTIMAS NOTÍCIAS
   ============================================= */

.ultimas-noticias {
    width: 100%;
  
    padding: 70px 10px 30px;
    margin: 0 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;

    /* sombra */
  background-color: #fff;
}

/* TÍTULO */
.ultimas-noticias .tit{
    width: 100%;
    text-align: left;
   /* */
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #111;
    font-weight: 300;
    margin-left: 47px;
}

/* CONTAINER DOS CARDS */
.noticias-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    /* alinhado à esquerda */
    justify-content: center;
}

/* CARD */
.noticia-item {
    flex: 1 1 270px;
    max-width: 400px;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    cursor: pointer;
}

.noticia-item:hover {
    transform: translateY(-5px);
}

/* IMAGEM */
.noticia-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTEÚDO */
.noticia-conteudo {
    padding: 18px 8px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


/* TÍTULO DO CARD */
.noticia-conteudo h3 {
   /* */
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #222;
    display: flex;
    align-items: flex-end;
    gap: 4px; /* controla proximidade */
}

/* TEXTO DO TÍTULO */
.titulo-noticia {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(90% - 35px);
}

/* ÍCONE */
.ler-mais {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ler-mais img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

/* TEXTO */
.noticia-conteudo p {
   /* */
    font-size: 0.92rem;
    line-height: 1.6;
    color: #111;
    font-weight: 300;
}


.ver-todas-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;

    margin-top: 6px;
    padding-right: 70px; /* margem lateral direita */
    box-sizing: border-box;
}

.ver-todas-noticias {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
   /* */
    font-size: 1.4rem;
    font-weight: 100;

    color: #111;
    transition: 0.3s;
}

.ver-todas-noticias img {
    width: 25px;
    height: 25px;
}

.ver-todas-noticias:hover {
    opacity: 0.7;
}






/* =============================
        SESSAO 3
============================= */

.sessao-3 {
  position: relative;
  background: url("../arquivos/1_Pagina_inicial/inicial2 mobile.png") center/cover no-repeat;
  padding: 16rem 2rem 8.75rem;
  text-align: center;
  color: #fff;
  z-index: 5;
  display: flex;
}
/* Monitor grande */
@media (min-width: 1600px){
    .sessao-3{
        padding: 18rem 20rem 13rem;
    }
}

.sessao-3::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.conteudo-resultados {
  position: relative;
  z-index: 2;
}

.conteudo-resultados h2 {
  margin-top: 2rem;
  font-size: clamp(2.5rem, 5vw, 4.375rem);
  margin-bottom: 3.125rem;
}

/* CONTAINER BALÕES */
.baloes {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.125rem;
  gap: 1.5625rem;
}

/* BALÃO */
.balao {
  display: grid;
  flex-direction: column;
  grid-template-columns: 18.75rem;
  /* 300px */
  position: relative;
  width: 21.25rem;
  /* 340px */
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.125rem 1.25rem;
  text-align: center;
  border: 2px solid #2aa3d6;
  box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.18);
}

.balao p {
  margin: 0;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  /* 15px */
  line-height: 1.25;
  color: #333;
}

/* PONTA DO BALÃO */
.balao::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.625rem;
  width: 1.125rem;
  height: 1.125rem;
  background: #fff;
  border-left: 2px solid #2aa3d6;
  border-bottom: 2px solid #2aa3d6;
  transform: translateX(-50%) rotate(-45deg);
}

.balao .dot {
 display: none;
}

/* DOTS GRANDES */
.dots {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1.125rem;
  gap: 19.8125rem;
  /* 317px */
}

.dot {
  width: 3rem;
  /* 48px */
  height: 3rem;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
}


/* =============================
        SESSAO 4
============================= */

.sessao-4 {
  background: #fff;
  padding: 5rem 0 6.875rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.sessao-4 .container {
  width: 100%;
  margin: 0;
}

/* Atendimento */
.imagem-conteudo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 6.25rem 0;
  gap: 3.125rem;
}

.imagem-conteudo img {
  width: 55%;
  height: 31.25rem;
  /* 500px */
  object-fit: cover;
  border-radius: 0 1.875rem 1.875rem 0;
  margin-left: -18.625rem;
}

.imagem-conteudo .conteudo {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 2.5rem 0 0;
}

.imagem-conteudo .conteudo .titulo {
  line-height: 1.5;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  /* ~32pt */
}

.imagem-conteudo .conteudo p {
  padding-top: 0.9375rem;
  line-height: 1.5;
  font-size: clamp(0.875rem, 1.3vw, 1.1rem);
  /* ~13pt */
}

/* header */
.testemunhos-header {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-bottom: 2rem;
}

.testemunhos-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  /* 36px */
  letter-spacing: 0.4px;
  margin: 0;
  font-weight: 700;
}

/* wrapper */
.testemunhos-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}

/* controls */
.ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #ef6a4d;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  color: #ef6a4d;
  font-size: 1.3rem;

  z-index: 10;

  box-shadow: 0 0.375rem 1rem rgba(0,0,0,0.1);
}
.btn-prev {
  left: 0.5rem;
}

.btn-next {
  right: 0.5rem;
}
.ctrl:focus {
  outline: 3px solid rgba(0, 123, 255, 0.15);
}

/* viewport */
.testemunhos-viewport {
  display: flex;
  align-items: left;
  justify-content: left;
  width: 80%;
  overflow: hidden;
  flex: 1 1 auto;
}

/* track */
.testemunhos-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 4rem; 
  box-sizing: border-box;
}

/* card */
.test-card {
  flex: 0 0 45rem;
  /* 720px */
  max-width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 11.25rem;
  box-sizing: border-box;
}

/* inner */
.test-card-inner {
  width: 100%;
  max-width: 45rem;

  background: #f77f73;
  color: #fff;

  padding: 1.625rem 2.125rem;
  border-radius: 1rem;
  text-align: center;
  line-height: 1.6;

  font-size: clamp(0.875rem, 1.3vw, 1.1rem);
}

/* cliente */
.cliente {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.cliente-logo {
  width: 5rem;
  /* 80px */
  height: 5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.08);
}

.cliente-nome {
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  /* ~18pt */
}

/* dots */
.test-dots {
  margin-top: 0.625rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.test-dots .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  background: #bebcbc;
  cursor: pointer;
  transition: 0.3s;
}

.test-dots .dot.active {
  background: #f77f73;
  transform: scale(1.2);
}

/* ==============SESSAO4-1=============== */
.sessao4-1 {
  position: relative;
  height: 31.25rem;
  /* 500px */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../arquivos/1_Pagina_inicial/Banner_Principal/Comprimisso com seus interesses.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 1.25rem 0 1.875rem 0;
}



.sessao4-1 .conteudo {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 68.75rem;
  padding: 0 1.25rem;
}

.sessao4-1 h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 1.5625rem;
  white-space: nowrap;
  /* NÃO deixa quebrar linha */
}

.sessao4-1 p {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  /* 30px */
  font-weight: 300;
  line-height: 1.6;
}

/* ========== SESSAO 5 (Missão/Visão/Valores) ========== */

.sv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: start;
  padding: 5rem 1.25rem 2.5rem;
}

.sv-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.75rem 1.625rem 2.125rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 33.125rem;
  width: 100%;
  max-width: 31.25rem;
  min-width: 18.75rem;
}

.sv-icon {
  width: 6.25rem;
  /* 100px */
  height: 6.25rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.375rem auto 1.125rem;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.06);
  transform: scale(1.2);
  transition: transform 0.35s ease;
}

.servico-card:hover .sv-icon {
  transform: translateX(-50%) scale(1);
}

.sv-icon img {
  width: 4.375rem;
  /* 70px */
  height: 4.375rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sv-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  /* ~30pt */
  margin: 0.375rem 0 0.625rem;
  font-weight: 700;
}

.sv-text {
  color: var(--muted);
  font-size: clamp(0.875rem, 1.3vw, 1.1rem);
  /* ~15pt */
  line-height: 1.5;
  margin-top: 0.5rem;
  flex: 1 0 auto;
  color: #000;
}

.sv-card:hover {
  transform: translateY(-6px);
  transition: transform 0.28s ease;
}

/* ========== SESSAO 6 (Números) ========== */
.numbers-container {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 1.75rem;
  align-items: center;
}

.numbers-left .numbers-hero {
  position: relative;
  border-radius: 0 1.625rem 1.625rem 0;
  overflow: hidden;
  height: 26.25rem;
  /* 420px */
}

.numbers-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.numbers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(180, 53, 30, 0.697),
      rgba(97, 40, 30, 0.456));
}

.numbers-hero-text {
  position: absolute;
  left: 9.375rem;
  /* 150px */
  bottom: 11.25rem;
  /* 180px */
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.5rem);
  /* ~40pt */
  font-weight: 300;
  line-height: 1.1;
  z-index: 2;
}

.numbers-hero-text strong {
  font-weight: 900;
}

/* SETAS */
.stats-arrow {
  width: 3.75rem;
  /* 60px */
  height: 3.75rem;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.stats-arrow:active {
  transform: scale(0.98);
}

.stat-wrapper {
  margin: 0;
  display: flex;
  padding: 0;
}

/* stat card */
.stat-card {
  background: #ffffff;
  border-radius: 0.875rem;
  padding: 1.75rem 1.375rem;
  text-align: center;
  box-shadow: 0 0.75rem 1.875rem rgba(9, 22, 28, 0.29);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 18.75rem;
  /* 300px */
  width: 100%;
  max-width: 31.25rem;
  min-width: 18.75rem;
}

.stat-circle {
  width: 8.125rem;
  /* 130px */
  height: 8.125rem;
  margin: 0 auto 0.875rem;
  padding: 0.625rem;
  border-radius: 50%;
  border: 6px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.3rem);
  /* ~37pt */
}

.stat-label {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  /* ~20pt */
  color: #222;
  line-height: 1.3;
}

/* dots */
.stats-dots {
  text-align: center;
  margin-top: 1.125rem;
}

.stats-dots button {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  background: #e6e6e6;
  margin: 0 0.375rem;
  cursor: pointer;
}

.stats-dots button.active {
  background: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0.5rem 1.125rem rgba(247, 127, 115, 0.12);
}

/* LADO ESQUERDO - coral */
.n-left {
  position: relative;
  flex: 0 0 62%;
  padding: 2.375rem 3.5rem;
  /* 38px 56px */
  background: linear-gradient(136deg, var(--coral) 0%, #ee6a59 100%);
  color: var(--white);
  z-index: 4;
  min-height: 14.375rem;
  /* 230px */
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.n-left h3 {
  margin: 0 0 0.875rem 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  /* 44px */
  line-height: 1;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.4px;
}

.n-left p {
  margin: 0;
  font-size: clamp(0.875rem, 1.3vw, 1.1rem);
  /* ~13pt */
  font-weight: 300;
  line-height: 1.7;
  max-width: 36.25rem;
  opacity: 0.98;
}

/* hover do botão */
.n-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.625rem rgba(239, 107, 87, 0.327);
}

.n-left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30%;
  width: 5%;
  background: linear-gradient(180deg,
      rgba(241, 240, 240, 0.373) 0%,
      rgba(118, 11, 11, 0.55) 100%);
  transform: skewX(-29deg) translateX(12rem);
  z-index: 6;
  border-radius: 2px;
  pointer-events: none;
}

/* ========== SESSÃO 6 (Números) ========== */
.secao-numeros {
  padding: 0 3.75rem 0 0;
  background-color: #fff;
  margin: 0;
}

.container-numeros {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 1.75rem;
  align-items: center;
}

.esquerda-numeros .heroi-numeros {
  position: relative;
  border-radius: 0 1.625rem 1.625rem 0;
  overflow: hidden;
  height: 26.25rem;
}

.heroi-numeros img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.heroi-numeros::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(180, 53, 30, 0.697),
      rgba(97, 40, 30, 0.456));
}

.texto-heroi {
  position: absolute;
  left: 9.375rem;
  bottom: 11.25rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  z-index: 2;
}

.texto-heroi strong {
  font-weight: 900;
}

.direita-numeros {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.embrulho-estatisticas {
  width: 100%;
}

.viewport-estatisticas {
  overflow: hidden;
  width: 100%;
}

.pista-estatisticas1,
.pista-estatisticas {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0.5rem;
}

.pista-estatisticas {
  transition: transform 0.4s ease;
}

.cartao-estatistica {
  flex: 0 0 calc((100% - 4rem) / 3);
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 1.25rem 0.3125rem rgba(0, 0, 0, 0.08);
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circulo-estatistica {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  border: 6px solid #f06b58;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.875rem 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #f06b58;
  font-weight: 800;
}

.rotulo-estatistica {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #333;
  line-height: 1.3;
  font-weight: 500;
}

.botoes-navegacao {
  display: flex;
  gap: 1.125rem;
  margin-top: 0.625rem;
}

.seta-estatistica {
  background: none;
  border: none;
  font-size: clamp(2rem, 3vw, 2.25rem);
  color: #e86753;
  cursor: pointer;
  padding: 0.375rem 0.625rem;
  transition: transform 0.15s ease, opacity 0.15s;
}

.seta-estatistica:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.pontos-estatisticas {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.ponto-estatistica {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
  padding: 0;
}

.ponto-estatistica.ativo {
  background: #e86753;
  box-shadow: 0 2px 6px rgba(232, 103, 83, 0.25);
}

/* ========== NEWSLETTER ========== */
.newsletter {
  display: flex;
  justify-content: center;
  margin-top: 4.375rem;
  border-radius: 0;
  background: #f4f4f4;
  margin-bottom: 4.375rem;
  padding: 0;
}

.newsletter-cta {
  color: #fff;
  position: relative;
  max-width: 75rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../arquivos/1_Pagina_inicial/Banner_Principal/newlatter.png") no-repeat center / cover;
  padding: 5.625rem 4.375rem 4.375rem;
  overflow: hidden;
}

.new-left {
  margin-right: 6.25rem;
}

.new-left p {
  margin-right: 6.25rem;
  margin-bottom: 1.25rem;
}

.new-left h3 {
  margin-right: 6.25rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin-bottom: 0.625rem;
}

.new-right {
  display: flex;
  border-radius: 1.75rem;
  border: 1.8px solid rgba(239, 107, 87, 0.18);
  outline: none;
  font-size: 0.9375rem;
  background: transparent;
  box-shadow: none;
  justify-content: center;
  align-items: center;
}

.n-input {
  color: #c94a3a;
  margin-left: 6.25rem;
  text-align: left;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  background: transparent;
  box-shadow: none;
}

.n-input::placeholder {
  color: #c94a3a;
  opacity: 1;
}

.n-form {
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;

   flex-wrap: wrap;
  align-items: flex-end; /* mantém input + botão à direita */
  
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  max-width: 32.5rem;
  justify-content: flex-end;
}

.n-btn {
  margin-right: 0.4375rem;
  flex: 0 0 auto;
  padding: 0.625rem 1.125rem;
  border-radius: 1.75rem;
  border: none;
  background: var(--coral);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0.5rem 1.125rem rgba(239, 107, 87, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* ============================
   ESTILO MENSAGEM NEWSLETTER
   ============================ */

.news-feedback {
  width: 100%;
  margin-top: 0.9375rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: none;
}

.news-feedback.visivel {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.news-feedback.sucesso {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.news-feedback.erro {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.recaptcha-box {
  margin-top: 1rem;
  display: flex;
  display: block;
}

/* =====================================================
   RESPONSIVIDADE - MEDIA QUERIES
   ===================================================== */

/* Tablet grande */
@media (max-width: 980px) {
  .logo img {
    height: 3rem;
  }

  .conteudo-hero {
    padding: 7.5rem 1.25rem 5rem;
  }

  .cartoes-hero {
    transform: translateY(40%);
    gap: 1.125rem;
  }

  .bloco-servicos-quemsomos {
    grid-template-columns: 1fr;
    width: 92%;
    margin: 1.75rem auto 0;
  }

  .fgsc-bloco {
    margin: -3.75rem auto 1.25rem;
    padding: 1.5rem;
  }

  .hero-cards-wrapper {
    margin-top: -3.75rem;
  }

  .card-stats .big-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .hero-cards {
    gap: 1.125rem;
    width: min(61.25rem, 96%);
  }

  .test-card {
    flex: 0 0 92%;
  }

  .test-card-inner {
    padding: 1.375rem;
    border-radius: 0.75rem;
  }

  .cliente-logo {
    width: 3.75rem;
    height: 3.75rem;
  }

  .ctrl {
    display: none;
  }

  .test-dots {
    margin-top: 0.75rem;
  }

  .subrodape-inner {
    flex-direction: column;
    gap: 1.75rem;
  }


  .sub-center {
    order: 3;
  }

  .sub-right {
    order: 2;
  }

  .sub-desc {
    max-width: 100%;
  }

  .sub-logo {
    width: 8.75rem;
  }
}

/* Tablet pequeno */
@media (max-width: 720px) {
  .titulo-principal {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
  }

  .cartoes-hero {
    transform: translateY(18%);
    flex-direction: column;
    align-items: center;
    padding: 0 0.75rem;
  }

  .video_fundo video {
    left: 0;
  }

  .seta {
    display: none;
  }

  .resultado-balao {
    min-width: 100%;
    max-width: 100%;
  }

  .resultados-titulo {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }

  .hero-cards-wrapper {
    margin-top: 0.875rem;
  }

  .hero-cards {
    flex-direction: column;
    gap: 1.125rem;
    align-items: stretch;
  }

  .card-stats,
  .card-contact {
    max-width: none;
    padding-left: 1.375rem;
    padding-right: 1.375rem;
  }

  .card-cta::before,
  .card-cta::after {
    display: none;
  }

  .card-stats .big-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .card-stats {
    justify-content: flex-start;
  }

  .card-cta {
    flex-direction: column;
    min-height: auto;
  }

  .card-cta .cta-left::before,
  .card-cta .cta-left::after {
    display: none;
  }

  .card-cta .cta-left,
  .card-cta .cta-right {
    flex: none;
    width: 100%;
    padding: 1.25rem;
  }

  .cta-top {
    font-size: clamp(1rem, 4vw, 1.125rem);
  }

  .cta-contact-phone {
    font-size: clamp(1rem, 4vw, 1.125rem);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .sub-desc {
    font-size: 0.875rem;
  }

  .sub-title {
    font-size: 1.125rem;
  }

  .links-list a,
  .contact-list li {
    font-size: 0.9375rem;
  }

  .social {
    width: 2.5rem;
    height: 2.5rem;
  }

  .n-left h3 {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
  }

  .n-left p {
    font-size: 0.875rem;
  }

  .n-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }

  .sv-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem 2rem;
  }

  .sv-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .numbers-hero-text {
    left: 1.375rem;
    bottom: 1.375rem;
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .stats-arrow {
    display: none;
  }

  .stat-card {
    width: 86%;
    min-width: 86%;
    margin: 0 auto;
  }

  .baloes {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .dots {
    gap: 1.25rem;
  }

  .imagem-conteudo {
    flex-direction: column;
    gap: 1.5rem;
  }

  .imagem-conteudo img {
    width: 100%;
    height: auto;
    margin-left: 0;
    border-radius: 0 0 1rem 1rem;
  }

  .imagem-conteudo .conteudo {
    width: 100%;
    margin: 0 1rem;
  }

  .newsletter-cta {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .new-left {
    margin-right: 0;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .new-left p,
  .new-left h3 {
    margin-right: 0;
  }

  .n-form {
    flex-direction: column;
    gap: 1rem;
  }

  .n-input {
    margin-left: 0;
    width: 100%;
  }

  .container-numeros {
    grid-template-columns: 1fr;
  }

  .heroi-numeros {
    height: 20rem;
    border-radius: 0.75rem;
  }

  .texto-heroi {
    left: 1.5rem;
    bottom: 6rem;
    font-size: clamp(1.75rem, 6vw, 2.125rem);
  }

  .cartao-estatistica {
    width: 13.75rem;
    max-width: 13.75rem;
    padding: 1.25rem;
  }

  .circulo-estatistica {
    width: 6.25rem;
    height: 6.25rem;
    font-size: 1.625rem;
  }
}

/* Telas muito grandes - ajuste para não ficar gigante */
@media (min-width: 1920px) {
  :root {
    font-size: 14px;
  }
}

@media (min-width: 2560px) {
  :root {
    font-size: 12px;
  }

  .cards-servicos {
    margin-bottom: -6rem;
    transform: translateY(2rem);
  }

  .sessao-3 {
    padding-top: 12rem;
  }
}

/* ============================================
   CARDS DE SERVIÇOS SUSPENSOS (SESSÃO 2 E 3)
   ============================================ */

/* Ajuste na sessão 2 - precisa de position relative */
.sessao-2 {
  position: relative;
  z-index: 10;
  padding-bottom: 0;
  /* Remove padding inferior */
}

/* Container dos cards - posicionamento suspenso */
.cards-servicos {
  position: relative;
  z-index: 20;
  margin-bottom: -12rem;
  /* Puxa os cards para baixo sobre a sessão 3 */
  transform: translateY(4rem);
  /* Desce os cards da sessão 2 */
}

/* Ajuste na sessão 3 - precisa de padding maior no topo */
.sessao-3 {
  position: relative;
  z-index: 5;
  padding-top: 18rem;
  /* Espaço para os cards suspensos */
}

/* Ajuste no conteúdo da sessão 3 */
.conteudo-resultados {
  position: relative;
  z-index: 6;
}

.conteudo-resultados h2 {
  margin-top: 2rem;
  /* Reduz o margin-top que estava em 150px */
}




.dot img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
  margin: auto;
}
.dot {
  display: flex;
  align-items: center;
  justify-content: center;
}

















/*






/* ===== CARROSSEL (apenas para desktop) ===== */
@media (min-width: 769px) {
  /* Força a secção a comportar-se como bloco normal */
  .sessao-3 {
    margin-top: 200px;
    display: block !important;  /* anula o display: grid */
    overflow-x: clip;           /* garante que nada vaza lateralmente */
  }

  .carrossel-container {
    position: relative;
    width: 100%;
    max-width: 100%;           /* ← essencial */
    overflow: hidden;          /* esconde o que excede */
    padding: 0 40px;
    box-sizing: border-box;
  }

  .carrossel-track-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    width: 100%;
    max-width: 100%;
    cursor: grab;
  }

  .carrossel-track-wrapper:active {
    cursor: grabbing;
  }

  /* esconde scrollbar (opcional) */
  .carrossel-track-wrapper::-webkit-scrollbar {
    display: none;
  }
  .carrossel-track-wrapper {
    scrollbar-width: none;
  }

  .carrossel-track {
    display: flex;
    gap: 1.5625rem;
    width: max-content;
  }

  .carrossel-item {
    flex: 0 0 auto;
    width: 21.25rem;   /* 340px */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
  }

  /* ajuste do balão dentro do item */
  .carrossel-item .balao {
    margin: 0;
    width: 100%;       /* respeita a largura do item */
  }

  /* dot grande */
  .carrossel-item .dot-grande {
    margin-top: 1.125rem;
    text-align: center;
  }
  .carrossel-item .dot-grande .dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
  }
  .carrossel-item .dot-grande img {
    width: 60%;
    height: auto;
  }

  /* Setas */
  .carrossel-seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
  }
  .carrossel-seta:hover {
    background: rgba(0,0,0,0.8);
  }
  .carrossel-seta.esquerda {
    left: 0;
  }
  .carrossel-seta.direita {
    right: 0;
  }

  /* Indicadores (bolinhas pequenas) */
  .carrossel-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .indicador {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
  }
  .indicador.ativo {
    background-color: #2aa3d6;
    transform: scale(1.2);
  }
}


/* Força todos os itens do carrossel a terem a mesma altura (a do maior) */
.carrossel-track {
  align-items: stretch;  /* já é padrão, mas garantimos */
}

/* Cada item do carrossel deve usar flex para permitir que o balão cresça */
.carrossel-item {
  display: flex;
  flex-direction: column;
  /* a altura será determinada pelo item mais alto do track */
}

/* O balão deve ocupar todo o espaço vertical disponível (menos o dot) */
.carrossel-item .balao {
  flex: 1;               /* cresce para ocupar o espaço restante */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* opcional: espaça conteúdo */
}

/* Garante que o parágrafo dentro do balão não force altura extra indesejada */
.carrossel-item .balao p {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centraliza o texto verticalmente */
}

/* O dot grande mantém altura automática e fica sempre no fundo */
.carrossel-item .dot-grande {
  margin-top: 1.125rem;
  flex-shrink: 0;        /* não encolhe */
}

/* Garantir que o wrapper tenha largura exata para 3 balões + gaps */
.carrossel-track-wrapper {
  width: calc((21.25rem * 3) + (1.5625rem * 2));
  max-width: 100%;
  margin: 0 auto;  /* centraliza o carrossel */
}

/* O container do carrossel precisa de um width relativo para as setas */
.carrossel-container {
  width: 100%;
  overflow: visible;  /* para as setas não serem cortadas */
}

/* As setas devem estar posicionadas relativamente ao container */
.carrossel-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* as setas ficarão nas bordas do container, que é maior que o wrapper */
}
/* Setas - centralizadas verticalmente e com novo estilo */
.carrossel-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;           /* fundo branco */
  color: #06a0d6;              /* texto azul */
  border: 2px solid #06a0d6;   /* borda azul */
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
 
}

.carrossel-seta:hover {
  background: #06a0d6;         /* fundo azul ao passar rato */
  color: white;                /* texto branco */
  border-color: #06a0d6;
}

.carrossel-seta.esquerda {
  left: 0;
}

.carrossel-seta.direita {
  right: 0;
}
















/* =========================
   WRAPPER GERAL
========================= */
.testemunhos-wrapper {
  position: relative;
  width: 100%;
  max-width: 71.875rem; /* 1150px */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 4rem; /* espaço para setas */
}

/* =========================
   VIEWPORT (JANELA VISÍVEL)
========================= */
.testemunhos-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* =========================
   TRACK (MOVIMENTO)
========================= */
.testemunhos-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* =========================
   CARD (1 POR VEZ)
========================= */
.test-card {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   SETAS
========================= */
.ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.btn-prev {
  left: 10px;
}

.btn-next {
  right: 10px;
}







/* ===== SETAS DO CARROSSEL ===== */
.ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 3.2rem;
  height: 3.2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;

  border: 2px solid #f77f73;
  border-radius: 50%;

  color: #f77f73;

  cursor: pointer;

  transition: all 0.25s ease;
}

/* POSIÇÃO */
.btn-prev {
  left: 1rem;
}

.btn-next {
  right: 1rem;
}

/* ===== HOVER ===== */
.ctrl:hover {
  background: #f77f73;
  color: #fff;
  transform: translateY(-50%) scale(1.08);

  box-shadow: 0 6px 18px rgba(247, 127, 115, 0.35);
}

/* ===== CLIQUE ===== */
.ctrl:active {
  transform: translateY(-50%) scale(0.95);
}

/* ===== FOCO (teclado/acessibilidade) ===== */
.ctrl:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(247, 127, 115, 0.35);
}

@supports (-webkit-touch-callout: none) {

  *{
    font-family: 'Poppins', sans-serif !important;
  }

}