
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
    
    :root {
      --primary-blue: #000648;
      --accent-green: #c4e037;
      --black: #000000;
      --white: #ffffff;
      --gray-light: #f8f9fa;
      --gray-medium: #6c757d;
      --gradient-primary: linear-gradient(135deg, #a2b82e 0%, #a2b82e 100%);
      --gradient-accent: linear-gradient(135deg, #a2b82e 0%, #a2b82e 100%);
      --gradient-overlay: linear-gradient(135deg, rgba(0, 6, 72, 0.9) 0%, rgba(162, 184, 46, 0.1) 100%);
      --shadow-primary: 0 10px 40px rgba(0, 6, 72, 0.3);
      --shadow-accent: 0 10px 40px rgba(162, 184, 46, 0.3);
      --glass-bg: rgba(255, 255, 255, 0.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--gray-light);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 6, 72, 0.1);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: var(--shadow-primary);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: transform 0.3s ease;
      display: flex;
  align-items: center;
  height: 50px; /* ou o tamanho que preferir */

    }
.logo img {
  height: 70px;
  margin-right: 20px;
}
    .logo:hover {
      transform: scale(1.05);
    }

    .nav-menu {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      color: var(--accent-green);
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--gradient-primary);
      transition: left 0.3s ease;
      z-index: -1;
    }

    .nav-link:hover::before {
      left: 0;
    }

    .nav-link:hover {
      color: var(--white);
      transform: translateY(-2px);
    }

    .nav-link.active {
      background: var(--gradient-primary);
      color: var(--gray-light);
    }

    .cta-button {
      background: var(--gradient-accent);
      color: var(--white);
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(162, 184, 46, 0.3);
      background: #8fa526
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 50px rgba(162, 184, 46, 0.4);
    }

  /* Mobile Menu */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 0.5rem;
    }

    .mobile-menu-toggle span {
      width: 25px;
      height: 3px;
      background: var(--accent-green);
      margin: 3px 0;
      transition: 0.3s;
      border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }

    /*menu mobile*/
    .mobile-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: var(--white);
      display: flex;
      flex-direction: column;
      padding: 2rem;
      gap: 1.5rem;
      transition: left 0.3s ease;
      box-shadow: var(--shadow);
    }
    

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu .nav-link {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(162, 184, 46, 0.2);
      font-size: 1.1rem;
    }


   .hero {
      min-height: 8vh;
      display: flex;
      margin: 0 auto;
      text-align: center;
     
 
      padding: 11rem 2em 10rem;
       max-width: 1400px;
    }

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* fundo */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero .fade-in,
.hero .floating-element,
.hero .hero-title,
.hero .hero-subtitle {
  position: relative;
  z-index: 1; /* acima da imagem */
}

    .hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.116); /* escurece a imagem */
  z-index: 1; 
}
/*.hero > * {
  position: absolute;
  z-index: 2;
}*/


   .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.9; /* ajuste conforme necessário */
}


    @keyframes bgMove {
      0% { background-position: 0% 0%; }
      100% { background-position: 100% 100%; }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      height: 100%;
      width: 100%;
      display: block;
      flex-direction: column;
      justify-content: center; /* centraliza verticalmente */
      align-items: center;     /* centraliza horizontalmente */
      text-align: center;
      padding: 10rem; /* opcional: evita que encoste nas bordas em telas pequenas */
      box-sizing: border-box;    
}

   .hero-title {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 900;
      margin-bottom: 1.5rem;
      background: var(--accent-green);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInUp 1s ease-out;
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      margin-bottom: 2rem;
      opacity: 0.9;
      animation: fadeInUp 1s ease-out 0.2s both;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Elements */
    .floating-element {
      position: absolute;
      border-radius: 50%;
      background: #ffffff00;
      opacity: 0.1;
      animation: float 8s ease-in-out infinite;
    }

    .floating-element:nth-child(1) {
      width: 100px;
      height: 100px;
      top: 15%;
      left: 10%;
      animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
      width: 60px;
      height: 60px;
      top: 70%;
      right: 15%;
      animation-delay: 3s;
    }

    .floating-element:nth-child(3) {
      width: 80px;
      height: 80px;
      bottom: 20%;
      left: 20%;
      animation-delay: 6s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
      50% { transform: translateY(-30px) rotate(180deg); opacity: 0.2; }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Content Sections */
    .section {
      padding: 1rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: clamp(3rem, 1vw, 0.2rem);
      font-weight: 1400;
      margin-bottom: 0rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
    }
.section-title {
  text-align: center;
}

    .section-content {
      font-size: 1.2rem;
      color: var(--gray-medium);
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    /* History Section */
    .history {
      background: var(--gray-light);
      position: relative;
      overflow: hidden;
    }

    .history::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(0,6,72,0.05)"/><circle cx="80" cy="80" r="2" fill="rgba(162,184,46,0.05)"/></svg>');
      background-size: 50px 50px;
    }
  
    .nossa-historia {
      background-color: #f7f7f7; /* ou o tom que preferir */
      width: 100%;
      padding: 60px 0;
    }


    .timeline {
      position: relative;
      width: 95%;
      margin: 4rem auto 0;
      overflow-x: hidden;
  box-sizing: border-box;
    }

    .timeline-item {
      background: var(--white);
      border-radius: 20px;
      padding: 1rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(0, 6, 72, 0.1);
      border-left: 5px solid var(--accent-green);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -5px;
      width: 5px;
      height: 100%;
      background: var(--gradient-accent);
      transform: scaleY(0);
      transition: transform 0.6s ease;
    }

    .timeline-item:hover::before {
      transform: scaleY(1);
    }

    .timeline-item:hover {
      transform: translateX(10px);
      box-shadow: 0 20px 50px rgba(0, 6, 72, 0.15);
    }

    .timeline-year {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--primary-blue);
      margin-bottom: 1rem;
    }

    .timeline-content h3 {
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--primary-blue);
      margin-bottom: 1rem;
    }

    .timeline-content p {
      color: var(--gray-medium);
      line-height: 1.7;
    }

    /* Mission Vision Values */
    .mvv-section {
      background: var(--primary-blue);
      color: var(--gray-medium);
      position: relative;
      overflow: hidden;
    }
    .secao-mvv {
  background-color: #000648; /* cor escura que tá no seu bloco */
  padding: 80px 0;
  width: 100%;
}

.conteudo-central {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
  

    .mvv-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
     }


    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(3px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
      position: relative;
      z-index: 2;
    }

    .mvv-card {
      background: var(--glass-bg);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      backdrop-filter: blur(20px);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .mvv-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-accent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .mvv-card:hover::before {
      transform: scaleX(1);
    }

    .mvv-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(162, 184, 46, 0.3);
    }

    .mvv-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: var(--gradient-accent);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      transition: all 0.4s ease;
    }

    .mvv-card:hover .mvv-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .mvv-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--white);
    }

    .mvv-content {
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
    }

    .values-list {
      list-style: none;
      text-align: left;
    }

    .values-list li {
      margin-bottom: 0.8rem;
      position: relative;
      padding-left: 1.5rem;
    }

    .values-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent-green);
      font-weight: bold;
    }

    /* Clients Section */
    .clients {
      background: var(--gray-light);
    }
.clientes-atendidos {
  background-color: #f7f9fa; /* ou a cor desejada */
  width: 100%;
  padding: 80px 0;
}

.conteudo-central {
  max-width: 1050px;
  margin: 0 auto;
  padding: 80px 0px;
}
   .clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Sempre 3 colunas fixas */
  gap: 1rem; /* Reduzido para deixar os cards mais juntos */
  max-width: 960px; /* opcional, pra centralizar e controlar largura total */
  margin: 3rem auto 0 auto; /* centraliza horizontalmente */
}

    .client-badge {
      background: var(--white);
      border-radius: 15px;
      padding: 2rem;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 6, 72, 0.1);
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .client-badge:hover {
      transform: translateY(-5px);
      border-color: var(--accent-green);
      box-shadow: 0 15px 40px rgba(162, 184, 46, 0.2);
    }

    .client-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--primary-blue);
    }

    .client-name {
      font-weight: 600;
      color: var(--primary-blue);
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .slide-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.8s ease;
    }

    .slide-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .slide-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.8s ease;
    }

    .slide-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

@media  (min-width: 355px) and (max-width: 882px) {
  .hero-title {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
}

 .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
 .mvv-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .mvv-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .clients-grid{
    display: grid;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  .whatsapp-floating {
    bottom: 66px;  /* Sobe o botão para não ficar encostado no rodapé */
    right: 15px;
    width: 50px;
    height: 50px;
  }
}

   /* Mobile Responsiveness */
    @media (max-width: 400px) {
     .hero-content {
    font-size: 3px;
    text-align: center;
  }
  .hero-title {
  font-size: 1.8rem;
  margin: 0 0 1rem 0;
}

 .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 0rem;
  line-height: 1.4;
}
  .nav-container {
    padding: 5%;
    max-width: 100%;
  }
 
  .mvv-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .mvv-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .clients-grid{
    display: grid;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
}
 /* Responsive Design */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
 
      .client-badge {
        border-radius: 15px;
         padding: 0.2rem;
      }
        .mobile-menu-toggle {
        display: flex;
        .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      .mobile-menu-toggle {
        display: flex;
      }
       
      .conteudo-central {
      padding: 0px 0px
      
      }
       .mvv-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .mvv-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .clients-grid{
    display: grid;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
       .timeline {
      position: relative;
      max-width: 300px;
      margin: 4rem auto 0;
    }
      .timeline-item:hover {
        transform: translateY(-5px);
      }
    }
  }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--gray-light);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gradient-primary);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--accent-green);
    }

.footer {
  background-color: #000648;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  gap: 40px;
}

.footer-about h3 {
  color: #a2b82e;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-about p {
  color: #bbb;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  color: #a2b82e;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #F5771D;
}

.footer-contact p {
  color: #bbb;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  
      .features-grid {
        grid-template-columns: 1fr;
      }

      .visual-element {
        width: 250px;
        height: 250px;
      }

      .visual-element::before {
        width: 300px;
        height: 300px;
      }

      .visual-element::after {
        width: 350px;
        height: 350px;
      }

      .hero-content {
        padding: 0rem;
        margin: 10px 0;
      }

      .carousel-indicators {
        bottom: 20px;
      }
    }
  
.whatsapp-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-floating:hover {
  background-color: #1ebe5b;
  transform: scale(1.05);
}


