@import url(base.css);
body{
    background-color: var(--negro);
}
.fondonegroaux{
    height: 70px;
    display: none;
}
.waicon i{
    font-size: 30px;
}
.waicon{
    background-color: #00E676;
    border-radius: 100%;
    text-decoration: none;
    position: fixed;
    bottom: 40px;
    z-index: 9999;
    right: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.portada{
    height: 100vh;
    width: 100%;
    margin: auto;
}
.fondo-imagen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.fondo-video {
    width: 100%;
    height: 100vh !important;
    object-fit: fill; /* Ajusta el video sin distorsionar */
}
.proyecto{
    padding: 40px;
    margin: auto;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.proyecto h1{
    font-weight: 300;
    font-size: 128px;
    text-align: center;
    text-transform: capitalize;
    background: linear-gradient(180deg, #FCE861 35%, #F0FFE6 45%, #D9C63B 50%, #923D00 70%, #EEC410 80%, #904300 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Para que el degradado se aplique correctamente al texto */
    font-family: var(--fancy);
}
.desCro{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 40px;
}
.proyecto p{
    width: 100%;
    max-width: 70%;
    font-size: 20px;
    font-weight: 400;
    text-align: justify;
}
.Croquis{
    width: 100%;
    max-width: 30%;
    text-align: center;
}
.proyecto img{
    width: 100%;
    height: auto;
}
.croBoton{
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(180deg, #FFFBF5 1%, #E0CA50 20%, #A05F0D 50%, #5A2304 80%);
    border-radius: 10px;
    padding: 3px;
}
.segCro{
    display: inline-block;
    background: linear-gradient(180deg, #FCE861 20%, #F0FFE6 30%, #D9C63B 40%, #923D00 50%, #EEC410 60%, #904300 90%);
    border-radius: 10px;
    padding: 8px;
}
.terCro{
    display: inline-block;
    background: linear-gradient(180deg, #E19B07 20%, #ECD23D 25%, #9A661A 40%, #FFE57D 75%);
    border-radius: 10px;
    padding: 3px;
}
.fondoCro{
    display: inline-block;
    background: var(--negro);
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: bold;
    padding: 10px 40px;
    text-align: center;
}
.fondoCro i{
    transition: all 0.3s;
}
.Croquis:hover .fondoCro{
    background: linear-gradient(180deg, #FFE962 20%, #FEFFE6 35%, #F7E104 50%, #CF9901 90%, #8A5200 98%);
    color: var(--negro);
}
.Croquis:hover .fondoCro i{
    color: var(--negro);
}
.galeria{
    padding: 40px;
    margin: auto;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.galeria h2{
    font-weight: 300;
    font-size: 128px;
    text-align: center;
    text-transform: capitalize;
    background: linear-gradient(180deg, #FCE861 35%, #F0FFE6 45%, #D9C63B 50%, #923D00 70%, #EEC410 80%, #904300 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Para que el degradado se aplique correctamente al texto */
    font-family: var(--fancy);
}
.galeria-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.galeria-container img {
    max-width: 1200px;
    height: auto;
}
.galeria-container video {
    max-width: 1200px;
    height: auto;
}
@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .fondonegroaux{
        display: block;
    }
    .portada{
        height: 100% !important;
        width: 100%;
    }
    .fondo-imagen {
        width: 100%;
        height: 200px;
        margin-bottom: -5px;
        object-fit: fill; /* Ajusta el video sin distorsionar */
    }
    .fondo-video {
        width: 100%;
        height: 100% !important;
        max-height: calc(100vh - 70px);
        margin-bottom: -5px;
        object-fit: fill; /* Ajusta el video sin distorsionar */
    }
    .proyecto{
        padding: 20px;
    }
    .proyecto h1{
        font-size: 50px;
    }
    .proyecto p{
        font-size: 20px;
    }
    .waicon i{
        font-size: 20px;
    }
    .waicon{
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .galeria{
        padding: 20px;
    }
    .galeria h2{
        font-size: 80px;
    }
    .galeria-container img {
        max-width: 100%;
        height: auto;
    }
    .galeria-container video {
        max-width: 100%;
        height: auto;
    }
    .desCro{
        flex-direction: column-reverse;
        gap: 20px;
    }
    .proyecto p{
        max-width: 100%;
        font-size: 16px;
    }
    .Croquis{
        max-width: 100%;
    }
}