@media screen and (max-width: 992px) {
    html,
    body {
        overflow-x: hidden;
    }
    header nav {
        display: none;
        z-index: 999;
    }
    header nav .switcher .navbar-toggler {
        color: #fff;
        font-size: 24px;
    }
    header nav .collapse .navbar-nav {
        margin-left: 0 !important;
    }
    header nav .collapse .navbar-nav:nth-child(2) .buttons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        height: 150%;
        padding: 30px;
    }
    header .hero .container .col .card .row {
        flex-direction: column;
    }
    header .hero .container .col .card .row .col-md-7 {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    header .hero .container .col .card .row .col-md-5 {
        display: flex;
        justify-content: center;
    }
    main section.features .features-tab button {
        padding: 5px;
        font-size: 40px;
    }
    main section.features .features-content .content {
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    main section.features .features-content .content .row .col-md-6:nth-child(2) {
        display: flex;
        justify-content: center !important;
    }
    main section.features .features-content .content .row .col-md-6 .svg img {
        height: 200px !important;
        margin-top: 40px;
    }
    footer .container .content {
        flex-direction: column;
        justify-content: center !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .proclocalizacao-card {
      padding: 8px;
    }
  
    .proclocalizacao-toggle-hardware {
      font-size: 12px;
      padding: 6px;
    }
  
    .proclocalizacao-bandeira-img {
      width: 35px;
    }
  }


/* Media Queries para ajustar a responsividade */
@media (max-width: 1200px) {
    .plano-card {
        flex: 1 1 calc(33.333% - 40px); /* 3 cards por linha em telas médias */
    }
}

@media (max-width: 900px) {
    .plano-card {
        flex: 1 1 calc(50% - 40px); /* 2 cards por linha em telas menores */
    }
}

@media (max-width: 600px) {
    .plano-card {
        flex: 1 1 calc(100% - 40px); /* 1 card por linha em telas muito pequenas */
    }
}  