:root {
  --gray: #494949;
  --botones: #0A939E;
  --naranja: #FF7C43;
  --titulos: #0A6E9F;
  --sm: 14px;
  --md: 16px;
  --lg: 28px;
}

.pagina7 {
  background: linear-gradient(to right, #d6d6d6, #e6e6e6);
  padding: 60px 20px;
}

.contenedor7 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: auto;
  gap: 40px;
}

.izquierda7 {
  flex: 1 1 450px;
  text-align: center;
}

.titulo7 {
  color: var(--titulos);
  font-size: 40px;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
}

.main_image7 {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.derecha7 {
  flex: 1 1 450px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.bloque7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bloque7 img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.bloque7 p {
  font-size: 20px;
  color: #333;
  margin: 0;
  max-width: 200px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .derecha7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .titulo7 {
    font-size: 28px;
  }

  .bloque7 img {
    width: 40px;
    height: 40px;
  }

  .bloque7 p {
    font-size: 14px;
  }
}
