    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
    
    :root {
      --primary-gradient: linear-gradient(135deg, #a2b82e 0%, #a2b82e 100%);
      --secondary-gradient: linear-gradient(135deg, #000648 0%, #f5576c 100%);
      --accent-gradient: linear-gradient(135deg, #c8e436 0%, #a2b82e 100%);
      --dark-bg: #ffffff;
      --card-bg: rgba(255, 255, 255, 0.05);
      --text-primary: #ffffff;
      --text-secondary: #b3b3b3;
      --glass-bg:  #000648;
      --shadow-glow: 0 8px 32px rgba(102, 126, 234, 0.3);
      --shadow: #c4e037;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark-bg);
      color: var(--text-primary);
      overflow-x: hidden;
      line-height: 1.6;
    }

    
    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(173, 50, 50, 0);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(228, 228, 228, 0.95);
      box-shadow: var(--shadow-glow);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }
 .navbar-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

    .navbar-logo {
      font-size: 1.5rem;
      font-weight: 800;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: transform 0.3s ease;
    }

    .navbar-logo:hover {
      transform: scale(1.05);
    }

    .navbar-menu {
      display: flex;
      gap: 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::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--primary-green);
      transition: width 0.3s ease;
    }
.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: #a2b83e;
      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:  #a2b83e;
      transition: left 0.3s ease;
      z-index: -1;
    }

    .nav-link:hover::before {
      left: 0;
    }

    .nav-link:hover {
      color: var(--dark-bg);
      transform: translateY(-2px);
    }

    .cta-button {
      background: var(--shadow);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    }
 /* 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(--primary-gradient);
      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);
    }

    .mobile-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background: var(--dark-bg);
      display: flex;
      flex-direction: column;
      padding: 2rem;
      transition: left 0.3s ease;
      z-index: 0;
    }

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu .nav-link {
      font-size: 1.2rem;
      padding: 1rem;
      border-bottom: 1px solid var(--shadow);
    }
    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: 2rem;
    }
.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 {
 
  z-index: 1; /* acima da imagem */
}

    .hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* escurece a imagem */
  z-index: 1;
}
    .hero-content {
      max-width: 1000px;
      z-index: 2;
    }

    .hero-title {
      font-size: clamp(4rem, 2vw, 0.9rem);
      font-weight: 800;
      margin-bottom: 1.5rem;
      background: var(--shadow);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInUp 1s ease-out;
    }

    .hero-subtitle {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: var(--text-secondary);
      margin-bottom: 2rem;
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-description {
      font-size: 1.2rem;
      color: var(--text-secondary);
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease-out 0.6s both;
    }

    .btn-primary {
      background: var(--primary-gradient);
      color: white;
      padding: 1rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-glow);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.6s ease;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
    }

    .btn-secondary {
      background: var(--glass-bg);
      color: var(--text-primary);
      padding: 1rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    }

    /* Floating Elements */
    .floating-element {
      position: absolute;
      border-radius: 50%;
      background: #00064800;
      opacity: 0.1;
      animation: float 6s ease-in-out infinite;
    }

    .floating-element:nth-child(1) {
      width: 80px;
      height: 80px;
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
      width: 120px;
      height: 120px;
      top: 60%;
      right: 10%;
      animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
      width: 60px;
      height: 60px;
      bottom: 20%;
      left: 20%;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }

    /* Services Section */
    .services {
      padding: 8rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      font-size: clamp(1.5rem, 4vw, 4rem);
      font-weight: 700;
      margin-bottom: 1rem;
      background: var(--glass-bg);
      -webkit-background-clip: text;
      -webkit-text-fill-color:#000648;
      background-clip: text;
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.3rem;
      color: #4f4f4f;
      margin-bottom: 4rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .service-card {
      background: #000648;
      border: 1px solid #00064800;
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      transition: all 0.4s ease;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: #a2b82e;
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 40px 80px #28300441;
      border-color: #a2b82e;
    }

    /*.service-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: var(--primary-gradient);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.1) rotate(5deg);
    }*/

    .service-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .service-subtitle {
      font-size: 1.1rem;
      font-weight: 500;
      color: #00aaff;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .service-description {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Stats Section */
    .stats {
      padding: 6rem 2rem;
      background: var(--glass-bg);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      text-align: center;
    }

    .stat-item {
      transition: transform 0.3s ease;
    }

    .stat-item:hover {
      transform: scale(1.05);
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 800;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }

    .stat-label {
      font-size: 1.1rem;
      color: var(--text-secondary);
      margin-top: 0.5rem;
    }

    /* CTA Section */
    .cta-section {
      padding: 8rem 2rem;
      text-align: center;
      background: var(--primary-gradient);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
      background-size: 50px 50px;
      animation: slidePattern 20s linear infinite;
    }

    @keyframes slidePattern {
      0% { transform: translateX(0) translateY(0); }
      100% { transform: translateX(50px) translateY(50px); }
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: white;
    }

    .cta-description {
      font-size: 1.3rem;
      margin-bottom: 2.5rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .cta-button-large {
      background: white;
      color: #667eea;
      padding: 1.2rem 3rem;
      border-radius: 35px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      display: inline-block;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .cta-button-large:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
.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: 1200px;
  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  (min-width: 355px) and (max-width: 882px) {
  .hero-title {
    font-size: clamp(1.2rem, 5vw, 2rem);
    margin: 0rem 1;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .whatsapp-floating {
    bottom: 66px;  /* Sobe o botão para não ficar encostado no rodapé */
    right: 15px;
    width: 50px;
    height: 50px;
  }
}

/* Tablets até 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .nav-menu {
    display: none;
  }


  .mobile-menu-toggle {
    display: flex;
  }
}


    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .hero-content {
        padding: 0px;
      }

.section {
        padding: 4rem 1rem;
      }
      
      .hero-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin: 0rem 1;
  }


    .hero-subtitle {
    font-size: rem;
    margin-bottom: 0.3rem;
  }


      .mobile-menu-toggle {
        display: flex;
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }
.mobile-menu {
    display: flex;
  }
      .hero-content {
        padding: 0 1rem;
      }

      .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

    }
/* Tablets e Laptops até 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-menu {
    display: flex;
    gap: 1rem;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .hero-title {
    font-size: clamp(2rem, 3vw, 3rem);
  }
}
/* Laptops e Desktops acima de 1024px */
@media (min-width: 1025px) {
  .nav-menu {
    display: flex;
    gap: 2rem;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .hero-content {
    padding: 4rem 2rem;
  }
  .hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }
}

  }
    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--dark-bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary-gradient);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--shadow);
    }
.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);

  /* 🔒 Correção para overflow lateral no mobile (faixa branca) */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container, .hero, .hero-content, .section,
.floating-element, .timeline, .mvv-section {
  max-width: 100%;
  overflow-x: hidden;
}

}


  