
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
  }

  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
   /* font-family: 'Segoe UI', sans-serif;*/
    background-color: #f9f9f9;
    color: #333;
  }

  @font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-weight: 700;
  font-size: 48px;

}

p {
  font-weight: 400;
  font-size: 1rem;

}

  nav.navbar {
    background-color: #4f46e5 !important;
  }

  nav.navbar .navbar-brand img {
    filter: brightness(0) invert(1);
  }

  header {
    min-height: 100vh;
    padding-top: 70px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
   /*background: linear-gradient(to right top, #3b82f6, #6366f1 39%, rgb(148, 237, 240));*/
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
  }

  header img {
    max-width: 230px;
    height: auto;
  }

  .header-content {
    max-width: 600px;
  }

  .header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }

  .header-content p {
    font-size: 1.3rem;
    

  }

  .cta-button {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    background-color: white;
    color: #4f46e5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .cta-button:hover {
    transform: scale(1.05);
    background-color: #e0e0ff;
    color: #3b82f6;
  }

  section {
    padding: 60px 20px;
    text-align: center;
   
  }

  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .service {
      background: 
      white;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .service h3 {
    margin: 15px 0 10px;
  }

  .cta-section {
    background-color: #333;
    color: white;
  }

  footer {
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
  }
  

  dotlottie-wc {
    /*
    min-width: 300px;
    height: 500px;
    background: transparent !important;*/
    mix-blend-mode: lighten; /* Alternativa: 'screen', 'overlay', 'soft-light' */
    
  }



.navbar-toggler svg {
  transition: transform 0.2s ease;
}

.navbar-toggler:hover svg {
  transform: scale(1.2);
  stroke: #fff;
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }

  .whatsapp-float:hover {
    background-color: #1ebd5b;
  }




  .contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  .contact-form button.cta-button {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button.cta-button:hover {
    background-color: #1b5e20;
  }
  
  .nav-link.active {
    color: #fff;
   /* background-color: #0d6efd;*/
    border-radius: 5px;
    padding: 5px 10px;
  }
  