h1 {
	display: none;
}

.logo {
	width: 80px;
}

.navbar {
	position: fixed;
	z-index: 5;
	width: 100%;
	padding: 0;
	margin: 0;
}

#navbar {
	background-color: transparent;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.fotoPortada{
  object-position: center top; 
}
#navbar.scrolled {
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.img-hover-container {
  max-width: 350px; 
  margin: 0 auto;   
}

.img-hover-container {
  position: relative;
  overflow: hidden;
}

.img-hover-container img {
  display: block;
  width: 100%;
  transition: all 1s ease-in-out;
}


.img-hover-container .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;  
  height: 100%;
  object-fit: cover;
}


.img-hover-container:hover .hover-img {
  width: 100%; 
}

.list-unstyled {
	list-style: disc;
    margin-left: 20px;
}

.nav-link {
	color: black;
}

section {
	scroll-margin-top: 80px;
}

.serviciosImg {
	width: 350px;
	height: 350px;
	object-fit: cover;
}

.btn-whatsapp {
	position: fixed;
	bottom: 45px;
	right: 20px;
	z-index: 1000;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #25d366;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: transform 0.2s ease-in-out;
}

.btn-whatsapp img {
	width: 35px;
	height: 35px;
}

.btn-whatsapp:hover {
	transform: scale(1.1);
}

.hover-img {
	position: relative;
	display: inline-block;
	width: fit-content;
}

.hover-img img {
	display: block;
	transition: opacity 0.3s ease;
}

.hover-img-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 0.5rem;
}

.hover-img:hover .hover-img-overlay {
	opacity: 1;
}