@charset "utf-8";
/* CSS Document */

.caixa-logo-operadora {
      margin: 0;
      padding: 40px 20px;
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
     /* background-color: #f7f7f7;*/
	 margin-bottom: -175px;
    margin-top: -50px;
    }

    .container-logo-operadora {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      justify-content: center;
    }

    .box-link-logo-operadora {
      display: block;
      text-decoration: none;
      width: calc((100% - 20px * 1) / 2); /* 2 por linha mobile */
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }

    .box-link-logo-operadora:hover {
      transform: scale(1.05);
    }

    .box-logo-operadora {
      background-color: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      height: 165px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .box-logo-operadora img {
      max-height: 100%;
    	max-width: 100%;
      object-fit: contain;
    }

    /* Desktop: 5 por linha */
    @media (min-width: 768px) {
      .box-link-logo-operadora {
        width: calc((100% - 20px * 4) / 5); /* 5 colunas */
      }
    }