/* Bloques generales */
.section-title {
  font-weight: 800;
  color: #1d2b38;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #777;
}

/* Imagen destacada con borde redondeado */
.feature-img {
  border-radius: 15px;
  width: 100%;
}

/* Contenedor con fondo gris claro y texto alineado */
.feature-description {
  color: #444;
  background-color: #f6f6f6;
  padding: 20px;
  border-radius: 10px;
}

/* Texto destacado con línea vertical izquierda */
.titled-block {
  border-left: 4px solid #1d2b38;
  padding-left: 10px;
  margin-bottom: 5px;
  font-weight: 800;
  color: #1d2b38;
}

/* Imagen con texto superpuesto */
.image-overlay-container {
  position: relative;
}
.image-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: white;
}
.image-overlay-text p {
  margin: 0;
  letter-spacing: 1px;
}
.image-overlay-text h3 {
  font-weight: bold;
}

/* Caja de servicios */
.service-box {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
}
.service-box h4 {
  font-weight: 700;
}
.service-box ul li {
  margin-bottom: 10px;
  color: #333;
}

/* Link de acción */
.read-link {
  display: inline-block;
  margin-top: 10px;
  color: #2a2a2a;
  font-weight: 600;
  text-decoration: none;
}

/* Alineación general */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}



.marche-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s ease;
}
.marche-button img {
  height: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.marche-button:hover img,
.marche-button.active img {
  opacity: 1;
  transform: scale(1.05);
}
