*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  :root {
    --navy: #0d1b3e;
    --blue: #1a3a7c;
    --sky: #3a7bd5;
    --light-blue: #5ea8f5;
    --white: #ffffff;
    --gray-light: #f4f7fb;
    --gray: #8fa3be;
    --accent: #f7b731;
    --text: #1e2d4a;
  }

  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* HEADER */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 27, 62, 0.97);
    backdrop-filter: blur(8px);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  .logo-img {
    height: 42px;
    object-fit: contain;
    
  }

  nav { display: flex; gap: 36px; }
  nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
  }
  nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--light-blue);
    transition: width 0.3s;
  }
  nav a:hover { color: var(--white); }
  nav a:hover::after { width: 100%; }

  .header-cta {
    background: linear-gradient(135deg, var(--sky), var(--light-blue));
    color: white;
    border: none;
    padding: 10px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  .header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(58,123,213,0.5);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--navy) 0%, #0f2455 60%, #163a8c 100%);
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 60vw; height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58,123,213,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sky), var(--light-blue), transparent);
  }

  .hero-content {
    max-width: 580px;
    position: relative;
    z-index: 2;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(94,168,245,0.15);
    border: 1px solid rgba(94,168,245,0.4);
    color: var(--light-blue);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .hero h1 span {
    color: var(--light-blue);
  }
  .hero p {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 300;
  }
  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--sky) 0%, var(--light-blue) 100%);
    color: white;
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(58,123,213,0.4);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(58,123,213,0.5);
  }
  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
    color: white;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .stat {
    text-align: left;
  }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--light-blue);
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .hero-image-wrap {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 52%;
    overflow: hidden;
  }
  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
  }
  .hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy) 0%, rgba(13,27,62,0.2) 50%, transparent 100%);
    z-index: 1;
  }

  /* SOBRE */
  .sobre {
    padding: 100px 5%;
    background: var(--gray-light);
  }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .sobre-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .sobre-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5a70;
    margin-bottom: 20px;
  }
  .sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
  }
  .feature-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--sky);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .sobre-visual {
    position: relative;
  }
  .sobre-visual-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 4px;
    padding: 48px;
    color: white;
    text-align: center;
  }
  .sobre-logo {
    width: 180px;
    
    margin-bottom: 24px;
  }
  .sobre-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    margin-top: 4px;
  }
  .anos-badge {
    position: absolute;
    top: -20px; right: -20px;
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--sky), var(--light-blue));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(58,123,213,0.4);
  }
  .anos-badge .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
  }
  .anos-badge .txt {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
  }

  /* SERVIÇOS */
  .servicos {
    padding: 100px 5%;
    background: white;
  }
  .servicos-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
  }
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1200px;
  margin:40px auto;
}

.card img{
  width:100%;
  height: 340px;
  object-fit:cover;
  object-position:center;
  display:block;
}
  .card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background: white;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }
 .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}


  .card-body {
    padding: 28px;
    border-left: 3px solid var(--sky);
  }
  .card-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }
  .card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6a7a90;
  }
  .card-link {
    display: inline-block;
    margin-top: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky);
    text-decoration: none;
    border-bottom: 1.5px solid var(--sky);
    padding-bottom: 2px;
    transition: opacity 0.2s;
  }
  .card-link:hover { opacity: 0.7; }

  /* DIFERENCIAIS */
  .diferenciais {
    background: var(--navy);
    padding: 80px 5%;
    text-align: center;
  }
  .diferenciais .section-title { color: white; }
  .dif-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 48px auto 0;
  }
  .dif-item {
    padding: 32px 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: background 0.3s;
  }
  .dif-item:hover {
    background: rgba(255,255,255,0.04);
  }
  .dif-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
  }
  .dif-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-blue);
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .dif-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
  }

  /* CONTATO */
  .contato {
    padding: 100px 5%;
    background: var(--gray-light);
  }
  .contato-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .contato-info {}
  .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
  }
  .info-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--sky), var(--light-blue));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
  }
  .info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
  }
  .info-value:hover { color: var(--sky); }

  .contato-form {
    background: white;
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  }
  .form-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
  }


  /* FOOTER */
  footer {
    background: #060d1f;
    padding: 60px 5% 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand img {
    height: 38px;
    
    opacity: 0.85;
    margin-bottom: 16px;
  }
  .footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 260px;
  }
  .footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-blue);
    margin-bottom: 20px;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom {
    max-width: 1200px;
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }
  .whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 999;
    transition: transform 0.25s;
    font-size: 28px;
  }
  .whatsapp-float:hover { transform: scale(1.1); }

  @media (max-width: 768px) {
    .hero-image-wrap { display: none; }
    .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
    .cards-grid { grid-template-columns: 1fr; }
    .dif-grid { grid-template-columns: 1fr 1fr; }
    .contato-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    nav { display: none; }
  }
  /* WhatsApp CTA */
  .contato-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
  }
  .cta-whats-icon {
    width: 150px;
    height: 150px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 36px rgba(37,211,102,0.5);
    position: relative;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .cta-whats-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 48px rgba(37,211,102,0.65);
  }
  .cta-whats-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: pulse-cta 2s infinite;
  }
  @keyframes pulse-cta {
    0%   { transform: scale(1); opacity: 0.8; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
  }
  .cta-whats-icon svg {
    width: 82px;
    height: 82px;
    fill: white;
    position: relative;
    z-index: 1;
  }
  .cta-whats-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
  }
