/* CORREÇÃO - segunda-conexao e segunda-conexao-1 */
/* NÃO altera margin-top no mobile/tablet - só corrige laterais */

.segunda-conexao-1,
.segunda-conexao {
  box-sizing: border-box;
}

/* ===== MOBILE - só corrige laterais, preserva seu margin-top ===== */
@media only screen and (max-width: 767px) {
  .segunda-conexao-1,
  .segunda-conexao {
    width: auto !important;
    max-width: none !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    /* margin-top e margin-bottom continuam os seus originais */
    box-sizing: border-box !important;
  }
}

/* ===== DESKTOP - 15px esquerda, esticado direita ===== */
@media only screen and (min-width: 768px) {
  .segunda-conexao-1,
  .segunda-conexao {
    margin-left: 15px !important;
    margin-right: 0 !important;
    width: calc(100% - 15px) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}
