:root{
    --p-verde: #374B3D;
    --p-verde-menu: #374B3Df1;
    --p-cafe: #AE6732;
    --p-blanco: #FFFFFF;
}

#main{
    padding-top: 80px;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    background-image: repeating-linear-gradient(36deg, rgba(150, 150, 150, 0.1), rgba(150, 150, 150, 0.1) 1px, transparent 0px, transparent 2px);
    background-size: 5px 5px;
}

.menu{
    display: flex;
    align-items: center;
    height: 80px;
    background-color: var(--p-verde);
    backdrop-filter: blur(1px);
    color: var(--p-blanco);
    position: fixed;
    z-index: 10000;
    top: 0;
    &.active{
        background-color: var(--p-verde-menu);
    }
    .c1{
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
        .logo{}
        .nav{
            display: flex;
            align-items: center;
            justify-content: flex-end;
            @media (max-width: 900px) {
                position: absolute;
                top: 80px;
                right: 0;
                width: 100vw;
                max-width: 100vw;
                background: var(--rojo);
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem 1.5rem 2rem 2rem;
                gap: 1.5rem;
                box-shadow: 0 8px 32px #0000001f;
                z-index: 100;
                display: none;
                &.active {
                    display: flex;
                }
                .nav-link {
                    color: var(--fnd);
                    font-size: 1.2rem;
                    font-weight: 600;
                    padding: 0;
                }
            }
            a{
                font-weight: 600;
                color: var(--fnd);
                cursor: pointer;
                &:hover{
                    color: var(--fnd-obs);
                }
            }
        }
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: .5rem;
            @media (max-width: 768px) {
                display: block;
            }
            span {
                display: block;
                width: 25px;
                height: 3px;
                background-color: var(--fnd-obs);
                margin: 5px 0;
                transition: .3s;
            }
        }
    }
}

#enc{
    height: 30%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    .titulo{
        color: var(--p-blanco);
        z-index: 10;
        font-weight: bold;
    }
    img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}

#contenido{
    .mod-seccion{
        display: none;
        &.active{
            display: block;
            animation: transicionPanel;
            animation-duration: 0.6s;
        }
    }
}

@keyframes transicionPanel {
    0% {
        opacity: 0;
        margin-top: 15px;
    }
    100% {
        opacity: 1;
        margin-top: 0;
    }
}

#modelo{
    .contenido{
        background: #000000;
        background: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 1) 95%, rgba(0, 0, 0, 0) 100%);
        min-height: 250px;
    }
}

#propiedades{
    height: 100%;
    padding: 0;
    position: relative;
    .swiper{
        height: 30%;
        div{
            height: 100%;
        }
    }
}

#contacto{
    background: #000000;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 1) 95%, rgba(0, 0, 0, 0) 100%);
    .col{
        padding: 15px;
    }
    .input-group{
        margin-bottom: 15px;
    }
    h3{
        margin-bottom: 25px;
    }
    .formulario{
        padding: 30px 15px;
        background-color: #f2f2f2;
        border-radius: 15px;
    }
    .redes{
        text-align: center;
        .iconos {
            display: flex;
            justify-content: center;
            margin-bottom: 5px;
            img {
                cursor: pointer;
                margin: 0 15px;
                width: 40px;
                height: 40px;
            }
        }
        .imagen img{
            width: 70%;
            height: auto;
            border-radius: 15px;
        }
    }
}

.mapa{
    width: 100%;
    height: 450px;
    border-radius: 15px;
}
