html, body, #app {
    height: 100%;
}

#app { 
    display: grid;
    grid-template-rows: auto 1fr auto;
}


/*------------------------------------NAV*/
.nav {
    background-color: black;
}

.nav a {
    color: whitesmoke;
    font-weight: bolder;
}

.nav a:hover {
    color: greenyellow;
    font-weight: bolder;
}


.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/*------------------------------------FOOTER*/
.footer {
    background-color: black;
    color: whitesmoke;
}

.footer p {
    text-align: center;
}


/*------------------------------------RESTO DE ESTILOS*/
.zoom-img {
  transition: transform 0.6s ease;
}

.zoom-img:hover {
  transform: scale(1.1);
}

/* NOSE */
.servicio-card {
    position: relative;
    top: -40px;
    transition: all 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}