.text-section {
  padding: 60px 0;
}

.text-section .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.text-section .col-left,
.text-section .col-right {
  flex: 1;
  min-width: 280px;
  padding: 20px;
}

.text-section .col-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-section .col-left p {
  font-size: 16px;
  margin-bottom: 20px;
}

.text-section .col-right .item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  background: #fff;
  padding: 15px 20px;
  padding-left: 60px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.text-section .col-right .item:last-child {
  margin-bottom: 0;
}

.text-section .col-right .item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.text-section .col-right .item p {
  margin: 5px 0 0;
}

.text-section .col-right .item .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contenedor del icono */
.text-section .icon {
  width: 70px; /* tamaño cuadrado */
  height: 70px;
  border-radius: 20px; /* esquinas redondeadas */
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(15deg); /* rota el cuadrado */
  flex-shrink: 0;
  position: absolute;
  left: -32px;
}

/* Ajusta el SVG dentro */
.text-section .icon svg {
  width: 35px;
  height: 35px;
  fill: #fff; /* icono blanco */
  transform: rotate(-45deg); /* compensa la rotación del contenedor */
}

.text-section .item:nth-child(1) .icon {
  transform: rotate(15deg);
}

.text-section .item:nth-child(2) .icon {
  transform: rotate(-15deg);
}

.text-section .item:nth-child(3) .icon {
  background: #20c997; /* verde/teal */
}

@media (max-width: 768px) {
  .text-section {
    padding: 30px 0;
  }

  .text-section .icon {
    position: relative;
    left: 0px;
  }
  .text-section .col-left p {
    font-size: 13px;
  }
  .text-section .col-left,
  .text-section .col-right {
    padding: 0px;
    width: 100%;
  }
  .text-section .col-right .item {
    flex-direction: column;
    padding: 10px;
    justify-content: center;
    align-items: center;
  }
  .text-section .icon {
    width: 65px;
    height: 65px;
  }
}
