.microsoft-section {
  position: relative;
  width: 100%;
  padding: 50px 20px;
  background-color: #fff;
  overflow: hidden;
}

.microsoft-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 100px;
}

/* Columna izquierda */
.text-area {
  width: 50%;
  text-align: left;
}
.text-area img{
  margin-top: 80px;
}


.text-area h2 {
    width: 150%;
  color: #002d72;
  font-size: 2rem;
  margin-bottom: 10px;
}

.text-area p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.highlight {
  font-weight: bold;
  color: #002d72;
}



/* Columna derecha */
.versions-area {
    margin-top: 170px;
  width: 45%;
}

.icon {
  width: 80px;
  height: 150px; /* Ajusta el tamaño de la imagen */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.card {
  width: 30%; /* Cada tarjeta ocupa un tercio del ancho */
  text-align: center; /* Centra el contenido */
  display: flex;
  flex-direction: column; /* Imagen arriba, texto abajo */
  align-items: center;
}

.icon {
  width: 100%;
  height: 150px; /* Ajusta el tamaño de la imagen */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 15px; /* Espacio entre imagen y texto */
}

.card p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  text-align: center;
}



.cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.triangle-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%; /* Ocupa todo el ancho superior */
  height: 45%; /* Ocupa la mitad superior */
  background: url('panoramaAcompañamiento.webp') no-repeat center/cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%); /* Triángulo apuntando hacia abajo */
  z-index: 3; /* Encima del contenido */
}



