@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

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

:root {
    --colo-blue: #1e96a6;
}

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

input,
textarea{
    font-family: "Poppins", sans-serif, "FontAwesome" !important;
}

.container-rede-social-btn.desktop {
    display: block;
}

.container-rede-social-btn.mobile {
    display: none;
}

.container-rede-social-btn {
    transition: 0.3s;
}

.container-rede-social-btn a {
    color: #FFF;
    width: 40px;
    height: 40px;
    opacity: 0.8;
    margin: 0 8px;
    font-size: 20px;
    padding: 0.345rem;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.container-rede-social-btn a:hover {
    opacity: 1;
}

.container-rede-social-btn a:nth-child(1) {
    background: #1e96a6;
}

.container-rede-social-btn a:nth-child(2) {
    background: #d94e78;
}

.container-rede-social-btn a:nth-child(3) {
    background: #ffb420;
}

#sobre p {
    font-size: 20px;
}

#sobre h2 {
    font-size: 70px;
    font-weight: bold;
    color: var(--colo-blue);
}

.container-icons-sobre img {
    width: 80px;
    height: 80px;
    margin: 10px 30px;
    display: inline-block;
}

.container-icons-sobre img:first-child {
    margin: 0 10px 0 0;
}

#feedback {
    position: relative;
}

#feedback > h2 {
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 100px;
    color: var(--colo-blue);
}

#feedback .position-absolute {
    z-index: -1;
}

.testimonial-container {
    top: -100px;
    position: relative;
}

#redesocial {
    margin-top: 3rem;
}

#redesocial img {
    margin: 0 25%;
}

#redesocial h2,
.container-contato h2 {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--colo-blue);
    text-transform: capitalize;
}

.btn-siga-nos {
    cursor: pointer;
    color: #FFFFFF;
    padding: 0.6rem 1rem;
    text-decoration: none;
    background: var(--colo-blue);
}

.btn-siga-nos:hover {
    background: #F1C22E;
    color: #000;
    border-color: #F1C22E ;
}

.container-contato {
    margin: 3rem;
    padding: 3rem;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

button.btn-siga-nos {
    padding: 0.5rem 1rem;
    border: 2px solid var(--colo-blue);
}

footer {
    padding: 3rem;
    background: url("../../assets/image/background-feedback.jpg") center center;
    background-size: cover;
}

footer p {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
}

footer .link-items-footer h3 {
    color: #FFFFFF;
    font-size: 45px;
    font-weight: 600;
}

footer .link-items-footer a {
    display: block;
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
}

footer .link-items-footer a > span {
    font-weight: bold;
}

footer .link-items-footer a i {
    color: #f7b129;
    margin-right: 5px;
}

.menu {
    --front: #1E96A6;
    --back: #1E96A6;
    --icon: #F1C22E;
    display: none;
    perspective: 600px;
    width: 48px;
    height: 48px;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.menu input {
    display: none;
}

.menu input + div span {
    --rotateY: 0deg;
    --background: var(--front);
    transform: rotateY(var(--rotateY));
    transform-style: preserve-3d;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--background);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 0.64, 0.48, 1.24);
}

.menu input + div span:before,
.menu input + div span:after {
    --rotate: 0deg;
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    background: var(--icon);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate(-50%, -50%) rotate(var(--rotate)) translateZ(6px);
}

.menu input + div span:first-child {
    --background: var(--back);
}

.menu input + div span:first-child:before {
    --rotate: -45deg;
}

.menu input + div span:first-child:after {
    --rotate: 45deg;
}

.menu input + div span:last-child {
    --rotateY: 180deg;
}

.menu input + div span:last-child:before {
    box-shadow: 0 -5px 0 var(--icon), 0 5px 0 var(--icon);
}

.menu input + div span:last-child:after {
    display: none;
}

.menu input:checked + div span:first-child {
    --rotateY: -180deg;
}

.menu input:checked + div span:last-child {
    --rotateY: 0deg;
}


@media (max-width: 991px) {
    .container-rede-social-btn.desktop {
        display: none;
    }

    .container-rede-social-btn.mobile {
        display: block;
    }

    .container-rede-social-btn.mobile a {
        margin: 10px 0;
    }

    .menu{
        display: block;
    }
}

@media (max-width: 428px) {
    .container-icons-sobre {
        display: flex;
        margin: 25px 0;
        align-items: center;
        justify-content: space-evenly;
    }

    .container-icons-sobre img,
    .container-icons-sobre img:first-child {
        margin: unset;
    }

    #redesocial {
        margin-top: 0;
    }

    #redesocial h2,
    #sobre h2,
    #feedback > h2,
    .container-contato h2 {
        font-size: 50px;
        text-align: center;
    }

    #redesocial img {
        margin: 0 20%;
    }

    .person-astronauta {
        display: none;
    }

    .container-contato {
        padding: 1rem;
        margin: 0.6rem;
    }

    button.btn-siga-nos {
        width: 100%;
        margin: 15px 0;
        display: block;
    }

    footer {
        padding: 1rem;
    }

    footer .link-items-footer a {
        font-size: 16px;
    }
}


