@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f8f5ff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #4b147d;
}

/* NAVBAR */
.navbar{
    width: 100%;
    min-height: 110px;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* PERFIL */
.profile{
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-img{
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    padding: 4px;
    background: linear-gradient(135deg, #91a8ff, #e07a96);
}

.profile-text h1{
    font-size: 28px;
    color: #5b1a82;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.profile-text p{
    font-size: 15px;
    color: #6b5c7d;
    line-height: 1.3;
}

/* MENU */
.nav-menu{
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-menu a{
    text-decoration: none;
    color: #4b147d;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.nav-menu a.active::after,
.nav-menu a:hover::after{
    content: "";
    width: 100%;
    height: 2px;
    background-color: #7a3ab5;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

/* BOTÓN */
.button-talk{
    text-decoration: none;
    color: #4b147d;
    border: 2px solid #8a5bc2;
    padding: 14px 46px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s ease;
}

.button-talk:hover{
    background-color: #6b21a8;
    color: white;
}
