/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0f0f1a;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    background: #0f0f1a;
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 220px;
  }
  .logo img {
    width: 80px;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
  }
  .nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  .nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
  }
  .cta {
    display: flex;
    gap: 1rem;
  }
  .btn, .btn-primary {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }
  .btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
  .btn-primary {
    background: #7a5cff;
    color: #fff;
    border: none;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header-actions a{
    text-decoration: none;
    color: white;
    font-size: 15px;
  }
  .header-actions .btn-acao-header {
    background: #fff;
    color: #000;
    padding: 0.4rem 1.6rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
  }
  .header-actions .btn-acao-header:hover {
    background: #8d95a08a;
    color: #fff;
  }
  .header-actions img {
    width: 60px;
  }

  .mobile-menu {
    display: none;
  }
  .mobile-menu li{
    list-style-type: none;
  }
  .mobile-menu a{
    text-decoration: none;
    color: white;
  }
  .icon-close {
    display: none;
  }
  .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: none;
  }
  .hamburger-btn svg {
    width: 30px;
    height: 30px;
    color: white;
  }
  
  /* Hero */
  .hero {
    position: relative;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(15,15,30,0.95) 100%);
    z-index: -1;
  }
  
  .hero-content {
    padding-top: 200px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    margin-left: 220px;
  }
  
  .hero-content h1 {
    font-size: 65px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: start;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
    text-align: start;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 7rem;
  }
  .btn-acao-hero {
    background: #fff;
    color: #000;
    padding: 0.4rem 1.6rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .btn-acao-hero:hover {
    background: #b9bdc28a;
    color: #fff;
  }
  .hero-demo {
    max-width: 1600px;
    margin: 0 220px;
  }
  .hero-demo img {
    width: 100%;
    /* max-width: 1000px; */
    border-radius: 12px;
    margin: 0 auto;
  }
  /*hero-section*/
  .hero-section {
    display: flex;
    flex-direction: column;
    margin-top: 200px;
  }
  .hero-section-p1 {
    display: flex;
    flex-direction: column;
  }
  .hero-section-p1 h1{
    font-size: 45px;
    width: 60%;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: start;
  }

  .hero-section-p1 p{
    font-size: 16px;
    width: 70%;
    color: #fff7f77a;
    text-align: start;
    margin-bottom: 20px;
  }

  .hero-section-p2 {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }

  .hero-section-p2-div {
    display: flex;
    flex-direction: column;
  }

  .hero-section-p2-div h2 {
    font-size: 16px;
    text-align: start;
  }
  .hero-section-p2-div p {
    text-align: start;
    font-size: 15px;
    color: #fff7f77a;
  }
  
  /* Botões hero */
  .btn-white {
    background: #fff;
    color: #000;
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
  }
  
  .btn-outline {
    border: 1px solid #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: transparent;
  }

  .btn-outline:hover {
    background: #142f528a;
    color: #fff;
  }

  /* Segunda Section */
  .workflow {
    padding: 100px 0;
    text-align: center;
    color: #fff;
  }
  
  .workflow-header {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    text-align: start;
  }
  
  .workflow-tag {
    color: #4da6ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.8rem;
  }
  
  .workflow h2 {
    font-size: 45px;
    width: 70%;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .workflow p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 1.5rem;
  }
  
  .btn-blue {
    background: transparent;
    color: white;
    padding: 0.4rem 1.5rem;
    border: 1px solid rgba(128, 115, 115, 0.26);
    font-size: 15px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn-blue:hover {
    background: #142f528a;
    color: #fff;
  }
  
  .workflow-image img {
    width: 100%;
    max-width: 1200px;
    border-radius: 12px;
    margin: 2rem auto 3rem;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  }
  
  .workflow-features {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
  }
  
  .feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .feature p {
    font-size: 15px;
    color: #fff7f77a;
    line-height: 1.5;
  }

  /*Terceira Section*/
  .glow-multi-section {
    position: relative;
    text-align: center;
    color: #fff;
    background: #0f0f1a;
    overflow: hidden;
    margin-top: 70px;
    margin-bottom: 170px;
  }
  
  .content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    text-align: start;
  }
  
  .glow-multi-section h2 {
    font-size: 45px;
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .btn-blue {
    background: transparent;
    color: white;
    padding: 0.4rem 1.5rem;
    border: 1px solid rgba(128, 115, 115, 0.26);
    font-size: 15px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn-blue:hover {
    background: #142f528a;
    color: #fff;
  }
  
  /*Quarta Section*/

  .file-manager {
    background: #0c0c1d;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }

  .file-manager-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    text-align: start;
  }
  
  .file-manager .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .file-manager .subtitle {
    color: #4da6ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.8rem;
  }
  
  .file-manager h2 {
    font-size: 45px;
    width: 70%;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .file-manager .btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #fff;
    border-radius: 8px;
    margin-bottom: 60px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  .file-manager .btn:hover {
    background: #fff;
    color: #0c0c1d;
  }
  
  .cards {
    display: flex;
    gap: 30px;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
  }
  
  .card {
    background: #141428;
    border-radius: 12px;
    padding: 25px;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  }

  .card h3{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .card p {
    font-size: 15px;
    color: #fff7f77a;
    line-height: 1.5;
  }
  
  .card-preview {
    background: #1e1e38;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 150px;
  }

  .card-preview img {
    width: 100%;
  }
  

  .glow-multi-section2 {
    position: relative;
    text-align: center;
    color: #fff;
    background: #0f0f1a;
    overflow: hidden;
    margin-top: 70px;
    margin-bottom: 170px;
    display: flex;
    align-items: center;
  }

  .glow-multi-section2 img {
    width: 70%;
  }
  
  .content2 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    text-align: start;
    gap: 10px;
  }
  
  .glow-multi-section2 h2 {
    font-size: 42px;
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .glow-multi-section2 .subtitle {
    color: #4da6ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.8rem;
}

  .feature h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

  .feature p {
      font-size: 15px;
      color: #fff7f77a;
      line-height: 1.5;
  }

  .glow-multi-section3 {
    position: relative;
    text-align: center;
    color: #fff;
    background: #0f0f1a;
    overflow: hidden;
    margin-top: 70px;
    margin-bottom: 170px;
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .glow-multi-section3 img {
    width: 70%;
  }
  
  .content3 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    text-align: start;
    gap: 10px;
  }
  
  .glow-multi-section3 h2 {
    font-size: 42px;
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .glow-multi-section4 {
    position: relative;
    text-align: center;
    color: #fff;
    background: #0f0f1a;
    overflow: hidden;
    margin-top: 70px;
    margin-bottom: 170px;
    align-items: center;
  }

  .glow-multi-section4 img {
    width: 100%;
    margin-bottom: 30px;
  }

  .glow-multi-section4 .subtitle {
    color: #4da6ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.8rem;
}
  
  .content4 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    text-align: start;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .glow-multi-section4 h2 {
    font-size: 42px;
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .div-feature {
    display: flex;
    justify-content: space-between;
  }
  
  
  
  /* Logos */
  .logos {
    padding: 3rem 0;
    text-align: center;
  }
  .logos-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  .logos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  /* Features */
  .features {
    padding: 5rem 0;
    background: #181828;
  }
  .features h2 {
    text-align: center;
    margin-bottom: 3rem;
  }
  .features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .feature-item {
    background: #222238;
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
  }
  .feature-item img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
  }
  .testimonials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .testimonial {
    background: #222238;
    padding: 2rem;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 500px;
    text-align: center;
  }
  
  /* CTA Final */
  .cta-final {
    background: #7a5cff;
    padding: 4rem 0;
    text-align: center;
  }
  .cta-final h2 {
    margin-bottom: 1.5rem;
  }

  /* Formulário de Contato */
.contato {
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.contato h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contato p {
  color: #bbb;
  margin-bottom: 40px;
}

.form-contato {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-contato .form-group {
  width: 100%;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #1e1e2f;
  color: #fff;
  font-size: 15px;
}

.form-contato input::placeholder,
.form-contato textarea::placeholder {
  color: #999;
}

.form-contato button {
  padding: 15px;
  border: none;
  border-radius: 25px;
  background: #4da6ff;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-contato button:hover {
  background: #1e90ff;
}

  
  /* Footer */
  .footer {
    background: #0c0c1d;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
  }
  
  .footer-logo img {
    width: 50px;
  }
  
  .footer-links {
    display: flex;
    flex: 1;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
  }
  
  .footer-column h4 {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  
  .footer-column a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s;
  }
  .footer-column a:hover {
    color: #4bb1ff;
  }
  
  .footer-bottom {
    border-top: 1px solid #2a2a40;
    margin-top: 40px;
    padding-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #aaa;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
  }
  .footer-bottom-links a:hover {
    color: #fff;
  }
  
  .footer-social a {
    color: #fff;
    margin-left: 12px;
    font-size: 16px;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #4bb1ff;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-links {
      flex-direction: column;
      gap: 30px;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  
  /* Responsivo */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
    .features-list, .testimonials-list {
      flex-direction: column;
      align-items: center;
    }
    .footer-content {
      flex-direction: column;
      gap: 1rem;
    }
  }
  