/* Estilo base do menu */
  .header-info {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 100;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }

  .login-info {
    text-align: right;
    padding: 10px 20px;
  }
  .link-btn {
    background: #007bff;
    color: #fff;
    padding: 7px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
  }

  .link-btn:hover {
    background: #0056b3;
  }

  #menu-btn {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    margin: 10px 20px 10px 0;
  }

  .dropdown {
    position: relative;
  }

  .dropbtn {
    background: none;
    border: none;
    color: #333;
    font-size: 1rem;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 10;
    left: 0;
    top: 100%;
  }

  .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
     display: block;
  }

  .dropdown-content a {
    display: block;
    color: #333;
    padding: 12px 18px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .dropdown-content a:hover {
    background: #f0f0f0;
  }
  .dropdown-submenu {
     position: relative;
  }
  .dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

 .dropdown-submenu:hover > .dropdown-submenu-content,
    .dropdown-submenu.active > .dropdown-submenu-content {
      display: block;
  }

  /* Responsivo */
  @media (max-width: 900px) {
    .nav {
      flex-direction: column;
      align-items: flex-start;
      background: #fff;
      width: 100%;
      position: absolute;
      left: 0;
      top: 60px;
      display: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .nav.active {
      display: flex;
    }
    #menu-btn {
      display: block;
    }  
    .dropdown, .dropdown-content, .dropdown-submenu-content {
      position: static;
      min-width: 100%;
      box-shadow: none;
    }
    .dropdown-content, .dropdown-submenu-content {
      display: none;
      background: #f9f9f9;
    }
    .dropdown.active > .dropdown-content {
       display: block;
    }
    .dropdown-submenu.active > .dropdown-submenu-content {
      display: block;
    }
    .dropbtn {
      width: 100%;
      text-align: left;
      border-bottom: 1px solid #eee;
    }
  }

  /* Ajustes para mobile */
  @media (max-width: 600px) {
    .header-info {
      padding: 0;
    }
    .login-info {
      padding: 10px;
    }
    .dropbtn {
      padding: 14px 10px;
      font-size: 1rem;
    }
  }


  /* Menu Responsivo */
  .navbar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
    padding: 0 20px;
  }

  .menu-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }

  .menu-logo img {
    height: 40px;
  }

  .menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-navbar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }

  .menu-navbar li a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.2s;
  }
  .menu-navbar li a:hover {
    color: #0056b3;
  }

  /* Responsivo */
  @media (max-width: 768px) {
    .menu-toggle {
     display: block;
    }
    .menu-navbar {
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      display: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      gap: 0;
    }
    .menu-navbar.active {
      display: flex;
    }
    .menu-navbar li {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid #eee;
    }
  }

  /* Menu padrão (desktop) */
  .navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navbar ul li a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.2s;
  }

  .menuToggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
  }

  .menuToggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #007bff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Menu responsivo (mobile) */
  @media (max-width: 900px) {
    .navbar ul {
      flex-direction: column;
      background: #fff;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      display: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      z-index: 100;
    }
    .navbar ul.active {
      display: flex;
    }
    .menuToggle {
      display: flex;
    } 
  }
   /*new*/
    .process .box-container .box:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 6px 24px rgba(0,123,255,0.10);
    }
    /*endnew*/


    /*new*/main {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 2rem;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2.5rem;
      margin-bottom: 3rem;
    }
    .service-item {
      background: #44bad4;
      border-radius: 13px;
      padding: 3rem 1.6rem;
      box-shadow: 1 6px 19px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .service-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    .service-item h3 {
      margin-top: 1rem;
      margin-bottom: 0.8rem;
      color: var(--primary-color);
      font-weight: 700;
    }
   /*.services img {
   margin: 1rem 0;    
   height: 6rem;
   }*/

   /*ou*/
  .services img {
    height: 20rem;
   margin:1rem 0; 
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorção */
  }
  /*new*/
  /*endNew*/


 /* Responsivo */
    @media (max-width: 900px) {
      .slider-banner .item, .box {
        padding: 25px 10px;
      }
      .box-container {
        flex-direction: column;
        align-items: center;
      }
    }
    @media (max-width: 600px) {
      .slider-banner {
        padding: 30px 0 20px 0;
      }
      .process {
        padding: 30px 0 20px 0;
      }
      .contact {
        padding: 30px 0 15px 0;
      }
      .slider-banner h2, .process .heading, .contact .heading {
        font-size: 1.3rem;
      }
      .box {
        width: 95%;
      }
    }

    /* Apenas a primeira letra maiúscula, o resto minúsculo */
h2, h3, p {
  text-transform: lowercase;
}
h2::first-letter,
h3::first-letter,
p::first-letter {
  text-transform: uppercase;
}