@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Ubuntu:wght@400;500;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

.max-width {
    max-width: 70%;
    margin: auto;
}

section {
    padding: 100px 0;
}

section .title {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #fafafa;
    margin-bottom: 60px;
    padding-bottom: 20px;
    position: relative;
}

section .title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 3px;
    background: #ffffff;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Responsivo */
@media (max-width: 950px) {
    .max-width {
        max-width: 80%;
    }
}