/* ==========================
   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;
}

html,
body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: #222;
}

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;
}

.cabecalho.cabecalho-branco {
  background: #fff;
  color: #111;
  box-shadow: 0 0.375rem 1.25rem rgba(19, 21, 22, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* 12px */
  font-weight: 700;
}

.logo img {
  height: 3.5rem; /* 56px */
  max-height: 3.5rem;
  width: auto;
}

/* nav básico */
.nav-principal {
  display: flex;
  gap: 1.125rem; /* 18px */
  align-items: center;
}

.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;
  font-family: "Poppins", sans-serif;
}

.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;
  font-family: "Poppins", sans-serif;
}

.cta-bold {
  font-weight: 700;
  display: block;
  margin-top: 0.5rem;
}

.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 */
}

/* 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;
  font-family: "Poppins", sans-serif;
  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;
  min-height: calc(100vh - var(--altura-cabecalho));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--altura-cabecalho);
  overflow: hidden;
  color: var(--texto-claro);
  z-index: 1;
  background: #f4f4f4;
}

.sessao1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(40, 87, 118, 0.383) 100%);
  z-index: 1;
}

/* Carrossel de vídeos */
.video_fundo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.video_fundo video {
  position: absolute;
  top: 0;
  left: 20%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease, left 1s ease;
  will-change: opacity, transform;
}

.video_fundo video.visivel {
  opacity: 1;
  left: 0;
}

/* Overlay escuro */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 24, 0.45), rgba(5, 12, 24, 0.6));
  z-index: 0;
  pointer-events: none;
}

/* Conteúdo do hero */
.conteudo-hero {
  position: relative;
  z-index: 2;
  max-width: 61.25rem; /* 980px */
  text-align: center;
  padding: 10rem 1.25rem 7.5rem; /* 160px 20px 120px */
}

.titulo-principal {
  font-size: clamp(1.75rem, 5vw, 3.5rem); /* 56px máximo */
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.35);
  margin-bottom: 1.125rem;
}

.subtitulo {
  font-size: clamp(0.875rem, 1.2vw, 1rem); /* 16px */
  color: rgba(255, 255, 255, 0.95);
  max-width: 57.5rem; /* 920px */
  margin: 0 auto 1.125rem;
  line-height: 1.6;
}

.botao-acao {
  display: inline-block;
  padding: 0.625rem 1.25rem; /* 10px 20px */
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.16);
  color: var(--texto-claro);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

/* Setas de navegação */
.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem; /* 56px */
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  z-index: 6;
  background: rgba(255, 255, 255, 0.02);
}

.seta.esquerda {
  left: 1.25rem;
}

.seta.direita {
  right: 1.25rem;
}

.seta svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--texto-claro);
}

/* ------------- FOOTER ------------- */
footer {
  padding: 2.5rem 1.125rem; /* 40px 18px */
  color: #fff;
  text-align: center;
}

/* =============================
        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;
}

/* =============================
        SESSAO 3
============================= */

.sessao-3 {
  position: relative;
  background: url("../arquivos/1_Pagina_inicial/inicial2 mobile.png")
    center/cover no-repeat;
  padding: 18rem 1.25rem 8.75rem;
  text-align: center;
  color: #fff;
  z-index: 5;
  display: grid;
}

.sessao-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(14, 114, 177, 0.288) 45%,
    rgba(38, 74, 110, 0.604) 50%,
    rgba(24, 64, 91, 0.789) 99%
  );
  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 {
  background: rgba(0, 0, 0, 0.06);
  border: none;
  width: 4.6875rem; /* 75px */
  height: 4.0625rem; /* 65px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0.375rem 1.125rem rgba(10, 20, 30, 0.08);
  font-size: 1.5rem;
  color: #ef6a4d;
  margin: 2.5rem;
  border: 2px solid #ef6a4d;
  transition: all 0.3s ease;
}

.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-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 450ms cubic-bezier(0.2, 0.9, 0.2, 1);
  align-items: stretch;
  will-change: transform;
  padding: 1.125rem 0;
}

/* 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 {
  position: relative;
  width: 93.75rem; /* 1500px */
  max-width: 100%;
  height: auto;
  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::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 92, 125, 0.525);
  z-index: 1;
}

.sessao4-1 .conteudo {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 68.75rem;
  padding: 0 1.25rem;
}

.sessao4-1 h2 {
  font-size: clamp(2.5rem, 5vw, 3.625rem); /* 58px */
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 1.5625rem;
}

.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;
}

.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;
  display: flex;
  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;
}

/* ========== FOOTER / SUBRODAPE ========== */

:root {
  --bg: #eaf8fb;
  --accent: #ef6b57;
  --accent-dark: #d65444;
  --blue-bar: #06a0d6;
  --text: #0f1720;
  --muted: rgba(15, 23, 32, 0.6);
  --radius: 1.125rem;
  --container: 75rem;
}

.container-clientes {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.subrodape {
  background: var(--bg);
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.subrodape-inner {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
  justify-content: space-between;
}

.links-list {
  list-style: none;
  padding: 1.125rem 1.875rem 0 0;
  margin: 4.375rem;
  width: 5rem;
  display: grid;
  grid-template-columns: 3fr 3fr;
  column-gap: 2.5rem;
  row-gap: 0.75rem;
}

.sub-left {
  flex: 0 0 36%;
  max-width: 36%;
}

.sub-logo {
  width: 11.25rem;
  display: block;
  margin-bottom: 1.125rem;
}

.sub-desc {
  color: var(--text);
  font-size: clamp(0.875rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  margin: 0 0 1.125rem 0;
  max-width: 26.25rem;
}

.sub-socials {
  display: flex;
  gap: 0.875rem;
  margin-top: 0.375rem;
}

.social {
  display: inline-flex;
  width: 2.875rem;
  height: 2.875rem;
  padding: 1.25rem;
  border-radius: 50%;
  background: var(--accent);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.375rem rgba(15, 23, 32, 0.06);
}

.social img {
  width: 2.125rem;
}

.social:hover {
  background: #373636ad;
}

.sub-center {
  flex: 0 0 24%;
  max-width: 24%;
}

.sub-title {
  color: var(--accent);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin: 0.375rem 0 0.75rem 0;
  position: relative;
  font-weight: 700;
}

.sub-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 6px;
  background: var(--accent);
  margin-top: 0.5rem;
  border-radius: 4px;
  opacity: 0.9;
}

.links-list {
  width: 18.75rem;
  list-style: none;
  padding: 1.125rem 0 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(4.375rem, 1fr));
  column-gap: 0.625rem;
  row-gap: 0.875rem;
}

.links-list a {
  color: var(--text);
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  padding-left: 0.5rem;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease, margin-left 0.3s ease;
}

.links-list a:hover {
  transform: translateY(2px);
  margin-left: 0.9375rem;
}

.links-list a::before {
  content: "›";
  color: var(--accent);
  position: absolute;
  left: -0.875rem;
  top: 0;
  font-weight: 700;
}

.sub-right {
  flex: 0 0 36%;
  max-width: 36%;
}

.contact-list {
  list-style: none;
  padding: 1.125rem 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 18.75rem;
  min-width: 17.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 500;
}

.contact-list .ic {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--accent);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.25rem;
  box-shadow: 0 0.375rem 1.125rem rgba(15, 23, 32, 0.06);
}

.contact-text {
  margin-left: 0.25rem;
  font-size: clamp(0.875rem, 1.2vw, 1.1rem);
  color: var(--text);
}

.site-footer {
  background: var(--blue-bar);
  padding: 0.75rem 0;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
}

/* =====================================================
   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-left,
  .sub-center,
  .sub-right {
    max-width: 100%;
    flex-basis: auto;
  }
  
  .sub-left {
    order: 1;
  }
  
  .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 */
}
