/* 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 */
    /* Parallax Section */
.parallax-section {
  background-image: url('../asses/img/3.png');
  min-height: 700px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.parallax-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* escurece para contraste */
}

.parallax-content {
  position: relative;
  z-index: 1;
}

.parallax-content h2 {
  margin-left: 14%;
    font-weight: 700;
      font-size: clamp(48px, 4.167vw, 100px);
      line-height: 120%;
      letter-spacing: -0.04em;
    width: 46%;
    color: white;
    text-shadow: 3px 2px 7px  #23232e;
  
}

.parallax-content p {
  margin-left: 14%;
    margin-top: 2%;
    width: 46%;
    text-align: justify;
    text-shadow: 3px 2px 7px  #23232e;
    font-weight: 400;
      font-size: clamp(15px, 1vw, 24px);
      line-height: 140%;
      font-family: "Lato", sans-serif;
      margin-bottom: clamp(32px, 2.5vw, 64px);
      color: #FAFAFA;
}

.parallax-content .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #666;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.parallax-content .btn:hover {
  background-color: #4C4999;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0078d4, #005a9e);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

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

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-align: justify;
}

.btn {
  background-color: white;
  color: #0078d4;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #f1f1f1;
}

.btn-secondary {
  background-color: #0078d4;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

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

    /* Recursos */

    #recursos h2{
      margin-bottom:2% ;
      margin-left: 14.5%;
    }
 #recursos ul {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    #recursos li {
      background: #e6f1fb;
      border-radius: 15px;
      padding: 25px;
      width: 280px;
      text-align: center;
      box-shadow: 0 2px 8px rgb(0 120 212 / 0.2);
      transition: transform 0.3s ease;
    }
    #recursos li:hover {
      transform: translateY(-8px);
    }
    #recursos li img {
      width: 60px;
      height: 60px;
      
     margin-bottom: 20px;
    }
    #recursos li h3 {
      font-weight: 700;
      margin-bottom: 10px;
    }
    #recursos li p {
      font-size: 1rem;
      color: #333;
      text-align: justify;
    }

    #videos{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  #videos video {
    width: 80%;
    display: flex;
    
    border-radius: 10px;
    margin-top: 5%;
  }
 



    /* Conteúdo extra para gerar rolagem */
    .more-content {
      padding: 100px 20px;
      background: #222;
      text-align: center;
    }

    .more-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .more-content p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.2rem;
    }

     /* Produtos com carrossel */
    .products .carousel {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }
    .carousel-track-container {
      overflow: hidden;
      width: 100%;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .carousel-slide {
      min-width: 300px;
      margin-right: 20px;
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 0 10px #ddd;
      text-align: center;
      user-select: none;
    }
    .carousel-slide img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 15px;
    }
    .carousel-slide h3 {
      margin-bottom: 8px;
      color: #0078d4;
      font-weight: 700;
    }
    .carousel-slide p {
      font-size: 0.95rem;
      margin-bottom: 15px;
      color: #444;
    }
    .btn-secondary {
      background-color: #0078d4;
      color: white;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s ease;
    }
    .btn-secondary:hover {
      background-color: #005a9e;
    }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #0078d4;
      border: none;
      color: white;
      font-size: 2rem;
      padding: 5px 15px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      user-select: none;
      transition: background-color 0.3s ease;
    }
    .carousel-btn:hover {
      background-color: #005a9e;
    }
    .carousel-btn.prev {
      left: 10px;
    }
    .carousel-btn.next {
      right: 10px;
    }

/* Sections */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section.dark {
  background-color: #f5f5f5;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

.card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 15px;
}

.center-text {
  text-align: center;
  margin-top: 20px;
}

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

  .parallax-content h2 {
  margin: 0 auto;
    font-weight: 700;
      font-size: clamp(48px, 4.167vw, 100px);
      line-height: 120%;
      letter-spacing: -0.04em;
    width: 100%;
    color: white;
    text-shadow: 3px 2px 7px  #23232e;
  
}

.parallax-content p {
  margin: 0 auto;
    margin-top: 2%;
    width: 90%;
    text-align: justify;

    text-shadow: 3px 2px 7px  #23232e;
    font-weight: 400;
      font-size: clamp(15px, 1vw, 24px);
      line-height: 140%;
      font-family: "Lato", sans-serif;
      margin-bottom: clamp(32px, 2.5vw, 64px);
      color: #FAFAFA;
}
}
 

  .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');
