/* ======== Column Block Section ======== */
.column-block-section {
  background: #fff;
  padding: 0px 20px;
  text-align: center;
  color: #333;
  margin-top: 50px;
  margin-bottom: 50px;
}

.column-block-header {
  margin-bottom: 40px;
}

.column-block-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color1);
}
.column-block-section h3 {
  color: var(--neutral1);
}
.column-block-header p {
  font-size: 1rem;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
}

/* ======== Grid de columnas ======== */
.column-block-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.column-block-card {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  border-radius: 20px;
  padding: 30px 20px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column-block-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.column-block-icon {
  margin-bottom: 20px;
}
.column-block-icon svg {
  width: 120px;
  height: auto;
  color: #fff; /* blanco, o cualquier color */
}

.column-block-top {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 10px;
}

.column-block-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}
.column-block-card:nth-child(1) {
  background: linear-gradient(25deg, #0a2342, #1d3f72, #036d86) !important;
}

.column-block-card:nth-child(2) {
  /*   background: linear-gradient(135deg, #036d86, #0591a3) !important; */
  /*  background: linear-gradient(
    135deg,
    rgba(10, 35, 66, 0.9),
    rgba(3, 109, 134, 0.8),
    rgba(5, 145, 163, 0.7)
  ) !important; */

  background: linear-gradient(135deg, #0a2342, #1d3f72, #036d86) !important;
}

.column-block-card:nth-child(3) {
  background: linear-gradient(95deg, #0a2342, #1d3f72, #036d86) !important;
}

/* ======== Responsive ======== */
@media (max-width: 768px) {
  .column-block-grid {
    flex-direction: column;
    align-items: center;
  }
  .column-block-card {
    width: 100%;
    max-width: 100%;
  }
  /* ======== Column Block Section ======== */
  .column-block-section {
    margin: 50px 0px;
    padding: 0px;
  }
}
