body {
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100vw;
}

a{
    color: #9c6eda;

}
a:hover{
    color: #d32f8d;
    text-decoration: none;
}
a:active{
    color: #d32f8d;
    text-decoration: none;
}

p {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 1.7em;
    color: #3B3644;
}

h1, h2, h3, h4 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: 20px;
    color: #412e70;
    line-height: 1em;
}

h1 {
    font-size: clamp(50px, 7vw + 1rem, 100px);
}
h2 {
    font-size: clamp(32px, 6vw + 1rem, 54px);
}
h3 {
    font-size: clamp(30px, 5vw + 1rem, 36px);
    color: #9c6eda;
}

h4 {
    font-size: 26px;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
    text-align: center;
}

.uppercase{
    text-transform: uppercase;
    letter-spacing: 2px;
}
.strong {
    font-weight: 800;
    font-size: 20px;
    color: #412e70;
}

.big{
    font-size: 26px;
    font-weight: 600;
}

.drop-shadow {
    text-shadow: 3px 3px 4px black;
}

.white {
    color: #fff;
}

.lilac {
    color: #b587f2;
}

.light-pink {
    color: #e8d3e6;
}

.bg-purple {
    background-color: #412e70;
}

.btn-primary {
    background: #d32f8d;
    border: solid 1px #d32f8d;
    border-radius: 30px;
    padding: 15px 20px;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #9c6eda;
    border: solid 1px #9c6eda;
}

.nav-link {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #412e70 !important;
}

.nav-link:hover {
    color: #d32f8d !important;
}

.navbar-brand {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.navbar-logo {
    width: 260px;
}

.navbar-toggler-icon {
    right: 15px;
}

.nav-item {
    padding-left: 10px;
}

.sticky-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-video {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: #000;
}
.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Quienes Somos */
#quienes-somos .bg-cover {
    background-size: cover;
    background-position: center;
}

.portafolio {
}

.grid-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    grid-gap: 20px;
}

.grid-gallery .grid-item {
    position: relative;
    background-color: #efefef;
    overflow: hidden;
}

.grid-gallery .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-gallery .grid-item:hover img {
    transform: scale(1.1);
}

.grid-gallery .grid-item a {
    cursor: zoom-in;
}

.grid-gallery .grid-item:nth-child(3n - 2) {
    grid-column: span 2;
    grid-row: span 2;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border: none;
}

/* responsive */
@media (max-width: 768px) {
    .grid-gallery {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        grid-auto-rows: 380px;
    }

    .grid-gallery .grid-item:nth-child(3n - 2) {
        grid-column: unset;
        grid-row: unset;
    }
}

/* Certificaciones */
.certifications {
    width: 200px !important;
}

/* CTA */
.parallax {
    background-attachment: fixed;
    background-size: cover;
}

.cta {
    background-color: #412e70;
    padding: 120px 0;
    text-align: center;
}

/* Venta */
.venta-box {
    padding: 20px;
}


#higos{
    padding: 100px, 30px;
}
.footer {
    background: #2b2240;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}


/* Contacto */

label{
    font-family: Manrope, sans-serif;
    font-size: 17px;
    margin-top: px;
}

.btn-orange-nav {
    background-color: #FF7700;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-orange-nav:hover {
    background-color: #F7964D;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: #412e70;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin: 40px;
}

#popup-message{
    color: white;
    font-family: Manrope, sans-serif;
    font-size: 24px;
}

.d-none {
    display: none;
}


.footer p{
    text-align: center;
    color: #ffffff;
}

.footer-logo{
    width: 200px;
}

.line{
    padding: 25px;
    border-top: 1px solid #493a70;

}
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}
