@charset 'UTF-8';

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --dark-gray:#1E1E1E;
    --gray:#303030;
    --light-gray:#CCD6F6; 

    --yellow:#FFCC00;
    --dark-yellow:#FF9900;

    --fonteNormal: 'Roboto', sans-serif;
    --fonteDestaque: 'IBM Plex Mono', monospace;;
}

* {
    padding: 0px;
    margin: 0px;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-size: 100%;
    scroll-behavior: smooth;
} 

body {
    background-color: var(--dark-gray);
}

#logo {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

#menu-button {
    color: var(--yellow);
    width: 50px;
    height: 50px;
}

nav  a {
    font-family: var(--fonteDestaque);
    color: var(--light-gray);
    text-decoration: none;
}

nav  a:hover {
    text-decoration: underline;
    text-decoration-color: var(--yellow);
}

nav a span {
    color: var(--yellow);
}

main {
    min-width: 280px;
    max-width: 800px;
    margin: auto;
    padding: 0vh 3vw;
}

#home {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 1dvh;
    margin: 30dvh 0vw;
}

#home h1 {
    font-family: var(--fonteDestaque);
    color: var(--light-gray);
    padding: 4vw;
    
}

#home h1 span {
    color: var(--yellow);
}

#home p {
    font-family: var(--fonteNormal);
    color: var(--light-gray);

    max-width: 45vw;
    min-width: none;
    padding: 4vw;  
    border-left: 2px solid var(--yellow);
}

.title {
    display: flex;
    align-items: center;
}

.title hr {
    flex: 1;
    height: 2px;
    border: none;
    background-color: var(--light-gray);
}

.title h2 {
    font-family: var(--fonteDestaque);
    color: var(--light-gray); 
    padding-right: 2vw;
}

.title span {
    color: var(--yellow);
}

h3 {
    color: var(--yellow);
    font-family: var(--fonteDestaque);
    text-decoration-color: var(--light-gray);
}

p {
    font-family: var(--fonteNormal);
    color: var(--light-gray);
}

p span {
    color: var(--yellow);
}

#about-content {
    text-align: justify;
}

#differentials h3 {
    text-decoration: none;
}

#differentials section {
    background-color: var(--gray);
    border-radius: 10px;
    padding: 3vw;
    text-align: justify;
}

.participate-progress {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.participate-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.participate-img h3 {
    position: absolute;
    font-size: 1.1em;
}

h4 {
    color: var(--dark-yellow);
    font-family: var(--fonteDestaque);
    text-decoration-color: var(--light-gray)

}

h5 {
    color: var(--light-gray);
    font-weight: 200;
}

.pedaling-box section {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#partnership-content {
    display: flex;
}

#partnership-instagram {
    width: 25px;
    height: auto;
    color: var(--light-gray);
}

#partnership-instagram:hover {
    color: var(--yellow);
}

#contact-buttons {
    display: flex;
}

.icon {
    display: grid;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    outline: 2px solid var(--light-gray);
    transition-duration: 0.3s;
}

#contact-instagram:hover {
    outline-offset: 4px;
    background-image: linear-gradient(to bottom, #FE2E92, #FF8901);
}

#contact-facebook:hover {
    outline-offset: 4px;
    background-image: linear-gradient(to bottom, #0B66C2, #094077);
}

.icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.icon svg {
    width: 25px;
    height: auto;
    color: var(--light-gray);
}

footer {
    font-family: var(--fonteDestaque);
    color: var(--light-gray);
}

footer a {
    color: var(--light-gray);
    text-decoration: underline;
}

footer a:hover {
    text-decoration: underline;
    color: var(--yellow);
}

/* MOBILE */
@media only screen and (max-width: 480px) {

    #header-mobile {
        display: flex;
        justify-content: space-between;
        padding: 2vw;
    }

    #nav-mobile {
        display: flex;
        justify-content: flex-end;   
    }

    nav {
        background-color: var(--gray);
        padding: 5vw;
        width: 70vw;
        height: 90dvh;
        border-radius: 15px 0px 0px 15px;
        position: absolute;
        z-index: 10;

        display: none;
        flex-direction: column;
        justify-content: space-between;
    }

    #nav-top {
        display: flex;
        flex-direction: column;
    }

    #nav-top a {
        margin-bottom: 1dvh;
        font-size: 1.3em;
    }

    #nav-top a:hover {
        color: var(--yellow);
        text-decoration: none;
    }

    #nav-bottom {
        display: flex;
    }

    .icon-theme {
        width: 30px;
        height: 30px;
        margin: 1vw;
    }

    #moon {
        color: var(--yellow);
    }

    .title {
        margin:  2dvh 0vw;
    }

    .title h2 {
        font-size: 1.2em;
    }

    main {
        margin: 0vw 3vw;
    }

    #home h1 {
        font-size: 2em;
    }

    #home p {
        font-size: 1.2em;
    }

    #contact-buttons {
        justify-content: center;
    }

    .icon {
        width: 60px;
        height: 60px;
        margin: 15px;
    }

    .icon svg {
        width: 35px;
    }

    #contact, #about, #differentials, #participate {
        padding-top: 2dvh;
    }

    #about-content {
        margin: 5dvh 0vw;
    }

    #about-content p {
        text-indent: 6vw;
        margin-bottom: 1dvh;
    }

    #differentials-grid {
        display: flex;
        flex-direction: column;
    }
    
    .differentials-content {
        margin-bottom: 2dvh;
    }

    .differentials-content h3 {
        margin-bottom: 2dvh;
    }

    .participate-progress, .pedaling-section {
        display: flex;
        justify-content: space-between;
        padding: 2dvh 0vw;

    }

    .participate-content , .pedaling-content {
        width: 46vw;
        text-align: justify;
    }

    .participate-content h3, .pedaling-content h4 {
        margin-bottom: 1dvh;
    }
    
    .participate-content-right h3, .pedaling-content-right h4 {
        text-align: end;
    }

    #pedaling {
        padding-top: 0.5dvh;
    }

    .pedaling-section-lines {
        border-top: 2px solid var(--gray);
        border-bottom: 2px solid var(--gray);
    }

    .pedaling-lines{
        border-top: 1px solid var(--light-gray);
        border-bottom: 1px solid var(--light-gray);
    }

    .pedaling-box {
        padding: 2dvh;
    }

    .pedaling-box h3 {
        margin-bottom: 1dvh;
    }

    .pedaling-box h5 {
        font-style: italic;
    }

    #partnership-content img {
        border-radius: 10px;
    }

    #partnership-section {
        margin-top: 3dvh;
        text-align: justify;
    }

    #partnership-section h3,  #partnership-section p{
        margin-bottom: 1dvh;
    }

    #partnership-content {
        flex-direction: column;
    }

    footer {
        height: 382px;
        background-image: url('../images/footers/480px.svg');
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    footer h2 {
        margin-bottom: 0.5dvh;
    }
}

/* SMALL TABLETS */
@media only screen and (min-width: 481px) and (max-width: 767px) {
    main {
        padding: 0vh 10vw;
    }
    
    #header-mobile {
        display: flex;
        justify-content: space-between;
        padding: 2vw;
    }

    #nav-mobile {
        display: flex;
        justify-content: flex-end;   
    }

    nav {
        background-color: var(--gray);
        padding: 5vw;
        width: 70vw;
        height: 90dvh;
        border-radius: 15px 0px 0px 15px;
        position: absolute;
        z-index: 10;

        display: none;
        flex-direction: column;
        justify-content: space-between;
    }

    #nav-top {
        display: flex;
        flex-direction: column;
    }

    #nav-top a {
        margin-bottom: 1dvh;
        font-size: 1.3em;
    }

    #nav-top a:hover {
        color: var(--yellow);
        text-decoration: none;
    }

    #nav-bottom {
        display: flex;
    }

    .icon-theme {
        width: 30px;
        height: 30px;
        margin: 1vw;
    }

    #moon {
        color: var(--yellow);
    }

    .title {
        margin:  2dvh 0vw;
    }

    .title h2 {
        font-size: 1.2em;
    }

    main {
        margin: 0vw 3vw;
    }

    #home h1 {
        font-size: 2em;
    }

    #home p {
        font-size: 1.2em;
    }

    #contact-buttons {
        justify-content: center;
    }

    .icon {
        width: 60px;
        height: 60px;
        margin: 15px;
    }

    .icon svg {
        width: 35px;
    }

    #contact, #about, #differentials, #participate {
        padding-top: 2dvh;
    }

    #about-content {
        margin: 5dvh 0vw;
    }

    #about-content p {
        text-indent: 6vw;
        margin-bottom: 1dvh;
    }

    #differentials-grid {
        display: flex;
        flex-direction: column;
    }
    
    .differentials-content {
        margin-bottom: 2dvh;
    }

    .differentials-content h3 {
        margin-bottom: 2dvh;
    }

    .participate-progress, .pedaling-section {
        display: flex;
        justify-content: space-between;
        padding: 2dvh 0vw;

    }

    .participate-content , .pedaling-content {
        width: 46vw;
        text-align: justify;
    }

    .participate-content h3, .pedaling-content h4 {
        margin-bottom: 1dvh;
    }
    
    .participate-content-right h3, .pedaling-content-right h4 {
        text-align: end;
    }

    #pedaling {
        padding-top: 0.5dvh;
    }

    .pedaling-section-lines {
        border-top: 2px solid var(--gray);
        border-bottom: 2px solid var(--gray);
    }

    .pedaling-lines{
        border-top: 1px solid var(--light-gray);
        border-bottom: 1px solid var(--light-gray);
    }

    .pedaling-box {
        padding: 2dvh;
    }

    .pedaling-box h3 {
        margin-bottom: 1dvh;
    }

    .pedaling-box h5 {
        font-style: italic;
    }

    #partnership-content img {
        border-radius: 10px;
    }

    #partnership-section {
        margin-top: 3dvh;
        text-align: justify;
    }

    #partnership-section h3,  #partnership-section p{
        margin-bottom: 1dvh;
    }

    #partnership-content {
        flex-direction: column;
    }

    footer {
        height: 598px;
        background-image: url('../images/footers/767px.svg');
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    footer h2 {
        margin-bottom: 0.5dvh;
    }
}

/* TABLETS */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    main {
        padding: 0vh 10vw;
    }
    
    #header-mobile {
        display: flex;
        justify-content: space-between;
        padding: 2vw;
    }

    #nav-mobile {
        display: flex;
        justify-content: flex-end;   
    }

    nav {
        background-color: var(--gray);
        padding: 5vw;
        width: 40vw;
        height: 90dvh;
        border-radius: 15px 0px 0px 15px;
        position: absolute;
        z-index: 10;

        display: none;
        flex-direction: column;
        justify-content: space-between;
    }

    #nav-top {
        display: flex;
        flex-direction: column;
    }

    #nav-top a {
        margin-bottom: 1dvh;
        font-size: 1.3em;
    }

    #nav-top a:hover {
        color: var(--yellow);
        text-decoration: none;
    }

    #nav-bottom {
        display: flex;
    }

    .icon-theme {
        width: 30px;
        height: 30px;
        margin: 1vw;
    }

    #moon {
        color: var(--yellow);
    }

    .title {
        margin:  2dvh 0vw;
    }

    .title h2 {
        font-size: 1.2em;
    }

    #home h1 {
        font-size: 2em;
    }

    #home p {
        font-size: 1.2em;
    }

    #contact-buttons {
        justify-content: center;
    }

    .icon {
        width: 60px;
        height: 60px;
        margin: 15px;
    }

    .icon svg {
        width: 35px;
    }

    #contact, #about, #differentials, #participate {
        padding-top: 2dvh;
    }

    #about-content {
        margin: 5dvh 0vw;
    }

    #about-content p {
        text-indent: 6vw;
        margin-bottom: 1dvh;
    }

    #differentials-grid {
        display: flex;
        flex-direction: column;
    }
    
    .differentials-content {
        margin-bottom: 2dvh;
    }

    .differentials-content h3 {
        margin-bottom: 2dvh;
    }

    .participate-progress, .pedaling-section {
        display: flex;
        justify-content: space-between;
        padding: 2dvh 0vw;

    }

    .participate-content , .pedaling-content {
        width: 46vw;
        text-align: justify;
    }

    .participate-content h3, .pedaling-content h4 {
        margin-bottom: 1dvh;
    }
    
    .participate-content-right h3, .pedaling-content-right h4 {
        text-align: end;
    }

    #pedaling {
        padding-top: 0.5dvh;
    }

    .pedaling-section-lines {
        border-top: 2px solid var(--gray);
        border-bottom: 2px solid var(--gray);
    }

    .pedaling-lines{
        border-top: 1px solid var(--light-gray);
        border-bottom: 1px solid var(--light-gray);
    }

    .pedaling-box {
        padding: 2dvh;
    }

    .pedaling-box h3 {
        margin-bottom: 1dvh;
    }

    .pedaling-box h5 {
        font-style: italic;
    }

    #partnership-content img {
        border-radius: 10px;
    }

    #partnership-section {
        margin-top: 3dvh;
        text-align: justify;
    }

    #partnership-section h3,  #partnership-section p{
        margin-bottom: 1dvh;
    }

    #partnership-content {
        flex-direction: column;
    }

    footer {
        height: 598px;
        background-image: url('../images/footers/767px.svg');
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    footer h2 {
        margin-bottom: 0.5dvh;
    }
}

/* DESKTOP */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

/* LARGE SCREEN */
@media only screen and (min-width: 1200px) {
}