/* Santa Catarina Crédito — style.css (gerado a partir do modelo Santa Catarina Crédito) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  --sc-blue: #0098F8;
  --sc-blue-dark: #0068B8;
  --sc-ink: #002038;
  --sc-bg: rgba(255, 255, 255, 0.72);
  --sc-border: rgba(0, 152, 248, 0.25);
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--sc-ink);
  background: #FFFFFF;
}
img{ max-width: 100%; }


/* ===== Barra do cabeçalho (logo + menu + CTA) ===== */
.site-header {
  /* Normal/estático por padrão (páginas sem hero de foto) — reserva espaço
     de verdade no topo da página, como qualquer cabeçalho comum. */
  position: static;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 32, 56, 0.06);
}
/* Só na home (tem .hero-shell): cabeçalho sobrepõe a foto, transparente */
body:has(.hero-shell) .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  flex-wrap: wrap;
}
.site-header .site-logo { flex: 0 0 auto; display: flex; line-height: 0; }
.site-header .site-logo img { height: 42px; width: auto; display: block; }
.site-header .sc-menu-isolado { flex: 1 1 320px; min-width: 0; }
.site-header .site-header-cta { flex: 0 0 auto; }
@media (max-width: 900px) {
  /* flex-wrap precisa estar aqui (não só na regra exclusiva da home com .hero-shell),
     senão o menu não tem pra onde quebrar linha e fica espremido, estourando a largura
     da página e causando scroll horizontal em todas as páginas de produto. */
  .site-header { justify-content: center; flex-wrap: wrap; padding: 12px 16px; }
  .site-header .site-logo { order: 1; }
  .site-header .sc-menu-isolado { order: 3; flex-basis: 100%; }
  .site-header .site-header-cta { order: 2; }

  /* No celular não tem espaço vertical pra flutuar por cima da foto sem
     tampar a cabeça de quem está na imagem — o cabeçalho volta a ser uma
     barra sólida normal, empurrando o hero pra baixo dele. */
  body:has(.hero-shell) .site-header {
    position: static;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 32, 56, 0.06);
  }
}

@media (max-width: 600px) {
  /* No celular some o botão "Especialista" do topo — sobra só a logo,
     que fica centralizada já que é o único item da primeira linha. */
  .site-header .site-header-cta { display: none; }
}

/* ===== Menu ===== */


    /* Menu Flutuante — Santa Catarina Crédito */
    .sc-menu-isolado * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      border: 0;
      font: inherit;
      color: inherit;
      text-decoration: none;
      list-style: none;
      background: transparent;
      outline: none;
    }

    .sc-menu-isolado {
      font-family: 'Inter', sans-serif !important;
      font-size: 16px;
    }

    /* ===== Container flutuante (centrado dentro da barra do cabeçalho) ===== */
    .sc-menu-isolado .sc-float-nav {
      display: flex;
      justify-content: center;
      z-index: 900; /* Alterado de 9999 para 900 */
      padding: 8px 12px;
    }

    /* Container com scroll horizontal */
    .sc-menu-isolado .nav-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--sc-bg);
      border: 1px solid var(--sc-border);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 24, 56, 0.08);
      width: fit-content;
      max-width: calc(100% - 24px);
      justify-content: start;
      overflow-x: auto;
      overflow-y: visible;
      position: relative;
      scrollbar-width: none;
    }
    .sc-menu-isolado .nav-pill::-webkit-scrollbar { display: none; }

    /* Fade nas bordas — só aparece quando o menu tem mesmo conteúdo escondido
       pra rolar (classes controladas via JS em script.js). */
    .sc-menu-isolado .nav-pill.is-scrollable {
      -webkit-mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
      mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
    }
    .sc-menu-isolado .nav-pill.is-scrollable.is-scrolled {
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 88%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 6%, black 88%, transparent 100%);
    }
    .sc-menu-isolado .nav-pill.is-scrollable.is-at-end {
      -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
      mask-image: linear-gradient(to right, black 0%, black 100%);
    }
    .sc-menu-isolado .nav-pill.is-scrollable.is-scrolled.is-at-end {
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 6%, black 100%);
    }

    /* Botões do menu */
    .sc-menu-isolado .nav-btn,
    .sc-menu-isolado .nav-link {
      appearance: none;
      background: transparent;
      border: 0;
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 500;
      color: var(--sc-ink) !important;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: background 0.25s ease, transform 0.2s ease;
      white-space: nowrap;
    }
    .sc-menu-isolado .nav-btn:hover,
    .sc-menu-isolado .nav-link:hover { background: rgba(0, 152, 248, 0.1) !important; }

    /* Ícone casa */
    .sc-menu-isolado .home-icon { width: 18px; height: 18px; color: var(--sc-blue); }

    /* Seta verde */
    .sc-menu-isolado .chev {
      width: 14px;
      height: 14px;
      color: var(--sc-blue);
      transition: transform 0.2s ease;
    }
    .sc-menu-isolado .nav-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

    /* Separador */
    .sc-menu-isolado .sep {
      width: 1px;
      height: 18px;
      background: linear-gradient(to bottom, transparent, var(--sc-blue-dark), transparent);
      opacity: 0.2;
      margin: 0 4px;
    }

    /* ===== DROPDOWNS ===== */
    .sc-menu-isolado .sc-dropdown {
      position: fixed;
      top: 0;
      left: 0;
      transform: none;
      width: 300px;
      max-width: 90vw;
      background: var(--sc-bg);
      border: 1px solid var(--sc-border);
      border-radius: 14px;
      padding: 8px 0;
      box-shadow: 0 20px 50px rgba(0, 24, 56, 0.18);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: none;
      z-index: 901; /* Alterado de 10000 para 901 */
      overflow: hidden;
    }
    .sc-menu-isolado .sc-dropdown.open { display: block; }

    .sc-menu-isolado .sc-dropdown ul {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin: 0;
      padding: 0;
      max-height: calc(100vh - 120px);
      overflow-y: auto;
      overflow-x: hidden;
      scrollbar-width: thin;
      scrollbar-color: var(--sc-blue) transparent;
    }
    .sc-menu-isolado .sc-dropdown ul::-webkit-scrollbar {
      width: 6px;
    }
    .sc-menu-isolado .sc-dropdown ul::-webkit-scrollbar-thumb {
      background-color: var(--sc-blue);
      border-radius: 999px;
    }
    .sc-menu-isolado .sc-dropdown ul::-webkit-scrollbar-track {
      background: transparent;
    }
    .sc-menu-isolado .sc-dropdown li + li { border-top: 1px solid rgba(0, 152, 248, 0.1); }

    .sc-menu-isolado .sc-dropdown a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 16px;
      font-size: 14.5px;
      color: var(--sc-ink) !important;
      border: 1px solid transparent;
      transition: all 0.25s ease;
    }
    .sc-menu-isolado .sc-dropdown a:hover {
      background: rgba(0, 152, 248, 0.1);
      border-color: var(--sc-border);
      transform: translateX(2px);
    }
    .sc-menu-isolado .arrow {
      width: 14px;
      height: 14px;
      color: var(--sc-blue-dark);
      transition: transform 0.3s ease;
    }
    .sc-menu-isolado .sc-dropdown a:hover .arrow { transform: translateX(5px); }

    /* ===== PÍLULA MINIMALISTA NO MENU ===== */
    .sc-menu-isolado .item-title-wrapper {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sc-menu-isolado .badge-menu {
      background: rgba(0, 152, 248, 0.1);
      border: 1px solid rgba(0, 152, 248, 0.3);
      color: var(--sc-blue-dark);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 2px 6px;
      border-radius: 999px;
    }
  

/* ===== Botão especialista (CTA inline) ===== */


  /* Estado base + bloqueio de estilos globais */
  a.botao-simular-isolado,
  a.botao-simular-isolado:link,
  a.botao-simular-isolado:visited{
    display:inline-flex; align-items:center; justify-content:center;
    padding:17px 30px; border-radius:30px; line-height:1;
    position:relative; overflow:hidden; border:none; cursor:pointer;
    font-family:'Inter',sans-serif; font-weight:500; font-size:18px;
    color:#fff !important; text-decoration:none !important;
    background:linear-gradient(to right,var(--sc-blue),var(--sc-blue-dark)) !important;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    transition:transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s cubic-bezier(.23,1,.32,1);
    margin:0;
  }

  /* Película do hover (mantém o efeito de varrer o degradê) */
  a.botao-simular-isolado::before{
    content:""; position:absolute; inset:0; z-index:0;
    background:linear-gradient(to right,var(--sc-blue-dark),var(--sc-blue));
    opacity:0; transition:opacity .4s ease;
  }

  /* Hover/Focus/Active — trava cor e fundo contra regras globais */
  a.botao-simular-isolado:hover,
  a.botao-simular-isolado:focus,
  a.botao-simular-isolado:active{
    color:#fff !important;
    background:linear-gradient(to right,var(--sc-blue),var(--sc-blue-dark)) !important;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,0,0,.3);
    text-decoration:none !important;
  }
  a.botao-simular-isolado:hover::before{ opacity:1; }

  /* Ícone seta segue branco e anima no hover */
  a.botao-simular-isolado span{ position:relative; z-index:1; }
  a.botao-simular-isolado svg{
    margin-left:12px; position:relative; z-index:1;
    transition:transform .4s ease; color:#fff !important;
  }
  a.botao-simular-isolado:hover svg{ transform:translateX(5px); }

  /* Acessibilidade */
  a.botao-simular-isolado:focus-visible{
    outline:none;
    box-shadow:0 0 0 3px rgba(0, 152, 248,.35),0 10px 20px rgba(0,0,0,.2);
  }


/* ===== Botão WhatsApp flutuante ===== */


    /* Camada-portal fixa no viewport: não intercepta cliques */
    .wa-portal {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 2147483647; /* máximo possível */
    }

    /* Container do botão (permite cliques) */
    .wa-portal-inner {
      position: absolute;
      bottom: 30px;
      right: 30px;
      pointer-events: auto;
    }

    /* Botão flutuante */
    .whatsapp-float {
      position: relative;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
      text-decoration: none;
      outline: none;
      line-height: 0;
      /* Prevenir interferência de estilos globais */
      mix-blend-mode: normal !important;
      filter: none !important;
      backdrop-filter: none !important;
      -webkit-tap-highlight-color: transparent;
      cursor: pointer;
      /* Animação de pulsação */
      animation: whatsapp-pulse 2.5s ease-in-out infinite;
      transform-origin: center center;
    }

    /* Animação de pulsação suave */
    @keyframes whatsapp-pulse {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.08); }
      100% { transform: scale(1); }
    }

    /* Proteção contra pseudo-elementos indesejados */
    .whatsapp-float::before,
    .whatsapp-float::after {
      display: none !important;
      content: none !important;
    }

    /* SVG do ícone: imune a resets */
    .whatsapp-float svg {
      width: 30px;
      height: 30px;
      display: block;
      overflow: visible;
      pointer-events: none;
      shape-rendering: geometricPrecision;
      text-rendering: geometricPrecision;
      image-rendering: optimizeQuality;
    }

    /* Força cor branca no ícone */
    .whatsapp-float svg path {
      fill: #FFFFFF !important;
    }

    /* Efeito hover (sem conflito com animação) */
    .whatsapp-float:hover {
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transform: scale(1.12) !important; /* levemente maior no hover */
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .wa-portal-inner {
        bottom: 20px;
        right: 20px;
      }
      .whatsapp-float {
        width: 55px;
        height: 55px;
      }
      .whatsapp-float svg {
        width: 28px;
        height: 28px;
      }
    }

    /* Respeita usuários que preferem menos movimento */
    @media (prefers-reduced-motion: reduce) {
      .whatsapp-float {
        animation: none;
      }
      .whatsapp-float:hover {
        transform: scale(1) !important;
      }
    }
  

/* ===== Comunicado (popup) ===== */


    /* Comunicado — cartão translúcido, elegante, acima do botão de WhatsApp */
    #sc-comunicado-container * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.5;
    }

    #sc-comunicado-container {
      position: fixed;
      bottom: 104px;
      right: 24px;
      width: 340px;
      background: rgba(255, 255, 255, 0.68);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      color: #002038;
      border-radius: 18px;
      padding: 22px;
      box-shadow: 0 16px 40px rgba(0, 24, 56, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.6);
      z-index: 10000;
      transition: opacity 0.4s ease, transform 0.4s ease;
      font-size: 14px;
    }

    #sc-comunicado-container .comunicado-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    #sc-comunicado-container .comunicado-titulo {
      font-size: 15px;
      font-weight: 600;
      color: #002038;
      letter-spacing: -0.01em;
    }

    #sc-comunicado-container .fechar-btn {
      background: rgba(0, 24, 56, 0.06);
      border: none;
      color: #002038;
      font-size: 18px;
      cursor: pointer;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.25s;
      flex-shrink: 0;
    }

    #sc-comunicado-container .fechar-btn:hover {
      background-color: rgba(0, 24, 56, 0.12);
    }

    #sc-comunicado-container .comunicado-conteudo {
      font-size: 13.5px;
      line-height: 1.55;
      margin-bottom: 14px;
      color: rgba(0, 32, 56, 0.82);
    }

    #sc-comunicado-container .comunicado-contato {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 14px;
    }

    #sc-comunicado-container .comunicado-contato > p {
      font-size: 12.5px;
      color: rgba(0, 32, 56, 0.7);
      margin-bottom: 4px;
    }

    #sc-comunicado-container .contato-item {
      display: flex;
      align-items: center;
      min-width: 0;
      padding: 12px;
      margin-top: 2px;
      background-color: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(0, 32, 56, 0.06);
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 24, 56, 0.05);
      transition: background-color 0.25s;
      text-decoration: none;
      color: #002038;
    }

    #sc-comunicado-container .contato-item:hover {
      background-color: rgba(255, 255, 255, 1);
    }

    #sc-comunicado-container .contato-icone {
      width: 32px;
      height: 32px;
      background-color: rgba(0, 152, 248, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      flex-shrink: 0;
    }

    #sc-comunicado-container .contato-icone svg {
      width: 16px;
      height: 16px;
      fill: #0068B8;
    }

    #sc-comunicado-container .contato-info {
      min-width: 0;
      flex: 1;
    }

    #sc-comunicado-container .contato-texto {
      font-size: 10px;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    #sc-comunicado-container .contato-descricao {
      font-size: 10.5px;
      color: rgba(0, 32, 56, 0.55);
      margin-top: 1px;
    }

    /* ====== RESPONSIVO ====== */
    @media (max-width: 576px) {
      #sc-comunicado-container {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 96px;
      }
    }
  

/* ===== Hero shell (foto full-bleed, cabeçalho fixo sobrepõe por cima) ===== */
.hero-shell {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: url('/assets/img/hero-home.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 32%, rgba(255,255,255,0.35) 56%, rgba(255,255,255,0) 76%),
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 22%);
}
.hero-col-text {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 24px 90px;
}
@media (max-width: 900px) {
  .hero-shell { min-height: 640px; background-position: 78% 18%; }
  .hero-col-text { padding: 170px 20px 60px; }
  /* No mobile o texto ocupa a largura toda, então o degradê diagonal do
     desktop (pensado pra coluna estreita à esquerda) lava a foto quase
     inteira. Troca por um degradê vertical: texto legível em cima, foto
     aparecendo de verdade na metade de baixo. */
  .hero-overlay {
    /* Véu uniforme e leve — evita "lavar" o rosto da pessoa onde o recorte
       mobile precisa mostrá-lo, mas ainda dá contraste pro texto em cima. */
    background: rgba(255,255,255,.55);
  }
}

/* ===== Hero (home) ===== */


    .bloco-emprestimo-isolado * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    
    .bloco-emprestimo-isolado {
      background-color: transparent;
      padding: 0;
      max-width: 560px;
      margin: 0;
    }
    
    .bloco-emprestimo-isolado .subtitulo {
      font-size: 14px;
      color: #0068B8;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }

    .bloco-emprestimo-isolado .titulo {
      font-size: 42px;
      font-weight: 300;
      color: #002038;
      margin: 0 0 20px 0;
      line-height: 1.25;
    }

    .bloco-emprestimo-isolado .titulo .destaque {
      font-weight: 500;
      color: #0068B8;
      display: block;
      margin-top: 5px;
    }

    .bloco-emprestimo-isolado .descricao {
      font-size: 18px;
      font-weight: 300;
      color: #002038;
      margin-bottom: 30px;
      line-height: 1.5;
      max-width: 550px;
    }
    
    /* BOTÃO COMO LINK - ESTILO MANTIDO */
    .bloco-emprestimo-isolado .botao-simular {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to right, #0098F8, #0068B8);
      color: #FFFFFF;
      padding: 18px 40px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 18px;
      text-decoration: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .bloco-emprestimo-isolado .botao-simular:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, #0068B8, #0098F8);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }
    
    .bloco-emprestimo-isolado .botao-simular:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .bloco-emprestimo-isolado .botao-simular:hover:before {
      opacity: 1;
    }
    
    .bloco-emprestimo-isolado .botao-simular svg {
      margin-left: 12px;
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }
    
    .bloco-emprestimo-isolado .botao-simular:hover svg {
      transform: translateX(5px);
    }

    @media (max-width: 768px) {
      .bloco-emprestimo-isolado {
        padding: 30px 20px;
      }
      
      .bloco-emprestimo-isolado .titulo {
        font-size: 28px;
      }
      
      .bloco-emprestimo-isolado .descricao {
        font-size: 16px;
      }
      
      .bloco-emprestimo-isolado .botao-simular {
        padding: 16px 35px;
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .bloco-emprestimo-isolado .titulo {
        font-size: 24px;
      }
      
      .bloco-emprestimo-isolado .botao-simular {
        padding: 14px 30px;
        font-size: 15px;
      }
    }
  

/* ===== Tarja informativa ===== */


    .tarja-informativo {
      font-family: 'Inter', sans-serif;
      width: 100%;
      margin: 0;
      color: #FFFFFF;
      text-align: center;
      padding: 20px 24px;
      /* Degradê animado */
      background: linear-gradient(100deg, #0068B8, #0098F8, #0068B8);
      background-size: 200% 200%;
      position: relative;
      overflow: hidden;
      animation: enter 500ms ease-out both, gradientMove 12s ease-in-out infinite;
    }

    /* Sheen / brilho diagonal passando */
    .tarja-informativo::after {
      content: "";
      position: absolute;
      top: 0;
      left: -30%;
      width: 30%;
      height: 100%;
      background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.18), rgba(255,255,255,0));
      transform: skewX(-20deg);
      animation: sheen 6s linear infinite;
      pointer-events: none;
    }

    .tarja-informativo p {
      max-width: 1200px;
      margin: 0 auto;
      font-size: 15px;
      font-weight: 300;
      line-height: 1.65;
    }

    .tarja-informativo strong { font-weight: 600; }

    /* Animações */
    @keyframes gradientMove {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes sheen {
      0%   { transform: translateX(0) skewX(-20deg); }
      100% { transform: translateX(450%) skewX(-20deg); }
    }

    @keyframes enter {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Responsivo */
    @media (max-width: 600px) {
      .tarja-informativo { padding: 16px 14px; margin-bottom: 28px; }
      .tarja-informativo p { font-size: 14px; }
    }

    /* Acessibilidade: respeita quem prefere menos movimento */
    @media (prefers-reduced-motion: reduce) {
      .tarja-informativo,
      .tarja-informativo::after {
        animation: none !important;
      }
    }
  

/* ===== Soluções financeiras (carrossel) ===== */


        /* ===== ISOLAMENTO TOTAL E OTIMIZAÇÃO ===== */
        .sc-cards-carousel, .sc-cards-carousel * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            border: 0;
            font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            color: inherit;
            text-decoration: none;
            list-style: none;
            outline: none;
        }

        /* PÍLULA MINIMALISTA COMERCIAL & AGRO */
        .sc-cards-carousel .badge-agro {
            position: absolute;
            top: 24px;
            right: 24px;
            background: rgba(0, 152, 248, 0.08);
            border: 1px solid rgba(0, 152, 248, 0.25);
            color: var(--green-2);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 999px;
            z-index: 2;
        }

        .sc-cards-carousel {
            --ink: #002038;
            --green: #0098F8;
            --green-2: #0068B8;
            --bg: #fff;
            --muted: #4a6a63;
        }

        .sc-cards-carousel {
            background: transparent;
            color: var(--ink);
            padding: 50px 0;
            position: relative;
            z-index: 1;
            contain: layout style paint;
            width: 100%;
            overflow: hidden;
        }

        .sc-cards-carousel .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* ===== TÍTULO + ABAS ===== */
        .sc-cards-carousel .topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 32px;
            width: 100%;
        }

        .sc-cards-carousel .title-wrap {
            text-align: left;
        }

        .sc-cards-carousel .title-wrap .subtitulo {
            font-size: 14px;
            color: var(--green-2);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .sc-cards-carousel .title-wrap h2 {
            font-size: 38px;
            font-weight: 300;
            letter-spacing: -0.3px;
            line-height: 1.25;
            color: var(--ink);
            margin: 0;
        }

        .sc-cards-carousel .title-wrap h2 .hl {
            color: var(--green-2);
            font-weight: 500;
        }

        /* ABAS */
        .sc-cards-carousel .tabs {
            display: inline-flex;
            gap: 8px;
            padding: 6px;
            border-radius: 999px;
            background: rgba(0, 152, 248, 0.08);
            border: 1px solid rgba(0, 152, 248, 0.25);
            position: relative;
            overflow: hidden;
            height: 46px;
            min-width: 300px;
        }

        .sc-cards-carousel .tab-btn {
            position: relative;
            z-index: 1;
            cursor: pointer;
            border-radius: 999px;
            padding: 10px 20px;
            font-weight: 500;
            color: var(--green-2);
            background: transparent;
            transition: color 0.2s ease, transform 0.15s ease;
            white-space: nowrap;
            font-size: 15px;
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        .sc-cards-carousel .tab-btn:hover {
            transform: translateY(-1px);
        }

        .sc-cards-carousel .tab-btn[aria-selected="true"] {
            color: #fff;
        }

        /* PILL */
        .sc-cards-carousel .tabs .pill {
            position: absolute;
            top: 6px;
            bottom: 6px;
            width: 0;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--green), var(--green-2));
            box-shadow: 0 8px 20px rgba(0, 104, 184, 0.25);
            transition: all .25s cubic-bezier(0.22, 0.7, 0.25, 1);
            z-index: 0;
            left: 0;
        }

        /* ===== CARROSSEL ===== */
        .sc-cards-carousel .carousel-wrap {
            position: relative;
            margin-top: 10px;
            overflow: visible; /* Alterado para evitar corte */
            width: 100%;
        }

        .sc-cards-carousel .track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-padding: 20px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 10px 20px 70px;
            scroll-behavior: smooth;
            width: 100%;
        }

        .sc-cards-carousel .track::-webkit-scrollbar {
            display: none;
        }

        .sc-cards-carousel .card {
            scroll-snap-align: start;
            width: calc((100% - 40px) / 3);
            min-width: calc((100% - 40px) / 3);
            background: #fff;
            border: 1px solid rgba(0, 152, 248, 0.22);
            border-radius: 33px;
            padding: 24px;
            position: relative;
            overflow: hidden;
            /* REMOVIDO: box-shadow padrão */
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
        }

        .sc-cards-carousel .card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 152, 248, 0.45);
            /* SOMENTE no hover: sombreamento */
            box-shadow: 0 16px 36px rgba(0, 24, 56, 0.12);
        }

        /* Decorações */
        .sc-cards-carousel .decoracao {
            display: none;
        }
        .sc-cards-carousel .decoracao-1 { background: #0098F8; top: -20px; right: -20px; }
        .sc-cards-carousel .decoracao-2 { background: #0068B8; bottom: -20px; left: -20px; }

        /* ÍCONE — traço fino, sem preenchimento (mais sofisticado que ícone sólido) */
        .sc-cards-carousel .icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(0, 152, 248, 0.08);
            border: 1px solid rgba(0, 152, 248, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }

        .sc-cards-carousel .icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: var(--green-2);
            stroke-width: 1.6;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .sc-cards-carousel .card h3 {
            font-size: 18px;
            color: var(--green-2);
            margin-bottom: 12px;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .sc-cards-carousel .card p {
            font-size: 14px;
            color: #123b33;
            line-height: 1.55;
            margin-bottom: 20px;
            min-height: 66px;
            position: relative;
            z-index: 1;
        }

        /* CTA — mesmo padrão do "Falar com especialista" dos cards de Seguros:
           link de texto simples, sem fundo, seta desliza e o texto escurece no hover. */
        .sc-cards-carousel .cta {
            display: inline-flex;
            align-items: center;
            font-size: 15px;
            font-weight: 500;
            color: var(--green-2); /* var(--green) sozinho falha contraste WCAG AA como texto */
            background: none;
            box-shadow: none;
            text-decoration: none;
            margin-top: auto;
            width: fit-content;
            transition: color 0.3s ease;
        }

        .sc-cards-carousel .cta:hover {
            color: var(--ink);
        }

        .sc-cards-carousel .cta svg {
            width: 18px;
            height: 18px;
            margin-left: 6px;
            transition: transform 0.3s ease;
        }

        .sc-cards-carousel .cta:hover svg {
            transform: translateX(5px);
        }

        /* ===== SETAS NA PARTE INFERIOR ===== */
        .sc-cards-carousel .nav-bottom {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: -50px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .sc-cards-carousel .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 152, 248, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
            /* REMOVIDO: box-shadow (sombreamento) */
        }

        .sc-cards-carousel .nav-btn:hover {
            transform: scale(1.08);
            background: #fff;
        }

        .sc-cards-carousel .nav-btn svg {
            width: 18px;
            height: 18px;
            color: var(--green-2);
        }

        /* Indicador "passe para o lado" */
        .sc-cards-carousel .swipe-hint {
            display: none;
            position: absolute;
            top: 15px;
            right: 20px;
            background: var(--green);
            color: white;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 500;
            z-index: 3;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.7; }
            50% { opacity: 1; }
            100% { opacity: 0.7; }
        }

        /* RESPONSIVO - MOBILE (CORREÇÕES CRÍTICAS) */
        @media (max-width: 1024px) {
            .sc-cards-carousel .card {
                width: calc((100% - 20px) / 2);
                min-width: calc((100% - 20px) / 2);
            }
        }

        @media (max-width: 768px) {
            .sc-cards-carousel {
                padding: 40px 0;
            }

            .sc-cards-carousel .container {
                padding: 0 16px;
                width: 100%;
                max-width: 100%;
            }

            .sc-cards-carousel .topbar {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                text-align: center;
                padding: 0 10px;
            }

            .sc-cards-carousel .title-wrap {
                text-align: center;
                width: 100%;
            }

            .sc-cards-carousel .title-wrap h2 {
                font-size: 32px;
                line-height: 1.2;
            }

            .sc-cards-carousel .tabs {
                width: 100%;
                min-width: auto;
                max-width: 320px;
            }

            .sc-cards-carousel .carousel-wrap {
                width: 100%;
                padding: 0;
                margin: 0 auto;
                overflow: visible; /* Alterado para evitar corte */
            }

            .sc-cards-carousel .track {
                padding: 15px 15px 60px;
                gap: 15px;
                scroll-padding: 15px;
                width: 100%;
                margin: 0;
            }

            .sc-cards-carousel .card {
                width: calc(100vw - 40px) !important;
                min-width: calc(100vw - 40px) !important;
                max-width: calc(100vw - 40px) !important;
                margin: 0 10px;
                scroll-snap-align: center;
                padding: 20px;
                flex-shrink: 0;
                /* Remover transformações em mobile */
                transform: none !important;
                /* Sem sombreamento em mobile */
                box-shadow: none !important;
                border-color: rgba(0, 152, 248, 0.22) !important;
            }

            .sc-cards-carousel .swipe-hint {
                display: block;
                right: 10px;
            }

            .sc-cards-carousel .nav-bottom {
                margin-top: -45px;
                width: 100%;
            }

            .sc-cards-carousel .nav-btn {
                width: 36px;
                height: 36px;
                /* Remover sombra também em mobile */
                box-shadow: none;
            }

            .sc-cards-carousel .nav-btn svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 480px) {
            .sc-cards-carousel {
                padding: 30px 0;
            }

            .sc-cards-carousel .container {
                padding: 0 12px;
            }

            .sc-cards-carousel .title-wrap h2 {
                font-size: 28px;
            }

            .sc-cards-carousel .tabs {
                height: 42px;
            }

            .sc-cards-carousel .tab-btn {
                padding: 8px 16px;
                font-size: 14px;
            }

            .sc-cards-carousel .track {
                padding: 10px 10px 50px;
            }

            .sc-cards-carousel .card {
                width: calc(50vw - 32px) !important;
                min-width: calc(90vw - 32px) !important;
                max-width: calc(100vw - 32px) !important;
                padding: 18px;
                margin: 0 6px;
                /* Garantir que não tenha transformação em mobile */
                transform: none !important;
            }

            .sc-cards-carousel .icon {
                width: 38px;
                height: 38px;
                margin-bottom: 14px;
            }
            .sc-cards-carousel .icon svg {
                width: 18px;
                height: 18px;
            }

            .sc-cards-carousel .card h3 {
                font-size: 17px;
                margin-bottom: 10px;
            }

            .sc-cards-carousel .card p {
                font-size: 13.5px;
                min-height: 60px;
                margin-bottom: 16px;
            }

            .sc-cards-carousel .cta {
                font-size: 14px;
            }

            .sc-cards-carousel .nav-bottom {
                margin-top: -40px;
            }

            .sc-cards-carousel .nav-btn {
                width: 34px;
                height: 34px;
            }
        }

        /* Correção específica para iOS Safari */
        @supports (-webkit-touch-callout: none) {
            .sc-cards-carousel .track {
                padding-bottom: 70px;
            }

            @media (max-width: 768px) {
                .sc-cards-carousel .track {
                    padding-bottom: 65px;
                }
            }
        }

        /* Regra específica para desativar efeitos hover em dispositivos touch */
        @media (hover: none) and (pointer: coarse) {
            .sc-cards-carousel .card:hover {
                transform: none;
                border-color: rgba(0, 152, 248, 0.22);
                box-shadow: none;
            }

            .sc-cards-carousel .cta:hover svg {
                transform: none;
            }
        }
    

/* ===== Seguros (teaser home) ===== */


    .bloco-seguros-isolado * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    
    .bloco-seguros-isolado {
      position: relative;
      background-color: transparent;
      /* ESPAÇAMENTO ATUALIZADO: idêntico ao carrossel (50px vertical, 24px lateral) */
      padding: 50px 24px;
      max-width: 1200px; /* Largura idêntica ao carrossel */
      width: 100%;
      margin: 0 auto;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
      overflow: visible;
    }

    /* Foto do lado esquerdo, cheia e cortada (cover) — cartão sólido, sem esmaecer */
    .bloco-seguros-isolado { justify-content: flex-start; gap: 64px; }
    .bloco-seguros-isolado .seguros-foto-wrap {
      position: relative;
      flex: 0 0 auto;
      width: 460px;
      max-width: 46%;
      aspect-ratio: 4 / 4.4;
    }
    .bloco-seguros-isolado .seguros-foto-wrap > img:first-child {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 80%;
      border-radius: 24px;
      box-shadow: 0 20px 44px rgba(0, 24, 56, 0.16);
    }
    @media (max-width: 900px) {
      .bloco-seguros-isolado { flex-direction: column; text-align: left; gap: 28px; }
      .bloco-seguros-isolado .seguros-foto-wrap { max-width: 100%; width: 100%; aspect-ratio: 16/10; margin: 0; }
      /* Caixa vira baixa e larga no celular — o foco de 80% (bom no recorte
         alto do desktop) corta a cabeça das pessoas aqui. Sobe o foco. */
      .bloco-seguros-isolado .seguros-foto-wrap > img:first-child { object-position: center 56%; }
    }
    @media (max-width: 480px) {
      .bloco-seguros-isolado .seguros-foto-wrap { max-width: 100%; margin: 0 auto; }
    }

    .bloco-seguros-isolado .conteudo {
      position: relative;
      z-index: 2;
      max-width: 550px;
    }
    
    .bloco-seguros-isolado .subtitulo {
      font-size: 14px;
      color: #0068B8; /* Contraste ajustado (WCAG AA) — igual à tag "Dúvidas frequentes" */
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    
    .bloco-seguros-isolado .titulo {
      font-size: 38px;
      font-weight: 300;
      color: #002038;
      margin: 0 0 20px 0;
      line-height: 1.2;
    }
    
    .bloco-seguros-isolado .titulo .destaque {
      font-weight: 500;
      color: #0068B8; /* Cor atualizada: igual à palavra "dúvidas" */
      display: block;
      margin-top: 5px;
    }
    
    .bloco-seguros-isolado .descricao {
      font-size: 18px;
      font-weight: 300;
      color: #002038;
      margin-bottom: 30px;
      line-height: 1.6;
      max-width: 500px;
    }
    
    /* ===== BOTÃO ===== */
    .bloco-seguros-isolado .botao-simular {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to right, #0098F8, #0068B8);
      color: #FFFFFF;
      padding: 18px 40px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 18px;
      text-decoration: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .bloco-seguros-isolado .botao-simular:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, #0068B8, #0098F8);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }
    
    .bloco-seguros-isolado .botao-simular:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }
    
    .bloco-seguros-isolado .botao-simular:hover:before {
      opacity: 1;
    }
    
    .bloco-seguros-isolado .botao-simular svg {
      margin-left: 12px;
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }
    
    .bloco-seguros-isolado .botao-simular:hover svg {
      transform: translateX(5px);
    }

    /* BOTÃO SECUNDÁRIO (OUTLINE) — mesmo padrão do CTA 2 da página de M&A */
    .bloco-seguros-isolado .botao-outline {
      display: inline-flex; align-items: center; justify-content: center;
      background: transparent; color: #0068B8; padding: 14px 26px; border-radius: 50px;
      text-decoration: none; font-weight: 500; font-size: 15px; white-space: nowrap;
      transition: all 0.3s ease; position: relative; overflow: hidden;
      cursor: pointer; border: 2px solid #0098F8;
    }
    .bloco-seguros-isolado .botao-outline svg {
      width: 16px;
      height: 16px;
      margin-left: 10px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .bloco-seguros-isolado .botao-outline:hover {
      transform: translateY(-2px);
      background: rgba(0, 152, 248, 0.06);
    }
    .bloco-seguros-isolado .botao-outline:hover svg {
      transform: translateX(4px);
    }

    /* ===== PÍLULAS FLUTUANTES (BADGES) ===== */
    .bloco-seguros-isolado .pilula {
      position: absolute;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(0, 152, 248, 0.2);
      color: #0068B8;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 22px;
      border-radius: 50px;
      box-shadow: 0 15px 35px rgba(0, 24, 56, 0.08);
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      animation: flutuar 4s ease-in-out infinite alternate;
      white-space: nowrap;
    }

    .bloco-seguros-isolado .pilula::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #0098F8;
      border-radius: 50%;
    }

    /* Posições reajustadas para o layout de 1200px */
    .bloco-seguros-isolado .p1 { top: 15%; right: 5%; animation-delay: 0s; }
    .bloco-seguros-isolado .p2 { top: 50%; right: 2%; animation-delay: 1.5s; }
    .bloco-seguros-isolado .p3 { bottom: 10%; right: 20%; animation-delay: 0.8s; }
    .bloco-seguros-isolado .p4 { top: 5%; left: 45%; animation-delay: 2s; }

    @keyframes flutuar {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-15px); }
    }

    /* ===== RESPONSIVIDADE (Acompanhando o padrão do site) ===== */
    @media (max-width: 900px) {
      .bloco-seguros-isolado .p2 { right: 5%; }
      .bloco-seguros-isolado .p4 { display: none; } 
    }

    @media (max-width: 768px) {
      .bloco-seguros-isolado {
        /* ESPAÇAMENTO TABLET: 40px vertical, 16px lateral */
        padding: 40px 16px;
        flex-direction: column;
        align-items: flex-start;
      }
      
      .bloco-seguros-isolado .titulo {
        font-size: 32px;
      }
      
      .bloco-seguros-isolado .descricao {
        font-size: 16px;
      }
      
      .bloco-seguros-isolado .botao-simular {
        padding: 16px 35px;
        font-size: 16px;
      }

      .bloco-seguros-isolado .botao-outline {
        padding: 13px 22px;
        font-size: 14px;
      }

      .bloco-seguros-isolado .p1 { top: 5%; right: 5%; }
      .bloco-seguros-isolado .p2 { display: none; } 
      .bloco-seguros-isolado .p3 { bottom: 5%; right: 5%; }
    }

    @media (max-width: 480px) {
      .bloco-seguros-isolado {
        /* ESPAÇAMENTO MOBILE: 30px vertical, 12px lateral */
        padding: 30px 12px;
        min-height: auto;
      }

      .bloco-seguros-isolado .titulo {
        font-size: 28px;
      }
      
      .bloco-seguros-isolado .botao-simular {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
      }

      .bloco-seguros-isolado .pilula {
        font-size: 12px;
        padding: 8px 16px;
      }
      .bloco-seguros-isolado .p1 { top: -10px; right: 12px; }
      .bloco-seguros-isolado .p3 { bottom: 100px; right: 0; opacity: 0.5; }
    }
  

/* ===== Marquee de bancos ===== */


  .sc-bancos-isolado, .sc-bancos-isolado * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
  }

  .sc-bancos-isolado {
    background: #FFFFFF;
    padding: 60px 0;
    position: relative;
  }

  .sc-bancos-isolado .badge-wrap {
    display: flex;
    justify-content: center;
    margin: 28px 0;
  }

  .sc-bancos-isolado .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 152, 248, 0.35);
    background: rgba(0, 152, 248, 0.06);
    color: #0068B8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
  }

  .sc-bancos-isolado .badge svg {
    width: 14px;
    height: 14px;
    stroke: #0098F8;
    fill: none;
    stroke-width: 2;
  }

  .sc-bancos-isolado .marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
  }

  .sc-bancos-isolado .marquee-wrap::before,
  .sc-bancos-isolado .marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
  }

  .sc-bancos-isolado .marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, rgba(255, 255, 255, 0));
  }

  .sc-bancos-isolado .marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF, rgba(255, 255, 255, 0));
  }

  .sc-bancos-isolado .marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 64px;
    animation: sc-scroll 42s linear infinite;
  }

  .sc-bancos-isolado .marquee-track:hover {
    animation-play-state: paused;
  }

  .sc-bancos-isolado .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .sc-bancos-isolado .logo-item:hover {
    opacity: 1;
    transform: translateY(-2px);
  }

  .sc-bancos-isolado .logo-item svg {
    height: 26px;
    width: auto;
    color: #0068B8;
  }

  .sc-bancos-isolado .logo-item svg path {
    fill: #0068B8;
  }

  @keyframes sc-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @media (max-width: 768px) {
    .sc-bancos-isolado .badge { font-size: 11px; padding: 6px 14px; }
    .sc-bancos-isolado .logo-item svg { height: 20px; }
    .sc-bancos-isolado .marquee-track { gap: 40px; }
    .sc-bancos-isolado .marquee-wrap::before,
    .sc-bancos-isolado .marquee-wrap::after { width: 60px; }
  }


/* ===== Rodapé ===== */


  /* ===== ISOLAMENTO TOTAL — NADA VAZA ===== */
  .sc-footer-pro * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    color: inherit;
    text-decoration: none;
    list-style: none;
    background: transparent;
    outline: none;
  }

  .sc-footer-pro {
    font-family: 'Inter', sans-serif;
    background: #002038; /* Verde escuro premium */
    color: #E7F0ED;
    line-height: 1.6;
  }

  /* ===== CONTAINER PRINCIPAL com profundidade ===== */
  .sc-footer-pro .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    position: relative;
  }

  /* Gradiente sutil acima do conteúdo (toque premium) */
  .sc-footer-pro .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 152, 248, 0.4), transparent);
  }

  /* Grid flexível com responsividade — divisórias finas e neutras entre colunas */
  .sc-footer-pro .grid {
    display: grid;
    grid-template-columns: 1.3fr 1.3fr 0.9fr 0.9fr;
    gap: 0;
  }
  .sc-footer-pro .grid .col {
    padding: 0 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sc-footer-pro .grid .col:first-child {
    padding-left: 0;
    border-left: none;
  }

  @media (max-width: 1024px) {
    .sc-footer-pro .grid { grid-template-columns: 1.3fr 1.3fr 1fr; }
    .sc-footer-pro .grid .col:nth-child(4) {
      grid-column: 1 / -1;
      padding-left: 0;
      border-left: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 28px;
      margin-top: 4px;
    }
  }

  @media (max-width: 900px) {
    .sc-footer-pro .grid {
      grid-template-columns: 1fr 1fr;
      row-gap: 40px;
    }
    .sc-footer-pro .grid .col:nth-child(2) { border-left: 1px solid rgba(255, 255, 255, 0.08); }
    .sc-footer-pro .grid .col:nth-child(3) {
      padding-left: 0;
      border-left: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 28px;
      grid-column: 1 / -1;
    }
    .sc-footer-pro .grid .col:nth-child(4) { border-top: none; padding-top: 0; }
  }

  @media (max-width: 640px) {
    .sc-footer-pro .grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .sc-footer-pro .grid .col {
      padding: 0;
      border-left: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 28px;
    }
    .sc-footer-pro .grid .col:first-child { border-top: none; padding-top: 0; }
  }

  /* ===== TÍTULOS — rótulo discreto, sem barra colorida ===== */
  .sc-footer-pro h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
  }

  /* ===== LISTAS DE LINKS ===== */
  .sc-footer-pro .links {
    display: grid;
    gap: 4px;
  }

  .sc-footer-pro .links a {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
    color: rgba(231, 240, 237, 0.75);
    transition: color 0.2s ease;
    position: relative;
    flex-wrap: wrap; /* Permite que a pílula não quebre o layout */
  }

  .sc-footer-pro .links a:hover {
    color: #FFFFFF;
  }

  /* "Ver todos" — destaque como CTA, diferente dos links comuns da lista */
  .sc-footer-pro .links a.link-ver-todos {
    color: #0098F8;
    font-weight: 600;
    gap: 6px;
    margin-top: 4px;
  }
  .sc-footer-pro .links a.link-ver-todos svg {
    flex: none;
    transition: transform 0.2s ease;
  }
  .sc-footer-pro .links a.link-ver-todos:hover {
    color: #FFFFFF;
  }
  .sc-footer-pro .links a.link-ver-todos:hover svg {
    transform: translateX(3px);
  }

  /* ===== PÍLULA MINIMALISTA DO RODAPÉ ===== */
  .sc-footer-pro .badge-footer {
    background: rgba(0, 152, 248, 0.15);
    border: 1px solid rgba(0, 152, 248, 0.3);
    color: #0098F8; /* Verde claro que destaca no fundo escuro */
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 999px;
    margin-left: 8px;
    display: inline-block;
  }

  /* ===== COLUNA DE MARCA + BOTÃO ===== */
  .sc-footer-pro .col-brand .fine {
    font-size: 11.5px;
    color: #B8D5CD;
    opacity: 0.85;
    line-height: 1.5;
    margin-top: 16px;
    max-width: 280px;
  }

  /* BOTÃO MODERNO — com mais espaço acima */
  .sc-footer-pro .btn-simular {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: linear-gradient(95deg, #0098F8, #0068B8 60%);
    color: #FFFFFF;
    padding: 12px 18px;
    border-radius: 90px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(0, 104, 184, 0.3);
    margin-top: 24px; /* espaçamento acima */
  }

  /* Efeito de brilho interno ao passar o mouse */
  .sc-footer-pro .btn-simular::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: -1;
  }

  .sc-footer-pro .btn-simular:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 104, 184, 0.45);
  }

  .sc-footer-pro .btn-simular:hover::before {
    opacity: 1;
    transform: scale(1);
  }

  .sc-footer-pro .btn-simular svg {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .sc-footer-pro .btn-simular:hover svg {
    transform: translateX(5px);
  }

  /* ===== BARREIRA INFERIOR ===== */
  .sc-footer-pro .bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    max-width: 1280px;
    margin: 40px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #B8D5CD;
    font-size: 12px;
  }

  .sc-footer-pro .bottom-bar a {
    color: #B8D5CD;
    transition: color 0.3s ease;
  }

  .sc-footer-pro .bottom-bar a:hover {
    color: #0098F8;
  }

  /* Mobile */
  @media (max-width: 480px) {
    .sc-footer-pro .container {
      padding: 50px 16px 30px;
    }
    .sc-footer-pro .bottom-bar {
      padding: 16px 16px;
    }
    .sc-footer-pro .col-brand .fine {
      max-width: 100%;
    }
  }


/* ===== Redes sociais ===== */


  /* Isolamento visual */
  .sc-social-minimal,
  .sc-social-minimal * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    color: inherit;
    text-decoration: none;
    list-style: none;
  }

  /* ===== Topo do rodapé: logo + redes sociais na mesma linha ===== */
  .sc-footer-pro .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 28px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sc-footer-pro .footer-logo { display: flex; line-height: 0; }
  .sc-footer-pro .footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }

  .sc-social-minimal {
    font-family: 'Inter', sans-serif;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    max-width: none;
    margin: 0;
    position: relative;
    box-shadow: none;
  }

  /* Ícone — botão quadrado discreto, sem badge circular */
  .sc-social-minimal .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
  }

  .sc-social-minimal .icon svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.65);
    transition: fill 0.2s ease;
    position: relative;
    z-index: 1;
  }

  /* Efeito no hover — discreto, sem elevação nem brilho */
  .sc-social-minimal .icon:hover {
    background: #0098F8;
    border-color: #0098F8;
  }

  .sc-social-minimal .icon:hover svg {
    fill: #FFFFFF;
  }

  /* Responsivo */
  @media (max-width: 480px) {
    .sc-social-minimal {
      gap: 10px;
      padding: 0;
    }
    .sc-social-minimal .icon {
      width: 36px;
      height: 36px;
    }
    .sc-social-minimal .icon svg {
      width: 15px;
      height: 15px;
    }
  }


/* ===== FAQ (componente compartilhado) ===== */

/* ===== FAQ genérico (home + produtos) ===== */
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}
.faq-section .faq-left { flex: 1; min-width: 300px; }
.faq-section .faq-tag {
  font-size: 13px; color: var(--sc-blue-dark); text-transform: uppercase;
  font-weight: 600; letter-spacing: 1px; margin-bottom: 20px; display: block;
}
.faq-section .faq-left h2 {
  font-size: 38px; font-weight: 300; line-height: 1.3; margin: 0;
  color: var(--sc-ink); letter-spacing: -0.3px;
}
.faq-section .faq-left h2 .highlight { color: var(--sc-blue-dark); font-weight: 500; }
.faq-section .faq-right { flex: 1.2; min-width: 320px; display: flex; flex-direction: column; gap: 20px; }
.faq-section .faq-item {
  background-color: #FFFFFF; border: 1px solid rgba(0, 152, 248, 0.2); border-radius: 8px;
  padding: 25px; transition: all 0.3s ease; cursor: pointer; box-shadow: 0 5px 15px rgba(0, 24, 56, 0.05);
}
.faq-section .faq-item:hover {
  transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 24, 56, 0.1); border-color: rgba(0, 152, 248, 0.4);
}
.faq-section .faq-item-header { display: flex; justify-content: space-between; align-items: center; }
.faq-section .faq-item-header h3 { font-size: 18px; font-weight: 500; margin: 0; color: var(--sc-blue-dark); }
.faq-section .faq-symbol { font-size: 20px; font-weight: 500; color: var(--sc-blue); transition: all 0.3s ease; }
.faq-section .faq-answer { display: none; margin-top: 15px; font-size: 14px; color: var(--sc-ink); line-height: 1.6; font-weight: 300; }
.faq-section .faq-item.open { background-color: #F9F9F9; }
.faq-section .faq-item.open .faq-symbol { transform: rotate(45deg); color: var(--sc-blue-dark); }
.faq-section .faq-item.open .faq-item-header h3 { color: var(--sc-blue-dark); }
@media (max-width: 992px) { .faq-section { gap: 40px; } .faq-section .faq-left h2 { font-size: 32px; } }
@media (max-width: 768px) { .faq-section { flex-direction: column; padding: 40px 16px; gap: 30px; } .faq-section .faq-left h2 { font-size: 28px; } }
@media (max-width: 480px) { .faq-section { padding: 30px 12px; } .faq-section .faq-left h2 { font-size: 24px; } .faq-section .faq-item { padding: 20px; } .faq-section .faq-item-header h3 { font-size: 16px; } }
