body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h4, h5 {
  font-weight: bold;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.section-content {
  margin-bottom: 3rem;
}


.hero {
  background: url('../imagenes/QuienesSomosPortada.png') center center/cover no-repeat;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background-color: rgba(0,0,0,0.5); 
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

.hero .btn {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  font-weight: bold;
}


.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.text-center {
  text-align: center !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-img {
  max-width: 200px;
}



.team-member {
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member .img-container {
  width: 240px;
  height: 240px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-member .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member h5 {
  margin-bottom: 0.5rem;
}

.team-member p {
  margin-bottom: 0;
  color: #555;
  font-size: 0.95rem;
}


footer {
  background-color: #0d6efd;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.95rem;
}

