/* importing google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

::selection {
  color: #fff;
  background: #007bff;
} /*HEADER INÍCIO*/

/*---------------------------------*/
header {
  background-color: #333;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

nav ul li a i {
  margin-right: 5px;
}

/* Styles for mobile screens */
/* Media query to hide left and right elements on mobile */
@media only screen and (max-width: 800px) {
  .left,
  .right {
    display: none;
  }

  .aplicativo {
    width: 100%;
    float: none;
  }
}
.fit-width {
  width: 100%;
}
.highlight__hat {
  font-family: opensans, sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
  color: rgb(0, 0, 0);
  font-size: 0.75rem;
  background-color: #fa0;
  border-radius: 2px;
  padding: 4px;
  display: inline-block;
}

.container {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
}

.left,
.right {
  padding: 1%;
  display: table-cell;
  height: 100%;
  width: 20%;
  background-color: #ececec;
  border-style: solid;
  border-width: 0;
  border-left-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-color: #d3d3d3;
}

.aplicativo {
  display: table-cell;
  height: 100%;
  width: 60%;
}

.bottom {
  background-color: #ececec;
  border-style: solid;
  border-width: 0;
  border-top-width: 2px;

  border-color: #d3d3d3;
}
.panel-image-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  padding: 10px;
  margin-top: 5px;
}

.panel-image-bottom > div {
  flex: 1 1 30%;
  margin: 5px;
  display: flex;
  justify-content: center;
}

.panel-image-bottom img {
  padding: 10px;
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 15px; /* Add border-radius for rounded borders */
  transition: transform 0.3s ease; /* Add transition for smooth animation */
}

.panel-image-bottom img:hover {
  transform: scale(1.02); /* Increase scale on hover */
}

.title-link {
  font-size: 36px;
  font-weight: bold;
  color: #0a1681;

  text-align: center;
  transition: border-bottom 0.2s ease-in-out;
}
/* Styles for mobile screens */
/* Media query to hide left and right elements on mobile */
@media only screen and (max-width: 800px) {
  .left,
  .right {
    display: none;
  }

  .aplicativo {
    width: 100%;
    float: none;
  }

  .title-link {
    font-size: 28px;
  }
}
.fit-width {
  width: 100%;
}

.PIX {
  background-color: white;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  margin-left: 20px; /* Adjust the margin as needed */
  margin-right: 20px; /* Adjust the margin as needed */
}

.PIX img {
  width: 50px;
  margin-right: 10px; /* Adjust this value as needed to control the spacing between the image and text */
}

.custom-link {
  color: black;
  font-size: large;
  /* Add any other link styles here if needed */
}
