/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #333;
  background-color: #fff;
}

  ::-webkit-scrollbar{
    width: 8px;
  }
  ::-webkit-scrollbar-thumb{
    background-color: #4C4999;

    
  }

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 35px;
  margin-right: 10px;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
}

.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 300;
  transition: color 0.3s;
  font-size: 13px;
}

.menu a:hover {
  color: #4C4999;
  text-decoration: underline;
  transition-duration: 0.5s;
}

.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.btn-login {
      background-color: transparent;
      border: 1px solid #333;
      padding: 7px 16px;
      border-radius: 5px;
      color: #333;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .btn-login:hover {
      background-color: #4C4999;
      color: white;
      border: none;
    }


/* Header */
.header {
  background-color: #737373;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Grid de Serviços */
.services {
  padding: 60px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.card img {
  width: 60px;
  margin-bottom: 20px;
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #004aad;
}

.card p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.card a {
  color: #004aad;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.card a:hover {
  color: #002d75;
}

/* Footer */
.footer {
  background-color: #f2f2f2;
  padding: 50px 20px 20px;
  font-size: 11px;
  color: #333;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}
.footer-column img{

  width: 128px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #0078d4;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.footer-left {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-left img{
  width: 24px;

}
.footer-left a:hover {
  
  transition-duration: 0.5s;
  margin-top: -10px;
  
}

.footer-left p {
  width: 100%;
  margin-top: 10px;
  color: #666;
}

.container-fim{
  background-color: #333;
  color: #F5F5F5;
  font-size: 10px;
  text-align: center;
  padding: 10px;
}
/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 65px;
    right: 20px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .menu.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
 

  .whatsapp-float {
    position: fixed;
    bottom: 0px;

    right: 10px;
   background-color: #25d366;
    border: 0.5px solid rgba(255, 255, 255, 0.533);
    text-decoration: none;
    background-position: center ;
    border-radius: 10px 10px 0px 0px ;
    width: 200px;
    height: 50px;
    color: white;
    font-weight: 200;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float i {
    margin-top: 15px;
  }
/* Ícone do WhatsApp via Font Awesome */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
