    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
    
    :root {
      --accent-gradient:linear-gradient(135deg, #a2b82e 0%, #a2b82e  100%);
      --primary-green: #c4e037;
      --primary-blue: #000648;
      --black: #000000;
      --white: #ffffff;
      --gray-light: #f5f5f5;
      --gray-medium: #666666;
      --shadow: 0 4px 20px rgba(0, 6, 72, 0.1);
      --shadow-hover: 0 8px 30px rgba(0, 6, 72, 0.15);
      --shadow: #a2b82e;
    }

    * {
      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(255, 255, 255, 0.164);
      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);
    }

    .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;
}

    .nav-menu {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      color: var(--primary-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(--accent-gradient);
      transition: left 0.3s ease;
      z-index: -1;
    }

    .nav-link:hover::before {
      left: 0;
    }

    .nav-link:hover {
      color: var(--white);
      transform: translateY(-2px);
    }

    .cta-button {
      background: var(--primary-green);
      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 4px 15px rgba(162, 184, 46, 0.3);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(162, 184, 46, 0.4);
      background: #8fa526;
    }

    /* 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-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);
    }

    .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 {
      font-size: 1.2rem;
      padding: 1rem;
      border-bottom: 1px solid var(--gray-light);
    }

    /* Hero Section with Carousel */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .carousel-slide.active {
      opacity: 1;
    }

   .carousel-slide:nth-child(1) {
  background-image: url('../img/img-index/slide1.jpg'); /* coloque o caminho correto */
  background-size: cover;
  background-position: center;
}

.carousel-slide:nth-child(2) {
  background-image: url('../img/img-index/slide2.png');
  background-size: cover;
  background-position: center;
}

.carousel-slide:nth-child(3) {
  background-image: url('../img/img-index/slide3.jpg');
  background-size: cover;
  background-position: center;
}


    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.664);
      z-index: 1;
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: var(--primary-green);
      z-index: 2;
      max-width: 900px;
      padding: 18rem 2em 10rem;
    }

    .hero-title {
      font-size: clamp(3rem, 1vw, 0.2rem);
      font-weight: 1400;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease-out 0.5s forwards;
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.9);
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease-out 0.7s forwards;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-green);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateY(30px);
      animation: slideUp 1s ease-out 0.9s forwards;
      transition: all 0.3s ease;
    }

    .hero-cta:hover {
      color: var(--white);
      transform: translateX(10px);
    }

    .hero-cta::before {
      content: "→";
      margin-right: 0.5rem;
      transition: transform 0.3s ease;
    }

    .hero-cta:hover::before {
      transform: translateX(5px);
    }

    /* Carousel Indicators */
    .carousel-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: var(--white);
      transform: scale(1.2);
    }

    /* Section Styles */
   .section {
  padding: 3rem 1rem;  /* Margens laterais para o mobile e desktop */
  width: 100%;
}




    .container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 1rem;
      text-align: center;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: var(--gray-medium);
      text-align: center;
      max-width: 800px;
      margin: 0 auto 3rem;
    }

    /* Why ComViver Section */
    .why-section {
      background: var(--gray-light);
    }

   /* seçao*/
      /* Differentials Section */
    .differentials {
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  width: 100%;
}

  

    .differentials-title {
      text-align: center;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 3rem;
      color: var(--text-primary);
      padding: 3rem 1rem; 
    }

    .differentials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .differential-card {
      background: var(--primary-blue);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2.5rem;
      text-align: center;
      transition: all 0.4s ease;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
    }

    .differential-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--accent-gradient);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .differential-card:hover::before {
      transform: scaleX(1);
    }

    .differential-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
      border-color: rgba(102, 126, 234, 0.3);
    }

    .differential-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      display: block;
    }

    .differential-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--primary-green);
    }

    .differential-description {
      color: var(--gray-light);
      line-height: 1.6;
      font-size: 1rem;
    }



    /* Solutions Section */
    .solutions-section {
      text-align: center;
    }

    .solutions-intro {
      font-size: 1.1rem;
      color: var(--gray-medium);
      max-width: 700px;
      margin: 0 auto 2rem;
      line-height: 1.8;
    }

    .solutions-cta {
      margin-bottom: 3rem;
    }

    .solutions-cta-text {
      color: var(--primary-green);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .btn-primary {
      background: var(--primary-blue);
      color: var(--white);
      padding: 1rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: inline-block;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: #000545;
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    /* Animations */
    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 0.3;
      }
      50% {
        transform: scale(1.1);
        opacity: 0.1;
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }


/* Base geral - Mobile First */

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.nav-menu {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
}

/* Hero Section Mobile */
.hero-content {
  text-align: center;
  padding: 1rem;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 4vw, 1.4rem);
  margin-bottom: 1rem;
}

@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;
  }
}

/* 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(--gray-light);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--shadow);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-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: 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;
}

.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-floating:hover {
  background-color: #1ebe5b;
  transform: scale(1.05);
}

