*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --dark:    #060d1f;
      --dark2:   #0a1530;
      --dark3:   #0f1e3a;
      --blue:    #3b6ef8;
      --blue2:   #5b8aff;
      --cyan:    #00d4ff;
      --purple:  #a855f7;
      --text:    #e2e8f0;
      --muted:   #94a3b8;
      --white:   #ffffff;
      --light-bg:#f0f4ff;
      --card-bg: #ffffff;
    }

    html { scroll-behavior: smooth; }

html,
body {
    width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
    }

    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 5%;
      background: rgba(6,13,31,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: transform 1s ease;
    }
    nav.hide {
    transform: translateY(-100%);
        }

    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo span { font-size: 1.4rem; font-weight: 700; color: var(--white); }

    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      background: var(--blue); color: #fff; border: none; padding: 10px 22px;
      border-radius: 8px; font-weight: 600; font-size: .9rem; cursor: pointer;
      text-decoration: none; transition: background .2s;
    }
    .nav-cta:hover { background: var(--blue2); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 100px 5% 60px;
      position: relative; overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(59,110,248,0.18) 0%, transparent 70%),
                  radial-gradient(ellipse 40% 40% at 20% 80%, rgba(168,85,247,0.12) 0%, transparent 60%),
                  var(--dark);
    }

    .logo-navbar { height: 36px; width: auto; display: block; }
    .hero-wave {
      position: absolute; bottom: 0; right: 0; width: 55%; height: 100%;
      z-index: 1; pointer-events: none;
    }

    .hero-content { position: relative; z-index: 2; max-width: 520px; }
    
    .hero-content h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800; line-height: 1.15; color: var(--white);
      margin-bottom: 20px;
    }
    .hero-content h1 .accent { color: var(--blue2); }

    .hero-content p {
      font-size: 1.05rem; color: var(--muted); line-height: 1.7;
      margin-bottom: 36px; max-width: 420px;
    }

    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn-primary {
      background: var(--blue); color: #fff;
      padding: 14px 28px; border-radius: 10px;
      font-weight: 700; font-size: 1rem;
      text-decoration: none; border: none; cursor: pointer;
      box-shadow: 0 4px 24px rgba(59,110,248,0.4);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,110,248,0.5); }

    .btn-outline {
      background: transparent; color: var(--white);
      padding: 14px 28px; border-radius: 10px;
      font-weight: 600; font-size: 1rem;
      text-decoration: none; border: 2px solid rgba(255,255,255,0.3);
      cursor: pointer; transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

    .hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
    .hero-logo {
    width: min(1080px, 80vw);
    height: auto;
    display: block;
    max-width: 100%;
}
    .eyebrow {
      font-size: .8rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--blue2); margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800; color: #1e293b; line-height: 1.25;
    }

    .section-title.light { color: var(--white); }

    #servicos { background: var(--light-bg); padding-bottom: 5%;}

    .servicos-header {
       padding-top: 5%;
       text-align: center; margin-bottom: 48px; 
      }
    
    .cards-grid {
      display: grid;
      padding: 0px 25px;
      grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
      gap: 16px; margin: 10px auto-fit;
    }
    @media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

    .card {
      background: var(--card-bg); border-radius: 16px;
      padding: 32px 28px; border: 1px solid #e2e8f0;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      transition: transform .25s, box-shadow .25s;
    }
    .card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(59,110,248,0.12); }

    .card-icon { margin-bottom: 20px; }
    .card-icon svg { width: 48px; height: 48px; }

    .card h3 { font-size: 1.05rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
    .card p  { font-size: .92rem; color: #64748b; line-height: 1.6; }

    .card-rule { width: 36px; height: 3px; background: var(--blue); border-radius: 2px; margin-top: 20px; }

    #porque { 
      padding-top: 5%;
      background: var(--dark2); 
      padding-bottom: 5%;
    }

    .porque-header { text-align: center; margin-bottom: 56px; }

    .pilares {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0; max-width: 900px; margin: 0 auto 56px;
      border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden;
    }

    .pilar {
      padding: 36px 24px; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .pilar:last-child { border-right: none; }

    .pilar-icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(59,110,248,0.15); border: 1px solid rgba(59,110,248,0.3);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
    }
    .pilar-icon svg { width: 26px; height: 26px; color: var(--blue2); }

    .pilar h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
    .pilar p  { font-size: .85rem; color: var(--muted); line-height: 1.55; }

    .cta-banner {
      max-width: 900px; margin: 0 auto;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px; padding: 28px 36px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
      flex-wrap: wrap;
    }
    .cta-banner-left { display: flex; align-items: center; gap: 18px; }
    .cta-banner-left svg { width: 36px; height: 36px; flex-shrink: 0; }
    .cta-banner-left p { font-size: 1rem; font-weight: 600; color: var(--white); }
    .cta-banner-left span { font-size: .85rem; color: var(--muted); }

    #fundadora { padding-top: 5%; background: var(--dark); padding-bottom: 5%; }

    .fundadora-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center; max-width: 900px; margin: 0 auto;
    }

    .fundadora-text h2 { padding: 5px 50px; font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: var(--cyan); margin-bottom: 8px; }
    .fundadora-text .nome { padding: 5px 50px; font-size: 1.2rem; font-weight: 600; color: var(--muted); margin-bottom: 24px; }
    .fundadora-text p { padding: 5px 25px; font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }

    .fundadora-photo {
      display: flex; justify-content: center;
    }
    .fundadora-photo img {
      width: 100%; max-width: 320px; border-radius: 20px;
      object-fit: cover;
    }
    .photo-placeholder {
      width: 280px; height: 340px; border-radius: 20px;
      background: var(--dark3); border: 2px dashed rgba(255,255,255,0.1);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: var(--muted); font-size: .85rem; gap: 10px;
    }

    #sobre { padding-top: 5%; background: var(--card-bg); padding-bottom: 5%; }

    .sobre-inner {
      max-width: 1000px; margin: 0 auto;
      display: flex; align-items: center; gap: 48px;
      background: var(--card-bg); border-radius: 20px;
      padding: 40px; border: 1px solid #e2e8f0;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      flex-wrap: wrap;
    }

    .sobre-logo-circle {
      width: 140px; height: 140px; border-radius: 50%;
      background: #0a1530; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }

    .sobre-text { flex: 1; min-width: 200px; }
    .sobre-text .eyebrow { color: var(--blue); }
    .sobre-text h2 { font-size: 1.3rem; font-weight: 700; color: #1e293b; margin-bottom: 12px; }
    .sobre-text p  { font-size: .93rem; color: #64748b; line-height: 1.7; margin-bottom: 10px; }

    .sobre-stats {
      display: flex; gap: 0; border-left: 1px solid #e2e8f0;
      padding-left: 40px; flex-shrink: 0;
    }

    .stat {
      padding: 0 28px; border-right: 1px solid #e2e8f0; text-align: center;
    }
    .stat:last-child { border-right: none; }
    .stat-plus { font-size: 1.5rem; font-weight: 800; color: var(--blue); }
    .stat h4    { font-size: .9rem; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
    .stat p     { font-size: .8rem; color: #64748b; }

    #projetos {
      padding: 5%;
      background: var(--dark3);
      position: relative; overflow: hidden;
    }

    .projetos-inner {
      gap: 48px; align-items: center; max-width: 1000px; margin: 0 auto;
    }

    .projetos-text .eyebrow { color: var(--blue2); }
    .projetos-text h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; color: var(--white); margin-bottom: 20px; }
    .projetos-text h2 .accent { color: var(--blue2); }
    .projetos-text p  { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }

    .projetos-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .feat { display: flex; gap: 14px; align-items: flex-start; }
    .feat-icon {
      width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
      background: rgba(59,110,248,0.15); border: 1px solid rgba(59,110,248,0.2);
      display: flex; align-items: center; justify-content: center;
    }
    .feat-icon svg { width: 20px; height: 20px; color: var(--blue2); }
    .feat h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .feat p  { font-size: .82rem; color: var(--muted); line-height: 1.5; }

    .projetos-visual {
      border-radius: 16px; overflow: hidden; position: relative;
      background: var(--dark2); border: 1px solid rgba(255,255,255,0.08);
      min-height: 300px; display: flex; align-items: center; justify-content: center;
    }
    .projetos-visual-placeholder {
      color: var(--muted); text-align: center; padding: 40px;
    }
    .projetos-visual-placeholder svg { width: 64px; height: 64px; margin-bottom: 12px; opacity: .4; }

    .logos-grid {
      display: flex; justify-content: center; align-items: center;
      gap: 48px; flex-wrap: wrap; max-width: 900px; margin: 0 auto 48px;
    }
    .logo-item {
      padding: 16px 24px; border: 1px solid #e2e8f0; border-radius: 12px;
      color: #64748b; font-size: .9rem; font-weight: 600;
      min-width: 140px; text-align: center;
    }


    #aviso { padding: 3%; background: var(--dark2); }

    .aviso-header { text-align: center; margin-bottom: 48px; }
    .aviso-header h2 {
      font-size: clamp(1.8rem,4vw,3rem); font-weight: 900;
      color: var(--white); letter-spacing: .05em;
      display: flex; align-items: center; justify-content: center; gap: 16px;
    }
    .aviso-header p { color: var(--muted); margin-top: 16px; font-size: 1rem; max-width: 680px; margin-left: auto; margin-right: auto; }
    .aviso-header p strong { color: var(--white); }
    .aviso-header p .c { color: var(--blue2); }
    .aviso-header p .m { color: var(--purple); }

    .aviso-sep { width: 200px; height: 1px; background: linear-gradient(90deg,transparent,var(--blue2),transparent); margin: 24px auto; }

  .aviso-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 22px 50px;
  }

    @media (max-width: 768px) {
    .aviso-cards {
        padding: 22px 20px;
    }
  }
    .aviso-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px; padding: 28px 24px;
    }
    .aviso-card-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(59,110,248,0.15); border: 1px solid rgba(59,110,248,0.2);
      display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    }
    .aviso-card-icon svg { width: 22px; height: 22px; color: var(--blue2); }
    .aviso-card h3 { font-size: .95rem; font-weight: 700; color: var(--blue2); margin-bottom: 8px; }
    .aviso-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

    .aviso-note {
      max-width: 900px; margin: 0 auto 16px;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px; padding: 20px 28px;
      font-size: .88rem; color: var(--muted); line-height: 1.7;
    }
    .aviso-bullet {
      max-width: 900px; margin: 0 auto 40px;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px; padding: 20px 28px;
      font-size: .88rem; color: var(--muted); line-height: 1.7;
      display: flex; gap: 12px; align-items: flex-start;
    }
    .aviso-bullet::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      background: var(--blue2); flex-shrink: 0; margin-top: 6px;
    }

    footer {
      background: var(--dark);
      padding: 28px 5%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    footer p { font-size: .85rem; color: var(--muted); }
    footer a { color: var(--blue2); text-decoration: none; }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .hero-visual { display: none; }
      .hero-content { max-width: 100%; }

      .fundadora-grid,
      .projetos-inner { grid-template-columns: 1fr; }
      .projetos-visual { min-height: 200px; }

      .sobre-inner { flex-direction: column; }
      .sobre-stats { border-left: none; padding-left: 0; border-top: 1px solid #e2e8f0; padding-top: 24px; }

      .pilares { grid-template-columns: 1fr 1fr; }
      .pilar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

      .cta-banner { flex-direction: column; text-align: center; }
      .cta-banner-left { flex-direction: column; align-items: center; text-align: center; }

      .sobre-stats {
          flex-direction: column;
          gap: 20px;
      }

      .stat {
          border-right: none;
          border-bottom: 1px solid #e2e8f0;
          padding-bottom: 20px;
      }

      .stat:last-child {
          border-bottom: none;
      }
    }

    @media (max-width: 480px) {
      .pilares { grid-template-columns: 1fr; }
      .projetos-features { grid-template-columns: 1fr; }
      .hero-buttons { flex-direction: column; }
      .btn-primary, .btn-outline { text-align: center; }
    }