/* Mostrar a imagem desktop como padrão */
.banner-desktop {
    display: block;
  }
  
  .banner-mobile {
    display: none;
  }

/* Ajustes para telas menores (mobile) */
@media (max-width: 768px) {
    .banner-mobile {
        display: block !important;
    }
  
    .banner-desktop {
        display: none !important;
    }
    
    /* Garantir que as imagens ocupem a largura total da tela */
    .carousel-item img {
        height: auto !important;
        width: 100% !important;
    }

    .cid-uqhC5kD5rM .carousel {
        height: auto !important;
      }

    .navbar-brand {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .navbar-nav {
        text-align: center;
    }

    .carousel-item img {
        height: auto;
        width: 100%;
    }

    .card-wrapper {
        margin-bottom: 20px;
    }

    /* Ajustar o espaçamento entre as colunas para exibição mobile */
    .media-container-row {
        flex-direction: column;
    }

    .mbr-section-btn-main {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-image {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .navbar-nav {
        text-align: center;
    }

    .carousel-item img {
        height: auto;
        width: 100%;
    }

    .card-wrapper {
        margin-bottom: 20px;
    }

    /* Ajustar o espaçamento entre as colunas para exibição mobile */
    .media-container-row {
        flex-direction: column;
    }

    .mbr-section-btn-main {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-image {
        margin-bottom: 15px;
    }
}

/* Ajustes para telas maiores (desktop) */
@media (min-width: 769px) {
    .navbar {
        padding: 1rem;
    }

    .carousel-item img {
        height: auto;
    }

    .media-container-row {
        display: flex;
        flex-wrap: nowrap;
    }

    .features-image {
        margin-bottom: 0;
    }
}
