@media screen and (max-width: 1200px) {
    /*&#8595; menu-mobile &#8595;*/
    .menu-toggle{
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a0f0f;
        padding: 15px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }

    nav a {
        justify-content: center;
    }
    /*&#8593; menu-mobile &#8593;*/
}

@media screen and (max-width: 768px) {

    /*&#8595; bot�o do whatsapp &#8595;*/
    .whatsapp-button {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-button img {
        width: 28px;
        height: 28px;
    }

    .whatsapp-options {
        right: 30px;
        bottom: 85px;
    }

    .whatsapp-options a {
        font-size: 13px;
        padding: 8px 12px;
    }

    /*&#8593; bot�o do whatsapp &#8593;*/

    /*&#8595; footer &#8595;*/
    footer {
        padding: 10px 20px;
        /* diminui padding lateral */
    }

    .top-footer {
        flex-direction: column;
        /* empilha os itens verticalmente */
        padding: 0 10px;
        gap: 10px;
        /* espa�amento entre os itens */
    }

    .top-footer p {
        font-size: 18px;
        /* diminui a fonte para caber melhor */
        text-align: center;
    }

    .top-footer i {
        font-size: 20px;
    }

    /*&#8593; footer &#8593;*/
}




/* ========================================
   MEDIA QUERIES - RESPONSIVIDADE
======================================== */

/* Tablets */
@media (max-width: 1024px) {
  .branco {
    padding: 40px 20px 30px;
  }

  .video-wrapper {
    max-width: 450px;
  }

  .text-content {
    padding: 30px;
  }

  .differential-image {
    flex: 0 0 200px;
    height: 160px;
  }
}

/* Smartphones Grandes */
@media (max-width: 768px) {
  nav {
    margin-right: 20px;
  }

  .branco {
    padding: 30px 15px 20px;
  }

  .video-container {
    padding: 0 15px;
  }

  .video-wrapper {
    max-width: 400px;
  }

  .text-content {
    padding: 25px;
    border-radius: 12px;
  }

  .text-content p {
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .differential-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-top: 20px;
    padding: 18px;
  }

  .differential-image {
    flex: none;
    width: 100%;
    max-width: 300px;
    height: 180px;
  }

  .mission-section,
  .vision-section,
  .values-section {
    margin-top: 20px;
    padding: 18px;
  }

  .clients-section {
    margin-top: 20px;
  }

  .values-section p {
    margin-bottom: 10px;
  }

  footer {
    padding: 10px 50px;
  }
}

/* Smartphones Pequenos */
@media (max-width: 480px) {
  header {
    padding: 12px 20px;
  }

  nav {
    margin-right: 10px;
    gap: 15px;
  }

  .branco {
    padding: 25px 10px 20px;
  }

  .video-container {
    padding: 0 10px;
  }

  .video-wrapper {
    max-width: 320px;
  }

  .text-content {
    padding: 20px;
    border-radius: 10px;
  }

  .text-content h2 {
    margin-bottom: 12px;
  }

  .text-content p {
    margin-bottom: 10px;
    text-align: left;
  }

  .differential-section {
    margin-top: 15px;
    padding: 15px;
    gap: 15px;
  }

  .differential-image {
    max-width: 250px;
    height: 150px;
  }

  .mission-section,
  .vision-section,
  .values-section {
    margin-top: 15px;
    padding: 15px;
  }

  .clients-section {
    margin-top: 15px;
  }

  .clients-list {
    margin: 10px 0;
  }

  .clients-list li {
    padding: 6px 12px;
    margin: 3px 0;
  }

  .values-section p {
    margin-bottom: 8px;
  }

  footer {
    padding: 10px 30px;
  }
}

/* Telas Muito Pequenas */
@media (max-width: 320px) {
  header {
    padding: 10px 15px;
  }

  .video-wrapper {
    max-width: 280px;
  }

  .text-content {
    padding: 15px;
  }

  .differential-section {
    padding: 12px;
  }

  .differential-image {
    max-width: 200px;
    height: 120px;
  }

  .mission-section,
  .vision-section,
  .values-section {
    padding: 12px;
  }

  footer {
    padding: 10px 20px;
  }
}











		