.servicios {
  background-color: #f4f6f7;
  padding: 95px 20px;
  text-align: center;
}

.servicios h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: normal;
  color: #003366;
}

/* contenedor de tarjetas */
.servicios-contenedor {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* tarjeta */
.servicio-card {
  background: white;
  width: 550px;
  padding: 25px 20px 35px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border-radius: 8px;
}

/* imagen */
.servicio-card img {
  width: 500px;
  margin-bottom: 20px;
}

/* texto */
.servicio-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* botÃ³n */
.servicio-card a {
  display: inline-block;
  padding: 10px 22px;
  background-color: #003366;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
}

.servicio-card a:hover {
  background-color: #00509e;
}

.enlace-texto {
    color: #0066cc !important;       /* negro */
    text-decoration: underline;     /* subrayado */
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: inline !important;
}

