@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Poppins&family=Source+Sans+3&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Source Sans 3', sans-serif; */
    font-family: 'Poppins', sans-serif;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
  background-color: #1d1d20;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
}

.box h1 {
    font-size: 60px;
}

#s1 {
    overflow-x: hidden;
}
#s2 {
    overflow-x: hidden;
}
#s3 {
    overflow-x: hidden;
}

p {
    font-size: 18px;
    color: #b0b0b0;
    margin-top: 2%;
}

/* header */

header {
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.logo {
    width: 30%;
}

.logo img {
    width: 200px;
    margin-left: 10%;
}

.nav-list {
    width: 70%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 5%;
}

.nav-list a {
    text-decoration: none;
    color: #b4b4b4;
    font-size: 20px;
    margin-left: 3%;
    margin-right: 3%;
    position: relative;
    padding-bottom: 5px;
    transition: .3s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    /* text-transform: uppercase; */
}

.nav-list a::after {
    content: " ";
    width: 0%;
    height: 1.5px;
    background-color: #d3a552;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
}

.nav-list a:hover::after{
    width: 100%;
}

.nav-list a:hover {
    color: #fff;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 32px;
    height: 2px;
    background-color: #fff;
    margin: 8px;
    transition: 0.3s;
}

header.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
    transition: 0.3s;
    background-color: black;
}
header.active .line2 {
    opacity: 0;;
    transition: 0.3s;
}
header.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
    transition: 0.3s;
    background-color: black;
}

@media (max-width: 768px) {
    .nav-list {
        z-index: 2;
        margin: 0;
        position: absolute;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        display: none;
    }

    .nav-list a {
        font-size: 30px;
        margin-top: 2%;
        color: black;
        letter-spacing: 5px;
        text-transform: capitalize;
    }

    .nav-list a:hover {
      color: black;
    }

    .mobile-menu {
        display: block;
        z-index: 3;
        margin-right: 5%;
    }

    .nav-list.active {
        transform: translateX(0);
        display: flex;
        transition: transform 0.3s ease-in;
    }


    header {
        justify-content: space-between;
    }

    main.none {
        display: none;
    }

    footer.none {
      display: none;
    }
}

/* header */

main {
    height: auto;
    /* background-image: url(/img/fundoEscuro.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed; */
}

#background {
    z-index: -2;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-image: url('/img/fundoEscuro.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.box {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 200px;
    /* background-color: darkgray; */
}

/* ::-webkit-scrollbar {
    background-color: rgba(0, 0, 0, 0.34);
    width: 11px;
}

::-webkit-scrollbar-thumb {
    background-color: goldenrod;
} */

@media (max-width: 800px) {
    .section-inicial {
      background-attachment: scroll;
    }
  
    .section-inicial .background .textfield {
        width: 100%;
        margin: 0;
    }
    .section-inicial .background .textfield h1 {
        font-size: 45px;
        margin-left: 5%;
    }

    #s2 {
      margin-top: -100px;
    }
    #s3 {
      margin-top: -100px;
    }

    #s1 .box {
        width: 80%;
        flex-direction: column;
    }
    #s2 .box {
        width: 80%;
        flex-direction: column-reverse;
    }
    #s3 .box {
        width: 80%;
        flex-direction: column;
    }

    p {
        font-size: 15px;
    }

    h1 {
        font-size: 30px;
    }

    .box h1 {
        font-size: 35px;
        margin-top: 30px;
        width: 100%;
        text-align: start;
    }

    .box p {
      margin-top: 20px;
    }

    #s1 .box .img {
        width: 100%;
        margin: 0;
    }

    #s1 .box .img img {
        width: 300px;
    }

    #s1 .box .textfield {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    #s1 .box .textfield h1 {
        margin-top: 30px;
    }

    #s1 .box .textfield p {
        text-align: justify;
    }

    #s2 .box .img {
        width: 100%;
        margin: 0;
    }

    #s2 .box .img img {
        width: 300px;
    }

    #s2 .box .textfield {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    #s2 .box .textfield p {
        text-align: justify;
    }

    /* #s2 .box .textfield h1 {
      margin-top: ;
    } */

    #s3 .box .img {
        width: 100%;
        margin: 0;
    }

    #s3 .box .img img {
        width: 300px;
    }

    #s3 .box .textfield {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    #s3 .box .textfield p {
        text-align: justify;
    }
}

footer {
  height: auto;
  overflow-x: hidden;
  background-color: #1f1f1f;
  z-index: 2;
}

footer .container {
    margin: 40px auto;
    max-width: 95%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-column-gap: 80px;
    grid-row-gap: 40px;
    justify-content: center;
    padding: 0 20px;
}

.coluna {
    margin: auto;
    height: 100%;
}

.coluna img {
    width: 250px;
    margin-top: 30px;
}
.coluna ul {
    margin: auto;
}

.coluna ul li {
    list-style: none;
    color: #b0b0b0;
    margin-top: 10px;
}

.coluna ul li a {
    text-decoration: none;
    color: #b0b0b0;
    transition: all 0.5s ease;
}

.coluna ul li a:hover {
  color: goldenrod;
}

#redesSociais {
    display: flex;
    margin-top: 30px;
}

#redesSociais li {
    margin: 0;
}

#redesSociais li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 25%;
    color: #b0b0b0;
    transition: all 0.5s ease;
}
#redesSociais li a:hover {
    color: #24262b;
    background-color: #fff;
}

.coluna ul li:first-child{
    margin-top: 30px;
}


.coluna h1 {
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: lighter;
}

.direitos {
  margin-top: 5%;
  margin-bottom: 50px;
}

.direitos h2 {
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-weight: lighter;
}

.direitos h2 a {
  color: #d3a552;
}

.direitos h3 {
  color: #fff;
  font-size: 10px;
  text-align: center;
  font-weight: lighter;
}

.direitos h3 a {
  color: #fff;
}

@media (max-width: 800px) {
  .coluna {
    margin: 0;
  }

  .coluna img {
    width: 150px;
  }
}



