  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #1B2A4A;
    --blue: #2E5EA8;
    --blue-light: #3D72C9;
    --blue-pale: #EBF1FA;
    --white: #FFFFFF;
    --gray-50: #F8F9FB;
    --gray-100: #EFF1F5;
    --gray-200: #DDE2EC;
    --gray-500: #7A869A;
    --gray-700: #3D4A5C;
    --radius: 12px;
    --radius-lg: 20px;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-inner {
    max-width: 1160px; margin: 0 auto;
    padding: 0 2rem; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
  }

.nav-logo { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: var(--white);
  
  width: 110px; 
  height: 110px; 
  border-radius: 50%; 
  
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.15); 
  border: 1px solid rgba(219, 226, 237, 0.8); 

  position: relative;
  top: 20px; 
  overflow: hidden; /* Corta o excesso transparente da imagem */
}

/* 2. A IMAGEM: Força a logo a crescer e preencher o espaço vazio */
.nav-logo img { 
  height: 145px; /* Altura maior que o container para eliminar a transparência da própria imagem */
  width: 145px;  /* Força a proporção quadrada para o preenchimento circular */
  object-fit: cover; /* Faz o desenho central expandir até sumir com o espaço em branco */
  display: block;
}

  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--blue); color: var(--white) !important;
    padding: 9px 22px; border-radius: 8px; font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--navy) !important; }

  /* HERO — foco na empresa */
  .hero {
    padding: 150px 2rem 110px;
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1160px; margin: 0 auto; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(91,155,255,0.15); border: 1px solid rgba(91,155,255,0.3);
    color: #8BB8FF; font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700; line-height: 1.12;
    letter-spacing: -1.5px; color: white; margin-bottom: 1.25rem;
  }
  .hero h1 em { font-style: normal; color: #5B9BFF; }
  .hero-sub {
    font-size: 17px; color: rgba(255,255,255,0.65);
    line-height: 1.75; margin-bottom: 2.5rem; max-width: 500px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #5B9BFF; color: var(--navy);
    padding: 14px 28px; border-radius: 10px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: white; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .btn-ghost-dark {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,0.8);
    padding: 14px 28px; border-radius: 10px;
    font-weight: 600; font-size: 15px; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.2); transition: all 0.2s;
  }
  .btn-ghost-dark:hover { border-color: rgba(255,255,255,0.5); color: white; }

  /* HERO NUMBERS */
  .hero-numbers {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: rgba(255,255,255,0.1); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
  }
  .hero-num {
    background: rgba(255,255,255,0.05);
    padding: 2rem 1.5rem; text-align: center;
  }
  .hero-num-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px; font-weight: 700; color: white;
    letter-spacing: -1px; line-height: 1;
  }
  .hero-num-val span { color: #5B9BFF; }
  .hero-num-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 6px; }

  /* SECTIONS */
  section { padding: 6rem 2rem; }
  .section-inner { max-width: 1160px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 3vw, 40px); font-weight: 700;
    color: var(--navy); letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 1rem;
  }
  .section-desc {
    font-size: 17px; color: var(--gray-700); line-height: 1.7; margin-bottom: 3rem;
  }

  /* MISSÃO */
  .missao { background: var(--gray-50); }
  .missao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .missao-text .section-desc { margin-bottom: 0; }
  .valores-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .valores-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: var(--gray-700); line-height: 1.5;
  }
  .valor-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px; font-weight: 700; color: var(--blue);
    background: var(--blue-pale); padding: 4px 10px;
    border-radius: 100px; flex-shrink: 0; margin-top: 1px;
  }
  .valor-txt strong { color: var(--navy); font-weight: 600; }

  /* MISSÃO VISUAL */
  .missao-visual {
    background: var(--navy); border-radius: 24px;
    padding: 2.5rem; position: relative;
  }
  .missao-icon-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem;
  }
  .missao-icon-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 1.25rem;
    display: flex; flex-direction: column; gap: 8px;
  }
  .missao-icon-card svg { width: 24px; height: 24px; stroke: #5B9BFF; }
  .missao-icon-card span { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
  .missao-tag {
    background: rgba(91,155,255,0.12);
    border: 1px solid rgba(91,155,255,0.25);
    border-radius: var(--radius); padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 10px;
    margin-top: 0;
  }
  .missao-tag-dot { width: 8px; height: 8px; background: #5B9BFF; border-radius: 50%; flex-shrink: 0; }
  .missao-tag span { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }

  /* SOLUÇÕES */
  .solucoes { background: var(--white); }
  .solucoes-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: end; margin-bottom: 3.5rem;
  }
  .solucoes-intro .section-desc { margin-bottom: 0; }
  .solucoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .solucao-card {
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 2rem 1.75rem; transition: all 0.2s; position: relative; overflow: hidden;
  }
  .solucao-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--blue); transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }
  .solucao-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(46,94,168,0.1); transform: translateY(-2px); }
  .solucao-card:hover::before { transform: scaleX(1); }
  .sol-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--blue-pale); display: flex; align-items: center;
    justify-content: center; margin-bottom: 1.25rem;
  }
  .sol-icon svg { width: 24px; height: 24px; stroke: var(--blue); }
  .solucao-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  .solucao-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

  /* PRODUTO */
  .produto-section { background: var(--navy); padding: 6rem 2rem; }
  .produto-inner { max-width: 1160px; margin: 0 auto; }
  .produto-header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; margin-bottom: 3rem;
  }
  .produto-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: #5B9BFF; margin-bottom: 0.75rem;
  }
  .produto-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3vw, 38px); font-weight: 700;
    color: white; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 1rem;
  }
  .produto-desc { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; }
  .produto-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #5B9BFF; font-weight: 600; font-size: 15px;
    text-decoration: none; margin-top: 1.5rem; transition: gap 0.2s;
  }
  .produto-link:hover { gap: 14px; }
  .produto-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  }
  .produto-feat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 1.5rem 1.25rem;
  }
  .produto-feat svg { width: 22px; height: 22px; stroke: #5B9BFF; margin-bottom: 12px; }
  .produto-feat h4 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 6px; }
  .produto-feat p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }

  /* CONTATO */
  .contato-section { background: var(--blue-pale); padding: 6rem 2rem; }
  .contato-inner { max-width: 700px; margin: 0 auto; text-align: center; }
  .contato-inner .section-desc { margin: 0 auto 2rem; }
  .contato-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-solid {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: white;
    padding: 14px 28px; border-radius: 10px;
    font-weight: 600; font-size: 15px; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-solid:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,42,74,0.2); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--navy);
    padding: 14px 28px; border-radius: 10px;
    font-weight: 600; font-size: 15px; text-decoration: none;
    border: 1.5px solid var(--gray-200); transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--blue); color: var(--blue); background: white; }

  /* FOOTER */
  footer { background: var(--navy); padding: 4rem 2rem 2rem; }
  .footer-inner { max-width: 1160px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
  }
/* 1. O CONTAINER DA LOGO NO FOOTER: Cria o círculo branco no rodapé */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  
  /* Um tamanho excelente para o rodapé, mantendo a proporção */
  width: 90px; 
  height: 90px; 
  border-radius: 50%;
  
  /* Sombra sutil para dar acabamento sobre o fundo escuro */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
  margin-bottom: 20px; /* Espaço para o texto descritivo abaixo dela */
  overflow: hidden; /* Corta as bordas transparentes da imagem */
}

/* 2. A IMAGEM DA LOGO NO FOOTER: Força o preenchimento igual fizemos no topo */
.footer-logo img { 
  height: 120px; /* Valor maior que o container (90px) para esticar o desenho */
  width: 120px; 
  object-fit: cover; 
  display: block;
  margin-bottom: 0; /* Reseta a margem antiga da imagem */
}
  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
  .footer-col h4 {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { text-decoration: none; font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: rgba(255,255,255,0.25);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner, .missao-grid, .solucoes-intro, .produto-header { grid-template-columns: 1fr; gap: 3rem; }
    .hero-numbers { display: none; }
    .solucoes-grid { grid-template-columns: 1fr 1fr; }
    .produto-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .solucoes-grid, .produto-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* Fundo do Modal (Escondido por padrão) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(3px); /* Efeito de desfoque ao fundo */
}

/* Caixa de conteúdo do Modal */
.modal-content {
    background-color: #ffffff;
    color: #333333;
    margin: 5% auto; 
    padding: 30px;
    border-radius: 8px;
    width: 80%; 
    max-width: 650px; 
    max-height: 80vh;
    overflow-y: auto; /* Adiciona rolagem se o texto for grande */
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-out;
}

/* Botão de Fechar (X) */
.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #f44336;
}

/* Estilo do texto interno */
.modal-body h3 {
    margin-top: 20px;
    color: #111;
    font-size: 1.1rem;
}

.modal-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

/* Animação de abertura */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}