header#h-primary{
    
    height: calc(100vh - 60px);
    background-size: cover;
    background-position: top;
    text-align: center;
    background-attachment: fixed;
    

}

header#h-primary h1.title-header{
    text-shadow: 0px 0px 10px var(--bs-dark);
    color: whitesmoke;
    z-index: 100;

}

header#h-primary p.subtitle-header{
    color: whitesmoke;
    font-size: 1.1rem;
    position: relative;
    z-index: 20;
}


@media (min-width:576px) {
    header#h-primary p.subtitle-header{
        font-size: 1.3rem;
    }
}

@media (min-width:1200px) {
    header#h-primary{
        box-shadow: 0px 5px 10px #424145;
        height: min(calc(100vh - 61px), 1024px);
    }
}

/* Separador de secciones */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
}
.section-divider .divider-line {
    width: 80px;
    height: 3px;
    background: var(--prim);
    border-radius: 2px;
}

/* section proyectos*/

section#proyectos{
    padding-top: 1rem;
}

section#proyectos div.card-proyecto{
    background-size: cover ;
    aspect-ratio: 4/3;

}

section#proyectos div.card-proyecto a{
    text-decoration: none;
    z-index: 100;

}

section#proyectos div.card-proyecto a h3{
    text-shadow: 1px 1px 3px black;
}

section#proyectos div.card-proyecto:hover figure img{
    transform: scale(1.1);
    transition: all 0.5s;
}

/* section formulario*/
section#propuestas{
    border-top: 1px solid gray;
    box-shadow: 0px -1px 10px #424145;
    background-repeat: no-repeat;
    background-size: cover;
}

section#propuestas div.overlay-form{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #000000a6 40%, transparent);
    
}

@media (min-width:768px) {
    section#propuestas div.overlay-form{
        background-image: linear-gradient(90deg, #000000a6 40%, transparent);
    }
}
