* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
html {
    background: linear-gradient(180deg, #6F01BE 20%, #290047 73%);
}

body {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding: 2% 5% 0 5%;
}

/*Barra de Navegação*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo-nike,
#logo-perfil {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

#logo-nike:hover, #logo-perfil:hover {
    transition: all 0.3s ease-in-out;
    transform: scale(1.04);
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 0px;
    gap: 150px;
}

nav ul li {
    cursor: pointer;
    list-style: none;
    font-size: 35px;
    font-weight: bold;
    background: linear-gradient(180deg, #FF9D00 43%, #995E00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

nav ul li:hover {
    transition: all 0.3s ease-in-out;
    transform: scale(1.03);
    text-decoration: underline solid #FF9D00;
}

/*Airmax Apresentação*/
.airmax-tn {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    margin-top: 50px;
    gap: 150px;
}

.airmax-ap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
}

#foto-airmaxtn {
    max-height: 600px;
    border-radius: 400px;
}

.titulo-airmax {
    font-size: 64px;
    line-height: 100%;
    background: linear-gradient(180deg, #FF9D00 43%, #995E00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-airmax {
    font-size: 18.3px;
    margin-top: 7px;
    font-weight: 300;
    text-align: justify;
    color: white;
}

.buttons-number {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.numeracoes-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.numeracoes-button2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buy-button, .buy-button2, .buy-button3, .buy-button4, .buy-button5{
    margin-right: 13px;
    margin-bottom: 13px;
    width: 16.1rem;
    height: 5rem;
    background: linear-gradient(180deg, #FF9D00 25%, #995E00 72%);
    border-radius: 40px;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    color: #6F01BE;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.buy-button5 {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    text-decoration: none;
    color: #019125;
    width: 530px;
    height: 90px;
    font-size: 2.3rem;
    background: linear-gradient(180deg, #019125 25%, #003f0b 72%);
}

.buy-button:hover, .buy-button2:hover, .buy-button3:hover, .buy-button4:hover, .buy-button5:hover {
    transition: all 0.3s ease-in-out;
    transform: scale(1.03);
}