/* =======================
   CENTRADO ABSOLUTO Y SEGURO
   ======================= */
.contenedor-empresasgrupo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.contenedor-empresasgrupo > section {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

/* =======================
   LISTA DE EMPRESAS
   ======================= */
.empresas-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
  width: 80% ;

  /* Claves del centrado */
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  list-style: none !important;
  justify-content: center !important;
  align-items: start !important;
  text-align: left !important;
}

/* =======================
   BLOQUE DE EMPRESA
   ======================= */
.empresa-bloque {
  background: var(--bg-color);
  border-radius: 0rem 0 4rem 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* =======================
   VIDEO
   ======================= */
.empresa-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.empresa-img .empresa-corchete {
  position: absolute;
  left: 0;
  width: 100%;
  height: 36px;
  padding: 0 5%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: 10;
  pointer-events: none;
  opacity: 1;
}

.empresa-img .empresa-corchete-top {
  top: 12px;
}

.empresa-img .empresa-corchete-bottom {
  bottom: 12px;
  top: auto;
  transform: rotate(180deg);
}

.empresa-img video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 0rem;
  border-bottom-right-radius: 0rem;
  z-index: 1;
}

/* =======================
   TEXTO
   ======================= */
.empresa-text {
  flex: 1;
  background: var(--bg-color);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.empresa-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.empresa-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* =======================
   BOTÓN
   ======================= */
.empresa-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: white;
  color: var(--bg-color);
  font-weight: 700;
  border-radius: 50px;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.empresa-link:hover {
  opacity: 0.8;
}

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 1200px) {
  .empresas-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    width: 90% !important;
  }
}

@media (max-width: 768px) {
  .empresas-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .empresa-text {
    text-align: center;
    align-items: center;
  }

  .empresa-logo {
    width: 120px;
  }
}

