* {
    font-family: "Inter", sans-serif;
}

body {
    margin-top: 72px;
}
@media (min-width: 992px) {
    body {
        margin-top: 91px;
    }
}

h1, h2, h3, h4, h5 {
    font-weight: 900;
}

section {
    scroll-margin-top: 72px;
}
@media (min-width: 992px) {
    section {
        scroll-margin-top: 90px;
    }
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: none;
    cursor: pointer;
}

.owl-carousel .owl-nav button.owl-prev img,
.owl-carousel .owl-nav button.owl-next img {
    width: 30px;
}

.navbar .nav-link {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
}
.navbar-brand img {
    width: 100px;
}
@media (min-width: 992px) {
    .navbar-brand img {
        width: 140px;
    }
}

#hero {
    height: calc(100vh - 72px);
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
@media (min-width: 992px) {
    #hero {
        height: calc(100vh - 90px);
    }
}
#hero h1 {
    font-weight: 900;
}
#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Negro con 50% de opacidad */
    z-index: 1; /* Coloca la superposición detrás del texto */
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero a,
#contact button {
    background-color: black;
    border:none;
}

.footer-icons a img {
    width: 30px;
    margin: 10px;
}