@import url(base.css);
body{
    background-color: var(--negro);
}
.home{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}
.conoce{
    width: 300px;
    position: absolute;
    bottom: 40px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 27px;
    cursor: pointer;
}
.conoce i{
    font-size: 50px;
    rotate: 180deg;
}
.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;
}
.invertir{
    border: var(--negro) solid 1px;
    width: 100%;
    position: relative;
    padding-bottom: 40px;
}
.invertir .glorieta{
    background-image: url(src/glorieta.jpg);
    object-fit: cover;
    width: 100%;
    height: 600px;
    position: absolute;
    z-index: -1;
    top: 0;
    opacity: 45%;
}
.inv_titulo{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 226px;
    margin-bottom: 125px;
}
.inv_titulo span:nth-child(1){
    font-size: 50px;
    font-weight: bold;
}
.inv_titulo span:nth-child(2){
    font-size: 71px;
    font-weight: bold;
}
.razones{
    margin: auto;
    margin-bottom: 40px;
    max-width: 1200px;
    padding: 30px;
    background-image: url(src/bg-black-noise-auto.jpg);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
    gap: 20px;
}
.razon{
    padding: 20px;
    border: rgba(255, 255, 255, 0.3) dashed 1px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 560px;
    margin-bottom: 40px;
}
.razon_subtitulo{
    display: flex;
    flex-direction: row;
    gap: 25px;
}
.razon:nth-child(5){
    max-width: none;
    margin-bottom: 0px;
}
.razon_subtitulo span:nth-child(1){
    color: var(--dorado_claro);
    font-weight: 800;
    font-size: 60px;
}
.razon_subtitulo span:nth-child(2){
    font-weight: 700;
    font-size: 24px;
    opacity: 50%;
    text-transform: uppercase;
    padding-top: 12px;
    line-height: 24px;
}
.razon_texto{
    font-weight: 400;
    font-size: 14px;
    opacity: 25%;
    line-height: 21px;
}
.motivos{
    margin: auto;
    max-width: 1200px;
    padding: 30px;
    background-image: url(src/bg-black-noise-auto.jpg);
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}
.justificacion{
    padding: 20px;
    border: rgba(255, 255, 255, 0.3) dashed 1px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
    max-width: 360px;
    gap: 15px;
}
.just_img{
    width: 80px;
    height: 80px;
    padding: 2px;
    border: dashed 2px var(--dorado_claro);
    border-radius: 50%;
}
.just_img img{
    width: 100%;
    height: 100%;
}
.just_text{
    display: flex;
    flex-direction: column;
    gap: 9px;
    max-width: 203px;
}
.just_text span:nth-child(1){
    color: var(--dorado_claro);
    font-weight: 600;
}
.just_text span:nth-child(2){
    font-weight: 400;
    font-size: 12px;
    opacity: 50%;
}
.footerbox{
    height: 350px;
}
@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .home video{
        object-fit: cover;
    }
    .waicon i{
        font-size: 20px;
    }
    .waicon{
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .conoce{
        gap: 15px;
    }
    .conoce i{
        font-size: 48px;
    }
    .conoce span{
        font-size: 14px;
    }
    .inv_titulo{
        margin-top: 125px;
        margin-bottom: 125px;
    }
    .inv_titulo span:nth-child(1){
        font-size: 24px;
    }
    .inv_titulo span:nth-child(2){
        font-size: 48px;
    }
    .razones{
        padding: 20px;
    }
    .razon_subtitulo{
        gap: 20px;
    }
    .razon_subtitulo span:nth-child(1){
        font-size: 40px;
    }
    .razon_subtitulo span:nth-child(2){
        font-size: 18px;
        padding-top: 0px;
    }
    .razones{
        margin-bottom: 20px;
    }
    .razon{
        gap: 15px;
        margin-bottom: 15px;
        max-width: 100%;
    }
    .motivos{
        padding: 20px;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        align-content: stretch;
    }
    .just_img{
        width: 60px;
        height: 60px;
        padding: 2px;
    }
    .justificacion{
        padding: 10px;
        gap: 10px;
        margin-bottom: 20px;
    }
    .just_text{
        max-width: 180px;
    }
}