/* 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;
    }


/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #e6f1f9, #ffffff);
  padding: 100px 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 50px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero .btn {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background-color: #0067b8;
  color: white;
}

.btn-primary:hover {
  background-color: #005a9e;
}

.btn-secondary {
  border: 2px solid #0067b8;
  color: #0067b8;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
}


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}



.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: -1;
}

/* FAQ */
    /* FAQ */

.faq-section h1{

  margin-block: 5%;
}
.faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px;
}

.faq-question h3 {
  font-size: 1.2rem;
}

.toggle-icon {
  font-size: 1.5rem;
  color: #4C4999;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all 0.4s ease;
  background-color: #f4f6f8;
}

.faq-answer p {
  padding: 15px 0;
}

/* Ativo */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}
/* 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');
