/*
Theme Name: ScaleBridge.v01
Theme URI: https://verticeperformance.com.br
Author: Seu Nome
Author URI: https://verticeperformance.com.br
Description: Um tema personalizado criado a partir de um projeto HTML.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vertice-performance
*/  
  /* ======================
       Design System (CSS Vars)
       ====================== */
    :root {
      --blue: #0b3b67;         /* Profissionalismo e confiança */
      --blue-600: #0e4a80;
      --green: #18a35f;        /* CTAs e sucesso */
      --charcoal: #0f1720;     /* Preto/Cinza escuro */
      --ink: #1f2937;          /* Texto principal */
      --muted: #6b7280;        /* Texto secundário */
      --bg: #f7f9fc;           /* Fundo claro */
      --card: #ffffff;         /* Cartões */
      --accent: #ff8a00;       /* Laranja p/ destaques */
      --radius: 16px;
      --shadow: 0 10px 30px rgba(2, 8, 23, .08);
      --shadow-soft: 0 6px 18px rgba(2, 8, 23, .06);
      --focus: 0 0 0 3px rgba(24, 163, 95, .35);

        
    }
    
	
    /* Reset + Tipografia */
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    :focus-visible { outline: none; box-shadow: var(--focus); border-radius: 8px; }

    /* Layout */
    .container { width: min(1120px, 92%); margin-inline: auto; }
    .section { padding: 50px 0; }

    /* Header */
    .skip { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
    .skip:focus { position: static; width: auto; height: auto; padding: 8px 12px; background: #fff; box-shadow: var(--shadow-soft); border-radius: 8px; margin: 8px; display: inline-block; }

    header {
     position: top: 0; z-index: 50;
      background: rgba(255,255,255,.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(2, 8, 23, .06);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--blue); letter-spacing: .2px; }
    .brand svg { width: 28px; height: 28px; }
    .menu { display: flex; align-items: center; gap: 22px; }
    .menu a { color: var(--muted); font-weight: 500; }
    .menu a:hover { color: var(--ink); }

    .cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 12px; background: var(--green); color: white; font-weight: 700; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .2s ease; }
    .cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(24,163,95,.25); }
    .cta--ghost { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); box-shadow: none; }

    /* Mobile nav */
    .burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; border: none; background: none; z-index: 101; }
    .burger span { width: 24px; height: 2px; background: var(--ink); display: block; }
    
    /* Novo container para a navegação mobile */
    .nav-wrapper {
        /* Padrão para desktop: exibe os itens lado a lado */
        display: flex;
        align-items: center;
        gap: 22px;
    }
    .nav-links, .nav-actions { display: flex; }

    /* Hero */
    .hero { display: grid; gap: 28px; align-items: center; padding: 44px 0 24px; }
    h1 { font-size: clamp(28px, 5vw, 48px); line-height: 1.1; margin: 8px 0; color: var(--charcoal); }
	.eyebrow { display:inline-block; font-size: 12px; font-weight: 700; letter-spacing: .8px;  color: var(--blue-600); background: rgba(14,74,128,.08); padding: 6px 10px; border-radius: 999px; }
    .sub { font-size: clamp(16px, 2.5vw, 18px); color: var(--muted); max-width: 62ch; }

    .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

    .badges { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 520px; }
    .badge { display:flex; align-items:center; gap:10px; background: #fff; padding: 12px 14px; border-radius: 12px; box-shadow: var(--shadow-soft); border: 1px solid rgba(2,8,23,.06); }
    .badge b { color: var(--blue); }

    .hero-media { position: relative; }
            .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
        }

        /* Estilo para manter a proporção de 16:9 */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* Proporção de 16:9 */
            height: 0;
            background-color: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Estilos para o botão de áudio */
        .audio-toggle {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 10;
            background-color: rgba(2, 8, 23, 0.4);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .audio-toggle:hover {
            background-color: rgba(2, 8, 23, 0.6);
        }

        /* Ícone de alto-falante */
        .audio-toggle svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }
   

    /* Logos */
    .logos { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; opacity: .8; }
    .logos .logo { background: #fff; border: 1px solid rgba(2,8,23,.06); border-radius: 12px; padding: 12px; display:grid; place-items:center; }

    /* Benefits */
    .grid { display: grid; gap: 16px; }
    .benefits .card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-soft); border: 1px solid rgba(2,8,23,.06); }
    .card h3 { margin: 0 0 6px; font-size: 18px; color: var(--charcoal); }
    .card p { margin: 0; color: var(--muted); }
    .chip { display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; background: rgba(255,138,0,.1); color:#8a4a00; font-size:12px; font-weight:700; }

    /* Proof */
    .proof .kpis { display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
    .kpi { background:#fff; padding:18px; border-radius:14px; box-shadow: var(--shadow-soft); border: 1px solid rgba(2,8,23,.06); text-align:center; }
    .kpi b { font-size:28px; color: var(--blue); display:block; }
    .kpi span { color: var(--muted); font-size: 14px; }


    /* Process */
    .process .step { background:#fff; padding:18px; border-radius:14px; box-shadow: var(--shadow-soft); border: 1px solid rgba(2,8,23,.06); display:flex; gap:14px; align-items:flex-start; }
    	    .flow-marker {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
      flex-shrink: 0;
      position: relative;
      padding-right: 1.5rem;
    }
       .flow-marker::after {
      content: '';
      position: absolute;
      top: 0.5rem;
      right: 0;
      width: 4px;
      height: 70%;
      background-color: var(--green);
      border-radius: 99px;
    }



    /* Testimonials */
    .testimonials .item { background:#fff; border:1px solid solid rgba(2,8,23,.06); border-radius:16px; padding:18px; box-shadow: var(--shadow-soft); }
    .item .who { display:flex; align-items:center; gap:10px; margin-top:12px; }
    .avatar { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg, var(--blue), var(--green)); }

    /* CTA Bar */
    .cta-bar { position: sticky; bottom: 12px; z-index: 40; }
    .cta-wrap { background: #0b3b67; color: #fff; border-radius: 12px; padding: 12px; box-shadow: var(--shadow); display:flex; align-items:center; justify-content:space-between; gap:12px; }
    .cta-wrap p { margin:0; font-weight:600; }

    /* Form */
    .contact { background: linear-gradient(180deg, rgba(11,59,103,.06), transparent); border-top: 1px solid rgba(2,8,23,.06); }
    form { background:#fff; border:1px solid rgba(2,8,23,.08); box-shadow: var(--shadow-soft); padding: 18px; border-radius: 16px; }
	label { font-weight: 700; font-size: 14px; color: var(--ink); }
     input, select, textarea { /*width:100%;*/ padding:12px 12px; border-radius: 10px; border:1.5px solid #e5e7eb; background:#fff; font: inherit; }
    input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: var(--focus); }
    .field { display:grid; gap:8px; }
    .form-grid { display:grid; gap:12px; grid-template-columns: 1fr; }
    .error { color: #9b1c1c; font-size: 12px; display:none; }
    .legal { font-size: 12px; color: var(--muted); }

    /* FAQ */
    .faq details { background:#fff; border:1px solid rgba(2,8,23,.06); border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow-soft); }
    .faq details + details { margin-top: 10px; }
    .faq summary { cursor: pointer; font-weight: 700; color: var(--charcoal); }

    /* Footer */
    footer { background: #0b3b67; color:#cfe7ff; 
	 padding: 50px 20px 20px;
    font-family: Arial, sans-serif;}
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
  }
  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #9cc6e9;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col ul li {
    margin-bottom: 8px;
  }
  .footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover {
    color: #9cc6e9;
  }
  .footer-about {
    margin-top: 15px;
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
  }
  .socials a {
    margin-right: 10px;
    display: inline-block;
  }
  .socials img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
  }
  .socials a:hover img {
    transform: scale(1.2);
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #888;
  }
	
    .foot { display:grid; gap: 16px; padding: 28px 0; }
    .foot small { color:#9cc6f0; }
	
	
    /* Utilities */
    .center { text-align:center; }
    .mt-2 { margin-top: 8px; }
    .mt-3 { margin-top: 12px; }
    .mt-4 { margin-top: 16px; }
    .mt-6 { margin-top: 24px; }

    /* Regra para desabilitar o scroll */
    body.no-scroll { overflow: hidden; }
     
    /* Reveal on scroll */
    .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* Responsive */
    @media (min-width: 760px) {
      .nav-links { gap: 20px; }
      .nav-actions { gap: 10px; }
      .burger { display:none; }
      .hero { grid-template-columns: 1.2fr 1fr; }
      .badges { grid-template-columns: repeat(2,minmax(0,1fr)); }
      .logos { grid-template-columns: repeat(6,1fr); }
      .grid-3 { grid-template-columns: repeat(3, 1fr); }
      .form-grid { grid-template-columns: 1fr 1fr; }
    }
    
    /* Regras do menu mobile */
    @media (max-width: 760px) {
      .burger {
        display: flex;
        z-index: 101; /* Garante que o burger fique acima do menu */
      }
      .brand {
        z-index: 101; /* Garante que a marca fique acima do menu */
      }

      .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 99;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(-100%);
        visibility: hidden;
        transition: transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
      }

      .nav-wrapper.is-active {
        transform: translateX(0);
        visibility: visible;
      }

      /* Links e botões sempre visíveis dentro do wrapper */
      .nav-links, .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        font-size: 1.5rem;
      }

      .nav-actions {
        gap: 20px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { transition: none; }
      .cta { transition: none; }
    }
	
    .carousel {
      overflow: hidden;
      width: 100%;
      background: #f8f9fb;
      padding: 1rem 0;
    }

    .track {
      display: flex;
      gap: 2rem;
      will-change: transform;
    }

    .item {
      display: flex;
      align-items: center; /* Centraliza a imagem e o texto verticalmente */
      gap: 1rem;
      flex: 0 0 auto;
    }

    .info {
      display: flex;
      flex-direction: column; /* Alinha o nome e os seguidores em uma coluna */
    }

    .avatar-img {
      width: 70px; height: 70px;
      border-radius: 50%;
      border: 1px solid transparent;
      background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
      padding: 1px;
      display: inline-block;
    }
    .avatar-img img { width:100%; height:100%; border-radius:50%; }
    .avatar-name { font-weight:bold; }
	.avatar-followers { color:#555; font-size:.9rem; }

        :root {
            /* Velocidade da animação. Maior valor = mais lento */
            --logo-speed: 20s;
        }

        .logo-carousel {
            overflow: hidden;
            width: 100%;
            background: #fff; /* Cor de fundo suave */
            padding: 1rem 0;
        }

        .logo-track {
            display: flex;
            gap: 3rem; /* Espaçamento entre logos */
            width: max-content;
            animation: scrollLogos var(--logo-speed) linear infinite;
        }

        .logo-item {
            flex: 0 0 auto;
        }

        .logo-item img {
            max-height: 70px;
            width: auto;
            display: block;
            filter: grayscale(100%); /* Logos em cinza */
            opacity: 0.8;
            transition: filter 0.3s, opacity 0.3s;
        }

        .logo-item img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

               /* Animação que faz o carrossel rolar da esquerda para a direita */
        @keyframes scrollLogos {
            from {
                /* Começa com a faixa deslocada para a esquerda para que o movimento seja para a direita */
                transform: translateX(calc(-50% - 1.5rem));
            }
            to {
                /* Retorna a faixa para a posição original, completando o loop */
                transform: translateX(0);
            }
        }
		
		/* animação carrossel testemunhas*/
		
    .container.section.testimonials {
            padding: 2rem;
            max-width: 800px;
            text-align: center;
            border-radius: 12px;
            position: relative;
            overflow: hidden; /* Importante para esconder os depoimentos fora da tela */
            min-height: 450px; /* Garante que o contêiner tenha altura para não "pular" */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-content {
            transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s ease;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(100%, -50%); /* Inicia fora da tela, à direita */
            opacity: 0;
            width: 100%;
            padding: 20px;
            box-sizing: border-box; 
        }
        
        .testimonial-content.active {
            opacity: 1;
            transform: translate(-50%, -50%); /* Desliza para o centro da tela */
        }

        .chip {
            display: inline-block;
            background-color: #e0f7fa;
            color: #00796b;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8em;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

        .who {
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }
		
		/* Animação do cursor que pisca escrevendo no topo header */
		.digita {
		color:var(--green);	
	
		}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--charcoal); }
}

/* Estilo para a digitação */
.typing-text {
    
    white-space: nowrap; /* Impede que o texto quebre linha */
    overflow: hidden; /* Esconde o texto que ainda não foi digitado */
}

/* Aplica a animação no cursor */
.typing-text.is-blinking {
    animation: blink-caret .75s step-end infinite;
}




/*
 * Estilos específicos para a página do blog
 * Prefixo: .blog-
 */
.blog-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 44px 0 24px;
  text-align: center;
}
.blog-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--blue-600);
  background: rgba(14, 74, 128, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}
.blog-sub {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--muted);
  max-width: 62ch;
}
.blog-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.blog-post-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.blog-post-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(2, 8, 23, 0.06);
  transition: transform 0.2s ease;
  overflow: hidden;
}
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.blog-post-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-post-content {
  padding: 24px;
}
.blog-post-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.3;
}
.blog-post-content p {
  margin: 0 0 15px;
  color: var(--muted);
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-sidebar-widget {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(2, 8, 23, 0.06);
}
.blog-sidebar-widget h4 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--charcoal);
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
  width: fit-content;
}
.blog-sidebar-cta {
  background-color: var(--blue);
  color: white;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.blog-sidebar-cta h5 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}
.blog-sidebar-cta p {
  margin: 0 0 20px;
  color: #cfe7ff;
  line-height: 1.5;
}

/* Centraliza a grade de posts */
.blog-layout .blog-post-list {
  margin-inline: auto;
  width: fit-content;
}

/* Responsividade */
@media (min-width: 760px) {
  .blog-layout {
    grid-template-columns: 2fr 1fr;
  }
  .blog-post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

 /* Article Content - pagina do artigo */
    .article-header  {
      text-align: center;
      margin-bottom: 2rem;
    }
    .article-header .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .8px;
      color: var(--blue-600);
      background: rgba(14,74,128,.08);
      padding: 6px 10px;
      border-radius: 999px;
      margin-bottom: 10px; /* Adicionado espaço abaixo do eyebrow */
    }
    .article-header h1 {
      font-size: clamp(32px, 6vw, 52px); /* Título maior */
      line-height: 1.1;
      margin: 0; /* Removido margin-top para aproximar do eyebrow */
      color: var(--charcoal);
      max-width: 900px; /* Limite a largura para melhor legibilidade */
      margin-inline: auto;
    }
    .article-header .meta {
      font-size: 15px; /* Fonte um pouco maior */
      color: var(--muted);
      margin-top: 15px; /* Espaço para a meta */
      margin-bottom: 2.5rem; /* Mais espaço antes da imagem */
    }
    
    .featured-image {
      position: relative;
      max-width: 900px; /* Max width para a imagem */
      margin: 0 auto; /* Centraliza a imagem */
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden; /* Garante que a imagem respeite o radius */
    }
    .featured-image img {
      width: 100%;
      height: auto; /* Mantém a proporção */
      display: block;
    }
    .featured-image figcaption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
      color: white;
      padding: 10px 15px;
      font-size: 14px;
      text-align: left;
      opacity: 0; /* Escondido por padrão */
      transition: opacity 0.3s ease;
    }
    .featured-image:hover figcaption {
      opacity: 1; /* Revela no hover */
    }
    
    .article-content {
      line-height: 1.8;
      max-width: 750px;
      margin: 3rem auto 0 auto; /* Espaço maior após a imagem */
    }
    .article-content h2 {
      margin-top: 2.5rem;
      margin-bottom: 1rem;
      font-size: 28px;
      line-height: 1.3;
      color: var(--charcoal);
      border-bottom: 2px solid var(--green);
      padding-bottom: 5px;
    }
    .article-content h3 {
      margin-top: 2rem;
      margin-bottom: 0.8rem;
      font-size: 22px;
      color: var(--ink);
    }
    .article-content p {
      margin-bottom: 1.5rem;
      color: var(--ink);
    }
    .article-content strong {
      color: var(--charcoal);
      font-weight: 700; /* Garante que o strong seja realmente forte */
    }
    .article-content em { /* Adicionado estilo para itálico */
      font-style: italic;
      color: var(--muted);
    }
    .article-content ul, .article-content ol {
      list-style-position: outside;
      margin: 0 0 1.5rem 1.5rem;
      padding: 0;
    }
    .article-content li {
      margin-bottom: 0.5rem;
      color: var(--ink);
    }
    .article-content blockquote {
      margin: 2rem 0;
      padding: 1.5rem 2rem;
      border-left: 4px solid var(--blue);
      background: #e9f0f6;
      border-radius: 0 8px 8px 0;
      font-style: italic;
      color: var(--blue);
      line-height: 1.6;
    }
    .article-content blockquote p {
      margin: 0;
    }
    .article-content .cta-inline {
      display: block;
      background: var(--blue);
      color: white;
      text-align: center;
      padding: 2rem;
      border-radius: var(--radius);
      margin: 3rem 0;
      box-shadow: var(--shadow);
    }
    .article-content .cta-inline h4 {
      margin: 0 0 1rem;
      font-size: 24px;
    }
    .article-content .cta-inline p {
      margin: 0 0 1.5rem;
      color: #cfe7ff;
    }
    .article-content .cta-inline .cta {
      display: inline-block;
      background: var(--green);
      box-shadow: none;
    }
    .article-content .cta-inline .cta:hover {
      transform: translateY(0);
      box-shadow: none;
    }
	
    