/*
========================
======================== EMPRESA
========================
*/

.company {
  margin-top: 40px;
}

.company .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 560px) {
  .company .container {
    grid-template-columns: 1fr;
  }
}

.company-item-cover {
  width: 100%;
  height: 45rem;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 560px) {
  .company-item-cover {
    height: 35rem;
  }
}

.company-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-item-desc {
  margin-top: 1.5rem;
}

@media (max-width: 560px) {
  .company-item-desc {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.company-item-desc h2 {
  color: var(--blue-normal);
  font-size: 3.2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.company-item-desc h2 strong {
  font-weight: 800;
}

.company-item-desc p {
  color: var(--grey);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 144%;
  margin-top: 1rem;
}

.company-item-desc .btn {
  background-color: var(--blue-normal);
  padding: 1.3rem 3rem;
  font-size: 1.6rem;
  color: var(--white-light);
  border-radius: 6px;
  transition: opacity 0.4s;
  width: fit-content;
  margin-top: 2rem;
}

.company-item-desc .btn:hover {
  opacity: 0.8;
}
