body {
  background-color: #EDF6F9;
  margin: 0;
  padding: 0;
  min-height: 100vh; /* asegura que el color cubra toda la altura */
}

/* Ajustes del hero */
main.sobre-gestuco .display-6 {
  color: #006D77;            /* título en color principal */
  font-weight: 600;
}

main.sobre-gestuco .lead {
  color: #2f4a4a; /* texto secundario, ligeramente más oscuro que gris */
}

/* Container centrado y ancho máximo para mejor lectura */
main.sobre-gestuco .container {
  max-width: 980px;
}

/* Botones: variante principal (tal como pediste) */
.btn-style,
main.sobre-gestuco .btn.btn-style {
  background-color: #006D77;
  color: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: none;
  padding: .55rem .9rem;
  font-weight: 600;
  border-radius: .375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-style:hover,
main.sobre-gestuco .btn.btn-style:hover {
  background-color: #004F57;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-style:active,
main.sobre-gestuco .btn.btn-style:active {
  background-color: #00353B;
  color: #FFFFFF;
  transform: translateY(0.5px);
}

/* Variante outline (segundo botón) */
.btn-style,
main.sobre-gestuco .btn.btn-style {
  background: transparent;
  color: #006D77;
  border: 1px solid #006D77;
  padding: .5rem .85rem;
  font-weight: 600;
  border-radius: .375rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-puntos-outline:hover,
main.sobre-gestuco .btn.btn-style:hover {
  background-color: #006D77;
  color: #ffffff;
  text-decoration: none;
}

/* Espaciado de secciones y tipografía */
main.sobre-gestuco section h3 {
  color: #044B4B;
  margin-bottom: .6rem;
  font-weight: 700;
}

main.sobre-gestuco p.text-muted,
main.sobre-gestuco .small {
  color: #4b5b5b;
}

/* Cards/cols (beneficios) */
main.sobre-gestuco .col-md-4 h6 {
  color: #056973;
  font-weight: 700;
}

main.sobre-gestuco .col-md-4 p {
  color: #495656;
}

/* Responsive tweaks: menos padding en pantallas pequeñas */
@media (max-width: 767.98px) {
  main.sobre-gestuco {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  main.sobre-gestuco .container { padding-left: 1rem; padding-right: 1rem; }
}