* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  width: 160px;
}
body {
  background: linear-gradient(
    140deg,
    #ffffff 0%,
    #ffc6a9 50%,
    #ffa070 100%
  );
  background-attachment: fixed;
  font-family: Roboto, "Open Sans", sans-serif;
}
.container {
  padding: 20px 20px;
  max-width: 780px;
  margin: 0px auto;
}
.content-empresas {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  border: 2px solid #F26724;
}

h1 {
  font-size: 20px;
  margin-bottom: 12px;
  color: rgb(51, 51, 51);
}
h2 {
  color: rgb(51, 51, 51);
}
h4 {
  color: rgb(51, 51, 51);
  margin-top: 12px;
}
main p {
  color: #5e5e5e;
  text-indent: 20px;
  line-height: 1.2;
  text-align: justify;
  font-size: 16px;
}
li {
  color: #5e5e5e;
  line-height: 1.8;
  text-align: justify;
  font-size: 16px;
  margin-left: 36px;
}
.content-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  background-color: #474747;
  border-radius: 8px;
  padding: 12px 24px;
}
.img-header{
  background-color: #fff;
  padding: 12px;
  border-radius: 1000px;
  width: max-content;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-header img {
  width: 68px;
}
.content-header li {
  list-style: none;
  margin: 0;
}
.content-header ul {
  display: flex;
  gap: 26px;
}
.content-header a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.content-header a:hover {
  color: #f26724;
}
.kd {
  border-bottom: 2px solid #9c9c9c;
}
.country {
  margin-top: 64px;
  margin-bottom: 36px;
  font-size: 20px;
  width: 100%;
  color: #243a69;
  text-align: center;
  display: flex;
  justify-content: center;
}

.company {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 3px solid #f26724;
}
.company-name {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.company-name span {
  width: 2px;
  height: 40px;
  background-color: rgb(211, 20, 20);
  transform: rotate(30deg);
}
.company p {
  margin-top: 16px;
}
.company ul {
  margin-top: 16px;
}
.company > a {
  background-color: #f26724;
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 4px;
  margin-top: 16px;
}
.btn-catalogo{
  background-color: #db3434 !important;
}
.dropdown-container {
  position: relative;
  width: 160px;
}

.custom-select {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select:after {
  content: "▾";
  font-size: 14px;
  color: #888;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 100;
  display: none;
}

.dropdown.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.dropdown-item:hover {
  background: #f26724;
  color: #fff;
}

.dropdown-item img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
}

.eng {
  display: none;
}

.content-footer {
  display: flex;
  gap: 80px;
  background-color: #474747;
  border-radius: 8px 8px 0 0;
  padding: 12px 24px;
}
.contato {
  width: 70%;
  color: #fff;
}
.content-footer h4 {
  font-size: 20px;
  color: #fff;
}
.content-footer a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.content-footer a:hover {
  color: #f26724;
}
.content-footer li {
  list-style: none;
  margin: 0;
}
.col2-footer {
  margin-left: auto;
  width: 30%;
}
.col2-footer > nav {
  margin-top: 22px;
}
.contato > div {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contato > div div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contato > div div img {
  width: 18px;
  filter: invert(100%) brightness(200%);
}
.contato > div div div {
  background-color: #f26724;
  padding: 6px;
  border-radius: 50%;
}
.footer-bottom {
  background-color: rgb(218, 218, 218);
  padding: 8px;
  border-radius: 0px 0px 8px 8px;
}
.footer-bottom p {
  color: #000;
  text-align: center;
  font-size: 12px;
}
.footer-bottom a {
  color: #f26724;
  text-decoration: none;
}

@media (max-width: 767px) {
  .content-footer {
    flex-direction: column;
    gap: 40px;
  }
  .col2-footer{
    margin-left: 0;
  }
  .content-header {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }
  .content-header ul {
    display: flex;
    gap: 40px;
    justify-content: center;
  }
  .content-header nav{
    grid-row: 2;
    grid-column: span 2;
  }
  .dropdown-container{
    margin-left: auto;
  }
}