body {
    padding-top: 56px;
}


.header-section {
    background-color: #007bff;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.services-section {
    padding: 50px 20px;
    background-color: #1c1d1d;
}

.servicio-circular {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
  }
  
  .servicio-circular:hover {
    transform: scale(1.05);
  }
  
  .servicio-circular .overlay {
    background-color: rgba(0, 0, 0, 0.6); /* fondo oscuro semitransparente */
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  

  .quienes-somos {
    background: #f8f9fa;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .quienes-somos img {
    border: 5px solid white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  

.cta-section {
    background-color: #6c757d;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

footer {
    background-color: #343a40;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
}