@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lobster&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* 
font-family: "Roboto", sans-serif; Texto
font-family: "Anton", sans-serif; Link
font-family: "Lobster", sans-serif; Titulo
*/

body {
    font-family: "Roboto", sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: "Lobster", sans-serif;
}

.site {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    height: 150px;
    width: 100%;
    background: pink;

    .site {
        display: flex;
        justify-content: space-between;

        h1 {
            width: 280px;
            height: 100px;
            background: url(../img/logo1.png) no-repeat;
            background-size: 100% 100%;
            text-indent: -9999px;
            margin: 15px 0;
        }

        article {
            margin: 15px 0;
            width: 70%;

            div {
                display: flex;
                justify-content: space-between;
                height: 55px;

                p {
                    margin: auto;
                }

                div {
                    img {
                        height: 40px;
                        width: 40px;
                        margin: 5px;
                    }

                    img:hover {
                        height: 41px;
                        width: 41px;
                    }
                }
            }

            nav {
                display: flex;
                justify-content: space-between;
                ul {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    height: 65px;
                    font-family: "Anton", sans-serif;
                    font-size: 20px;
                    text-transform: uppercase;

                    li {
                        margin: auto;

                        a {
                            color: #401334;
                            text-decoration: none;
                        }

                        a:hover {
                            color: #8C3A67;
                        }
                    }
                }
                a {
                    .login {
                        height: 50px;
                    }
                }
            }
        }

    }
}

main {
    .banner {
        width: 100%;

        .slick-prev {
            left: 25px;
            z-index: 99;
        }

        img {
            width: 100%;
            height: 400px;
        }

        .slick-next {
            right: 25px;
        }

        .slick-prev:before,
        .slick-next:before {
            font-size: 30px;
            opacity: .5;
            color: #401334;
        }
    }

    /* SOBRE */
    .sobre {
        .site {
            margin: 50px auto;

            h2 {
                text-align: center;
                font-size: 35px;
                text-decoration: underline wavy 2px;
                margin-bottom: 40px;
            }

            >div {
                display: flex;
                justify-content: space-between;

                img {
                    width: 40%;
                    height: 300px;
                }

                div {
                    width: 60%;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    align-items: end;

                    p {
                        font-size: 20px;
                        line-height: 30px;
                        letter-spacing: 2px;
                        padding: 10px;
                    }

                    h3 {
                        text-align: center;
                        font-size: 25px;
                        background: #8C3A6720;
                        width: 150px;
                        padding: 10px;
                        border-radius: 10px;

                        a {
                            color: #401334;
                            text-decoration: none;
                        }

                        :hover {
                            color: #8C3A67;
                        }
                    }
                }

            }
        }
    }

    /* EQUIPE */
    .equipe {
        background: pink;
        padding: 50px 0;

        .site {
            h2 {
                text-align: center;
                font-size: 35px;
                text-decoration: underline wavy 2px;
                margin-bottom: 40px;
            }

            >div {
                display: flex;
                justify-content: space-around;

                div {
                    width: 25%;
                    text-align: center;

                    img {
                        width: 200px;
                        height: 200px;
                        border-radius: 50%;
                    }

                    h3 {
                        font-size: 30px;
                        letter-spacing: 2px;
                        line-height: 35px;
                    }

                    h4 {
                        font-size: 25px;
                        letter-spacing: 2px;
                        line-height: 30px;
                    }
                }
            }
        }
    }

    /* SERVIÇO */
    .servico {
        padding: 50px 0;

        .site {
            h2 {
                text-align: center;
                font-size: 35px;
                text-decoration: underline wavy 2px;
                margin-bottom: 40px;
            }

            >div {
                display: flex;
                justify-content: space-around;

                >div {
                    width: 30%;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;

                    div {
                        text-align: center;

                        h3 {
                            font-size: 30px;
                            letter-spacing: 2px;
                            line-height: 35px;
                        }

                        p {
                            font-size: 20px;
                            letter-spacing: 2px;
                            line-height: 25px;
                        }
                    }
                }

                img {
                    width: 200px;
                    height: 300px;
                    border-radius: 30px;
                }
            }
        }
    }

    /* GALERIA */
    .galeria {
        background: pink;
        padding: 50px 0;
        display: flex;
        justify-content: space-around;

        img {
            width: 200px;
            height: 200px;
            border-radius: 15px;
        }
    }
}

footer {
    padding-top: 50px;

    .info {
        .site {
            display: flex;
            justify-content: space-around;

            div {
                width: 30%;
                text-align: center;
                background-color: #8C3A6720;
                padding: 20px 0;
                border-radius: 25px;
                box-shadow: 10px 20px 20px #401334;
            }

            div:nth-child(1) {
                color: #401334;

                img {
                    width: 90%;
                    margin-bottom: 50px;
                }

                h2 {
                    font-size: 30px;
                    margin: 15px auto;
                }

                h3 {
                    font-size: 25px;
                }
            }

            div:nth-child(2) {
                nav {
                    ul {
                        li {
                            margin: 35px auto;
                            font-size: 25px;

                            a {
                                text-decoration: none;
                                color: #8C3A67;
                            }
                        }
                    }
                }
            }

            div:nth-child(3) {
                iframe {
                    width: 90%;
                    height: 250px;
                    margin-bottom: 30px;
                }

                p {
                    font-size: 20px;
                    font-weight: bold;
                    color: #401334;
                }
            }
        }
    }

    .desenvolvedor {
        background-color: #8C3A67;
        margin: 20px 0 0 0;
        padding: 20px 0;

        p {
            text-align: center;
            font-family: "Lobster", sans-serif;
            color: #401334;
        }
    }
}

#contato {
    padding: 50px 0;
    font-size: 40px;

    h2 {
        text-align: center;
    }

    .contato-form {
        display: flex;
        justify-content: space-between;

        div {
            width: 40%;
            text-align: left;

            label {
                width: 80%;
                font-family: "Anton", sans-serif;
                font-size: 25px;
            }

            input {
                width: 100%;
                font-family: "Anton", sans-serif;
                font-size: 20px;
            }

            textarea {
                width: 100%;
                font-family: "Anton", sans-serif;
                font-size: 20px;
                resize: none;
            }

            div {
                display: flex;
                justify-content: center;
                width: 90%;

                button {
                    width: 50%;
                    font-size: 20px;
                    font-family: "Anton", sans-serif;
                    background: #401334;
                    color: white;
                    margin: 10px;
                }

                button:hover {
                    background: #8C3A67;
                }
            }
        }
    }
}

/* ===========================
   LOGIN
=========================== */
.tela-login {
    background: linear-gradient(135deg, #FADADD, #F7BFD1);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.tela-login .site {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-login {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(64, 19, 52, 0.3);
    text-align: center;
}

.card-login h2 {
    font-family: "Lobster", sans-serif;
    font-size: 32px;
    color: #401334;
    margin-bottom: 10px;
}

.card-login p {
    color: #8C3A67;
    font-size: 18px;
    margin-bottom: 30px;
}

.card-login form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.card-login .campo {
    text-align: left;
    margin-bottom: 20px;
}

.card-login .campo label {
    font-family: "Anton", sans-serif;
    color: #401334;
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.card-login .campo input {
    width: 100%;
    padding: 12px;
    border: 2px solid #F2AFC4;
    border-radius: 10px;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: #401334;
    transition: 0.3s;
}

.card-login .campo input:focus {
    outline: none;
    border-color: #8C3A67;
    box-shadow: 0 0 5px #F2AFC4;
}

.card-login .acoes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.card-login .acoes button {
    width: 100%;
    padding: 12px;
    background: #401334;
    color: #fff;
    font-family: "Anton", sans-serif;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.card-login .acoes button:hover {
    background: #8C3A67;
}

.card-login .acoes a {
    margin-top: 10px;
    color: #8C3A67;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.card-login .acoes a:hover {
    color: #401334;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 480px) {
    .card-login {
        width: 90%;
        padding: 30px 20px;
    }

    .card-login h2 {
        font-size: 26px;
    }

    .card-login p {
        font-size: 16px;
    }
}


@media (max-width: 1024px) {
    main {
        .galeria {
            img {
                width: 150px;
                height: 150px;
            }
        }
    }
}

@media (max-width: 768px) {
    main {

        #contato {
            .contato-form {
                flex-direction: column;
                align-items: center;

                div {
                    width: 90%;
                }
            }
        }

        .galeria {
            img:nth-child(5) {
                display: none;
            }

            img:nth-child(6) {
                display: none;
            }
        }
    }

    footer {
        .info {
            .site {
                div:nth-child(1) {
                    h2 {
                        font-size: 20px;
                    }

                    h3 {
                        font-size: 15px;
                    }
                }

                div:nth-child(2) {
                    nav {
                        ul {
                            li {
                                margin: 25px auto;
                                font-size: 20px;
                            }
                        }
                    }
                }

                div:nth-child(3) {
                    iframe {
                        height: 160px;
                    }

                    p {
                        font-size: 17px;
                    }
                }
            }
        }
    }
}

@media (min-width: 481px) {

    .abrirMenu,
    .fecharMenu {
        display: none;
    }
}

@media (max-width: 480px) {
    .menuAtivo {
        header {
            nav {
                right: 0px !important;
            }
        }
    }

    header {
        height: auto;

        .site {
            h1 {
                width: 200px;
                height: 70px;
                margin: 15px auto;
            }

            article {
                div {
                    display: none;
                }

                .abrirMenu {
                    background: url(../img/menu.png) no-repeat;
                    width: 50px;
                    height: 50px;
                    background-size: 100% 100%;
                    border: none;
                    right: 5%;
                    top: 3%;
                    position: fixed;
                }

                nav {
                    position: fixed;
                    flex-direction: column;
                    align-items: center;
                    height: 100%;
                    z-index: 9999;
                    background: #8C3A6780;
                    top: 0;
                    width: 50%;
                    padding: 10px;
                    max-width: 240px;
                    right: -300px;
                    transition: right 1s ease-out;

                    .fecharMenu {
                        background: url(../img/fechar.png) no-repeat;
                        width: 50px;
                        height: 50px;
                        background-size: 100% 100%;
                        border: none;
                    }

                    ul {
                        flex-direction: column;
                        height: auto;

                        li {
                            margin: 15px auto;
                            font-size: 1.5em;
                        }
                    }
                    a{
                        .login{
                            margin-bottom: 100px;
                        }
                    }
                }
            }

        }
    }

    main {
        .banner {
            display: none;
        }

        .sobre {
            .site {
                margin: 20px auto;

                h2 {
                    margin-bottom: 20px;
                }

                >div {
                    flex-direction: column;

                    img {
                        width: 80%;
                        height: 230px;
                        margin: 0 auto;
                    }

                    div {
                        width: 100%;

                        p {
                            font-size: 14px;
                            line-height: 18px;
                            letter-spacing: 1px;
                            padding: 0 10%;
                            text-align: justify;
                        }

                        h3 {
                            font-size: 18px;
                            width: 100px;
                            margin-right: 30px;
                        }
                    }
                }
            }
        }

        .equipe {
            padding: 20px 0;

            .site {
                h2 {
                    margin-bottom: 20px;
                }

                >div {
                    flex-direction: column;

                    div {
                        width: 100%;
                        margin-bottom: 5px;

                        img {
                            width: 150px;
                            height: 150px;
                        }

                        h3 {
                            font-size: 20px;
                            line-height: 25px;
                        }

                        h4 {
                            font-size: 15px;
                            line-height: 20px;
                        }
                    }
                }
            }
        }

        .servico {
            padding: 20px 0;

            .site {
                h2 {
                    margin-bottom: 20px;
                }

                >div {
                    div {
                        display: none;
                    }
                }
            }
        }

        .galeria {
            img:nth-child(3) {
                display: none;
            }

            img:nth-child(4) {
                display: none;
            }
        }
    }

    footer {
        .info {
            .site {
                flex-direction: column;

                div:nth-child(1) {
                    width: 90%;
                    margin: 0 auto;

                    img {
                        width: 70%;
                        margin-bottom: 5px;
                    }
                }

                div:nth-child(2) {
                    display: none;
                }

                div:nth-child(3) {
                    width: 90%;
                    margin: 20px auto;

                    iframe {
                        margin-bottom: 5px;
                    }
                }
            }
        }
    }
}