/** configurando a página para todos os navegadores */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: Montserrat;
}

:root {
    /* Cores primárias */
    --first-color: rgb(54, 120, 191);
    --first-color-alt: rgb(54, 98, 155);
    /* Cor do texto */
    --text-color: rgb(48, 48, 48);
    --text-color-alt: rgb(74, 74, 74);
    --text-red: rgb(209, 57, 57);
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 150px;
    width: 100%;
    position: absolute;
}

section.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav.navbar {
    display: flex;
    justify-content: space-around;
}

nav.navbar ul.menu {
    display: flex;
}

ul.menu li {
    list-style: none;
    margin: 15px;
}

ul.menu li.active::after {
    content: '';
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--first-color);
    margin-top: 5px;
}

ul.menu li.active a {
    color: var(--first-color-alt);
}

ul.menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.25rem;
    transition: .5s;
}

ul.menu li:hover a {
    color: var(--first-color-alt);
}

.home-content {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 1fr;
}

span.highlight-text-blue {
    color: var(--first-color);
}

span.highlight-text-red {
    color: var(--text-red);
}

.home-foto {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.home-foto img {
    width: 53%;
    clip-path: circle();
}

.home-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px 15% 0px 0px;
    color: var(--text-color);
}

.home-text h1 {
    font-size: 2.75rem;
}