@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

.cookies {
    position: fixed;
    bottom: 10px;
    z-index: 999;
    display: flex;
    padding: 20px 30px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1050px;
    background-color: #ffffff;
    box-shadow: 0 3px 10px #00000026;
    border-radius: 7px;
    box-sizing: border-box;
    font-size: 13px;
}

.cookies img {
    margin: 0 20px 0 0;
}

.cookies button {
    margin: 0 0 0 20px;
    color: #ffffff;
    background-color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.cookies button:hover {
    opacity: .85;
    cursor: pointer;
}

header {
    height: 64px;
    width: 100%;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 60px;
}

header .navbar .logo img {
    width: 148px;
    margin-top: 15px;
}

header .navbar .logo h1 {
    color: #f63854;
    margin-top: -10px;
    font-size: 18px;
    letter-spacing: 3px;
}

header .navbar .menu img {
    display: none;
}

header .navbar .menu ul {
    display: flex;
    flex-direction: row;
}

header .navbar .menu ul li {
    padding: 10px 20px;
}

header .navbar .menu ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #585b60;
}

header .navbar .menu ul li a:hover {
    color: #f63854;
    border-bottom: 2px solid #f63854;
}

main {
    height: calc(100vh - 44px);
    width: 100%;
    margin-top: -20px;
    display: flex;
    align-items: center;
    background-image: url("../img/wave.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

main .arrow-up {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    background-color: #f63854;
    cursor: pointer;
    z-index: 999999;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
}

main .active {
    visibility: visible;
    opacity: 1;
}

main .container {
    padding: 100px 60px;
    margin-top: -20px;
}

main .container .text h2 {
    font-size: 38px;
    color: #222222;
}

main .container .text p {
    color: #585b60;
}

main .container .text p a {
    color: #585b60;
}

main .container .text p a:hover, span:hover {
    color: #f63854;
    cursor: pointer;
}

main .container .form {
    margin-bottom: 60px;
}

main .container .form p {
    color: #585b60;
    margin-top: 20px;
    margin-bottom: 5px;
}

main .container .form input {
    height: 40px;
    border-radius: 5px;
    border: 1px solid #f63854;
    font-size: 1rem;
}

main .container .form input:focus {
    outline: none !important;
    border: 2px solid #f63854;
}

main .container .form button {
    height: 40px;
    width: 82px;
    border-radius: 5px;
    border: 1px solid #f63854;
    color: #f63854;
    font-size: 1rem;
}

main .container .form button:hover {
    cursor: pointer;
    background-color: #f63854;
    color: #f3f3f3;
    border: 1px solid #f63854;
}

main .supporters {
    height: 92px;
    width: 342px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

main .supporters img {
    border-radius: 5px;
    box-shadow: 5px 5px 5px #4d4d4d;
    border: 1px solid #4d4d4d;
}

main .supporters .caroucelItem {
    display: none;
}

main .supporters .visible {
    display: block;
    animation: fadeVisibility .5s;
}

main .modal {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    height: 0;
    height: 100%;
    width: 100%;
}

.open {
    display: block;
}

.close {
    display: none;
}

main .modal .container {
    height: 80%;
    width: 80%;
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main .modal .container img {
    height: 90%;
    width: 90%;
}

main .modal .container #buttonCloseImg {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #4d4d4d;
    font-size: 18px;
}

main .modal .container #buttonCloseImg:hover {
    font-weight: 600;
    color: #1f1f1f;
}

main .modal .container .loadingImg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f63854;
}

main .modal .container img {
    width: auto;
    z-index: 999;
}

main .modal .container button {
    position: absolute;
    bottom: 20px;
    width: 82px;
    border-radius: 5px;
    border: 1px solid #f63854;
    color: #f63854;
    font-size: 1rem;
    z-index: 9999;
}

main .modal .container button:hover {
    cursor: pointer;
    background-color: #f63854;
    color: #f3f3f3;
    border: 1px solid #f63854;
}

#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

#about .about-title {
    margin-top: 30px;
    border-bottom: 2px solid #f63854;
}

#about .about-title h2 {
    color: #222222;
}

#about .about-text {
    margin-top: 20px;
    word-wrap: break-word;
    width: 90%;
}

#about .about-text h3 {
    color: #222222;
    font-weight: normal;
}

#about .about-text div {
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
}

#about .about-text div:hover {
    box-shadow: 0 0 8px rgba(0,0,0,.14), 0 8px 16px rgba(0,0,0,.28);
}

#about .about-text .highlight {
    color: #f63854;
    font-weight: 600;
}

#about .about-text p, a {
    color: #4d4d4d;
}

#about .about-text p a:hover {
    color: #f63854;
    cursor: pointer;
}

#donations {
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    padding: 40px;
}

#donations .donations-title {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    text-align: justify;
    color: #4d4d4d;
}

#donations .donations-title h2 {
    color: #222222;
    border-bottom: 2px solid #f63854;
    width: 198px;
    margin-bottom: 38px;
}

#donations .donations-title p, a {
    color: #4d4d4d;
}

#donations .donations-title p a:hover {
    color: #f63854;
    cursor: pointer;
}

#donations .donations-img {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#donations .donations-img img {
    width: 400px;
}

#contact {
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
}

#contact .contact-title {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

#contact .contact-title h2 {
    color: #222222;
    border-bottom: 2px solid #f63854;
    margin-bottom: 20px;
}

#contact .contact-text {
    margin: 20px 30px;
    display: flex;
    justify-content: center;
}

#contact .contact-text form fieldset {
    border: none;
    color: #4d4d4d;
}

#contact .contact-text form fieldset input, textarea {
    height: 38px;
    width: 360px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #585b60;
    padding: 10px;
    margin: 20px 20px 0 0;
}

#contact .contact-text form fieldset #inputAssunto, #textareaMensagem {
    width: 745px;
}

#contact .contact-text form fieldset textarea {
    height: 180px;
}

#contact .contact-text form fieldset input:focus, textarea:focus {
    outline: none !important;
    border: 1px solid #f63854;
}

#contact .contact-text form fieldset button {
    margin-top: 10px;
    height: 40px;
    width: 82px;
    border-radius: 5px;
    border: 1px solid #f63854;
    color: #f63854;
    font-size: 1rem;
}

#contact .contact-text form fieldset button:hover {
    cursor: pointer;
    background-color: #f63854;
    color: #f3f3f3;
    border: 1px solid #f63854;
}

footer {
    height: 240px;
    background-color: #f63854;
    color: #f9f9f9;
    display: flex;
    padding: 30px;
}

footer .address {
    margin-right: 50px;
}

footer .address i {
    color: #f3f3f3;
    margin-right: 10px;
    margin-top: 10px;
}

footer .address h3 {
    letter-spacing: 2px;
}

.developer {
    background-color: #f63854;
    color: #f3f3f3;
    display: flex;
    justify-content: center;
    padding: 20px 0px;
    font-size: 12px;
}

.developer p {
    color: #d4d4d4;
    font-size: 13px;
    letter-spacing: 1px;
}

.developer p:hover {
    color: #585b60;
    cursor: pointer;
}

footer .developer p {
    font-size: 12px;
}

/* MEDIA 750 */

@media (max-width: 750px ) {
    .cookies {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookies img {
        margin: 0 0 10px 0;
        max-width: 100%;
    }

    .cookies p {
        margin: 0 0 10px 0;
    }

    .cookies button {
        margin: 0;
    }

    header {
        margin-bottom: 40px;
    }

    header .navbar {
        padding: 8px 30px;
    }

    header .navbar .menu img {
        width: 40px;
        display: block;
    }

    header .navbar .menu img:hover {
        cursor: pointer;
    }

    header .navbar .menu .itemsMenu {
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        text-align: center;
        background-color: #f63854;
        opacity: 0;
        pointer-events: none;
    }

    header .navbar .menu .activeMenu {
        opacity: 1;
        transition: opacity .5s linear;
        pointer-events: visible;
        z-index: 9999;
    }

    header .navbar .menu ul {
        flex-direction: column;
    }

    header .navbar .menu ul li {
        margin: 30px;
    }

    header .navbar .menu ul li a {
        font-size: 2rem;
        color: #FFFFFF;
        font-weight: 600;
    }

    header .navbar .menu ul li a:hover {
        color: #FFFFFF;
    }

    main {
        background-image: url("../img/wave-mobile.svg");
    }

    main .container {
        padding: 60px 30px;
    }

    main .container .text h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    main .container .text p, .form p {
        font-size: 14px;
    }

    main .container .form input {
        width: 160px;
    }

    main .modal .container {
        height: 100%;
        width: 100%;
        margin-top: 0px;
    }

    main .modal .container img {
        z-index: 999;
    }

    #about .about-text {
        margin-top: 0;
    }

    #donations {
        margin: 20px;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 40px 20px;
    }

    #donations .donations-title {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }

    #donations .donations-title h2{
        text-align: center;
    }

    #donations .donations-img {
        width: 100%;
        padding: 0;
    }

    #donations .donations-img img {
        width: 200px;
    }

    #contact {
        margin: 20px;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
    }

    #contact .contact-text {
        width: 100%;
    }

    #contact .contact-text form {
        width: 100%;
    }

    #contact .contact-text form fieldset {
        display: flex;
        flex-direction: column;
    }

    #contact .contact-text form fieldset input, textarea {
        display: block;
        width: 100%;
    }

    #contact .contact-text form fieldset #inputAssunto, #textareaMensagem {
        display: block;
        width: 100%;
    }

    footer {
        height: auto;
    }
}