html {
  scroll-behavior: smooth;
}
body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.8; 
}

p {
	font-weight: 500; 
}

h2, .card-title {
	font-weight: 700; 
}

.navbar-nav .nav-link {
	color: #5BB224;
	font-weight: 700; 
}

.text-green-dark {
	color: #152115;
}

.hero {
  height: 100vh;
  background: url('../img/building.jpg') no-repeat center center/cover;
}

.leadp {
  font-size: 3.25rem;
  font-weight: 600;
}
	
section {
  scroll-margin-top: 70px;
}

.card ul {
  padding-left: 1rem;
}

.bg-green-dark {
	background-color: #152115;
}

.bg-green-light {
	background-color: #5BB224;
}

.shadow-box {
	box-shadow: 6px 3px 3px grey;
}

.parallax-section {
  /*background-image: url('img/building.png');   Reemplaza con la imagen real */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 500px;  /* Ajusta la altura según lo que desees */
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax-section h2, .parallax-section p {
  position: relative;
  z-index: 1;  /* Asegura que el texto esté por encima del fondo */
}

footer {
  background-color: #343a40;
}

footer h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

footer .list-unstyled {
  padding-left: 0;
  list-style: none;
}

footer .list-unstyled li {
  margin-bottom: 10px;
}

footer .list-unstyled li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .list-unstyled li a:hover {
  color: #00b894;
}

footer .container {
  max-width: 1100px;
}

footer .navbar-brand {
  font-size: 1.75rem;
}

footer p {
  font-size: 0.9rem;
}

footer .text-success {
  color: #00b894;
}

footer .text-light {
  color: #d3d3d3;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll; /* Desactiva el Parallax en móviles */
  }
  
  footer .col-md-4 {
    margin-bottom: 30px;
  }
}
