@charset "utf-8";
/* CSS Document */
html, body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #f3edf5;
	font-family: 'Montserrat', sans-serif;
	
}

/* HEADER */

.header{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    background: white;

    display: flex;
    align-items: center;
    justify-content:space-around;

    padding: 15px 35px;

    box-sizing: border-box;

    border-radius: 0 0 40px 40px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    z-index: 1000;
}

/* LOGO */

.logo img{
    height: 55px;
	 margin-right: 120px;
	
}

/* MENU */

.menu{
    display: flex;
    gap: 60px;
}

.menu a{
    text-decoration: none;
    color: #4a4346;
    font-size: 22px;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover{
    color: #92247f;
}

/* BOTÓN */

.boton{
    background: #92247f;
    color: white;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 40px;

    font-weight: bold;

    transition: 0.3s;
	
	 margin-left: 120px;	
}

.boton:hover{
    background: #741c66;
}
