
    :root {
      --primary: #2f4f9d;
      --secondary: #f37d43;
      --gray: #23b6dd;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body {
      color: #333;
      line-height: 1.6;
    }
    nav.menu {
    display: flex;
    gap: 30px;
    }
    header {
    margin: auto;
    max-width: 1200px;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 2px 30px;
    display: flex;
    align-items: center;
    top: 0;
    justify-content: space-between;
    }

    header img {
    margin-block: 14px;
    height: 80px;
    }
    .link {
      color: #2f4f9d;
      padding: 12px 22px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }
      .link:hover {
      color: var(--secondary);
    }
    .link2 {
      background: var(--primary);
      color: #fff;
      padding: 12px 22px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: 0.3s;
    }
    .link2:hover {
      background: var(--secondary);
    }
    .btn {
      background: var(--primary);
      color: #fff;
      padding: 12px 22px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn:hover {
      background: var(--secondary);
    }

    .hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 24px;
    }

    /* Vídeo em background */
    .hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    }

    /* Máscara escura */
    .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    }

    /* Conteúdo */
    .hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    }

    .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    }

    .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    }

    /* SEÇÕES */
    section {
      padding: 70px 40px;
      max-width: 1200px;
      margin: auto;
    }

    section h2 {
      text-align: center;
      margin-bottom: 50px;
      font-size: 2rem;
    }

    /* PLANOS */
    .planos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .plano {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      background: #fff;
    }

    .plano h3 {
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    .plano .velocidade {
      font-size: 2rem;
      color: var(--primary);
      font-weight: bold;
      margin: 15px 0;
    }

    .plano ul {
      list-style: none;
      margin: 20px 0;
    }

    .plano ul li {
      margin-bottom: 10px;
    }

    /* DIFERENCIAIS */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .feature {
      padding: 20px;
    }

    .feature h4 {
      margin-bottom: 10px;
      color: var(--primary);
    }

    /* FAQ */
    .faq {
      max-width: 800px;
      margin: auto;
    }

    .faq-item {
      margin-bottom: 20px;
    }

    .faq-item h4 {
      margin-bottom: 5px;
      color: var(--primary);
    }

    /* FOOTER */
.footer {
    background: var(--primary);
    color: #fff;
    padding-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    max-width: 320px;
}

.footer-logo {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-social i {
  font-size: 30px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.footer-social i:hover {
    color: var(--secondary);
}

.footer-bottom {
   justify-content: center;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary);
}

.hero-conexao {
    padding: 5px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-imagem img {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    object-fit: cover;
}

.hero-conteudo {
    max-width: 520px;
}

.hero-conteudo h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.destaque {
    color: var(--secondary);
}

.hero-conteudo p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-contratar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-contratar:hover {
    background: #d94308;
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  /* HEADER MOBILE */
  header {
    flex-direction: column;
    padding: 15px 20px;
    gap: 1px;
  }

  header img {
    height: 70px;
    margin: 0 auto;
  }

  .menu-header {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
    align-items: center;
  }

  .menu-header a {
    width: 100%;
    text-align: center;
  }
    .link {
      background: var(--primary);
      color: #fff;
      padding-block: 4px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: 0.3s;
    }
    .link2 {
      background: var(--primary);
      color: #fff;
      padding-block: 4px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: 0.3s;
    }

  /* HERO MOBILE */
  .hero {
margin-inline: 20px;
height: 24vh;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  /* PLANOS */
  .planos {
    grid-template-columns: 1fr;
  }

  .plano {
    padding: 25px 20px;
  }

  .plano .velocidade {
    font-size: 1.6rem;
  }

  /* SEÇÕES */
  section {
    padding: 50px 20px;
  }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-conteudo h1 {
        font-size: 32px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
.hero-container {
    gap: 1px;
  }
}