@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pacifico&display=swap');

:root {
    --branco: #fff;
    --cinza: #333;
    --verde: #8DC3C3;
    --rosa-1: #F9D0D5;
    --rosa-2: #F0A7C1;
    --laranja-1: #FEB954;
    --laranja-2: #F2794C;
}

* {
    margin: 0 auto;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

/* formatação da barra superior */
.top-bar {
    background-color: var(--verde);
    color: var(--branco);
    font-weight: 400;
}

/* barra pre menu */
.second-bar {
    margin-top: 20px;
}

.second-bar .logo img {
    width: 300px;
}

.second-bar .container {
    align-items: center;
}

.second-bar a {
    color: var(--cinza);
    text-decoration: none;
    font-size: 18px;
}

.second-bar .shop a {
    background-color: var(--rosa-2);
    color: var(--branco);
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.second-bar .social a {
    background-color: var(--laranja-2);
    color: var(--branco);
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

/* formatação do menu */
.sticky {
    position: fixed !important;
    top: -19px !important;
    width: 100%;
    z-index: 999 !important;
}

.menu {
    background-color: var(--rosa-1) !important;
    padding: 10px 0 10px 0;
    margin-top: 20px;
}

.menu .nav-link {
    text-decoration: none;
    color: var(--laranja-2) !important;
    font-weight: 600;
}

.menu .nav-link:hover {
    color: var(--branco) !important;
}

.menu .links {
    display: flex;
    width: 700px;
    justify-content: center;
}

.title {
    color: var(--laranja-2);
    font-weight: 700;
}

/* formatação slide */
.carousel-item {
    height: 500px;
}

/* bloco de serviços oferecidos */
.servicos {
    padding-top: 50px;
}

.servicos .container h2 {
    text-align: center;
}

.servicos .blocos {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.servico {
    width: 300px;
    height: 300px;
    border-radius: 20px;
}

.servicos .blocos .servico img {
    width: 300px;
    border-radius: 20px;
}

.servicos .blocos .servico img:hover {
    transform: scale(1.05);
}

.servicos .blocos .servico img {
    transition: transform 0.3s ease-in-out;
}

/* bloco de contato */
.contatos {
    background-color: var(--verde);
    margin-top: 50px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.contatos .flor-1 {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 400px;
}

.contatos .flor-2 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 300px;
}

.contatos .title-central {
    font-weight: 900;
    font-size: 52px;
    color: var(--branco);
}

.contatos .sub-title-central {
    font-family: "Pacifico", cursive;
    font-size: 36px;
    color: var(--laranja-2);
}

.contatos .descricao-central {
    color: var(--branco);
    margin-top: 50px;
    margin-bottom: 10px;
}

.contatos .heart-bg {
    background-image: url("../images/heart.webp");
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 170px;
    margin-bottom: -100px;
}

.contatos label {
    color: var(--branco);
    font-weight: 700;
    margin: 0;
}

.formulario-contato {
    display: flex;
    margin: 0;
    justify-content: center;
    gap: 30px;
}

.formulario-contato .btn-contato {
    border: none;
    background-color: var(--laranja-2);
    padding: 0 30px 0 30px;
    font-weight: 700;
    color: var(--branco);
    border-radius: 20px;
}

.formulario-contato .btn-contato:hover {
    background-color: var(--rosa-2);
    color: var(--cinza);
}

.contatos input {
    border: none;
    border-radius: 15px;
    padding-left: 10px;
    color: var(--cinza);
    height: 40px;
    margin-left: 10px;
}

.contatos input[type=text]:focus {
    border: 2px solid var(--laranja-2);
}

/* bloco de portfolio */
.card_wrapper {
    margin-top: 100px;
}

/* bloco sobre nos */
.sobre-nos {
    margin-top: 100px;
}

.sobre-nos .content {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.sobre-nos .desc-sobre {
    width: 700px;
    margin: 0;
    text-align: center;
}

.sobre-nos .img-sobre {
    width: 400px;
    height: 400px;
    margin: 0;
}

.sobre-nos .img-sobre img {
    width: 100%;
}

/* formatação modal */
.modal-prod img {
    width: 600px;
}

/* formatação roda-pe */
footer {
    background-color: var(--verde);
    height: 70px;
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
}

footer p {
    color: var(--branco);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

footer .social a {
    color: var(--branco);
    font-size: 24px;
}

footer .social {
    gap: 20px;
}

/* formatação whats app */
.whats {
    width: 80px;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.whats a img {
    width: 100%;
}

/* resposivo */
@media (max-width: 900px) {
    .second-bar .logo img {
        width: 200px;
    }

    .shop {
        display: none;
    }

    .carousel-item {
        height: auto;
    }

    .menu .links {
        width: 100vw !important;
    }

    .menu .container-fluid{
        justify-content: end !important;
    }

    .menu .navbar-toggler{
        border: none;
        color: var(--laranja-2);
    }

    .servicos .blocos {
        flex-wrap: wrap;
        width: 100%;
        padding-top: 20px;
    }

    .servico {
        width: calc(50% - 20px);
        height: auto;
        margin-bottom: 20px;
    }

    .servicos .blocos .servico img {
        width: 100%;
    }

    .contatos .heart-bg {
        width: 80px;
        margin-bottom: -130px;
    }

    .contatos .flor-1, .contatos .flor-2 {
        width: 100px;
    }

    .contatos .flor-2 {
        top: 10px;
    }

    .contatos .title-central {
        font-size: 36px;
    }

    .contatos .sub-title-central {
        font-size: 24px;
    }

    .contatos .descricao-central {
        margin-top: 10px;
    }

    .contatos .formulario-contato {
        display: block;
        text-align: right;
        width: 320px;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .contatos .formulario-contato label {
        margin-top: 10px;
    }

    .contatos .formulario-contato .btn-contato {
        margin-top: 10px;
        line-height: 40px;
    }

    #produtos {
        margin-top: 150px;
    }

    .modal-body img {
        width: 100% !important;
    }

    .modal-content p {
        text-align: center !important;
    }

    .sobre-nos .content {
        display: block;
        width: 100vw;
    }

    .sobre-nos .title {
        font-weight: 700;
    }

    .sobre-nos .desc-sobre {
        width: 100vw;
    }

    .sobre-nos .desc-sobre .desc {
        width: 95%;
        text-align: justify;
    }

    .sobre-nos .img-sobre {
        width: 80%;
        margin: 0;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .whats {
        width: 70px;
        z-index: 99;
        margin-bottom: 100px;
    }

    footer {
        margin-bottom: 20px;
        padding: 0 20px 20px 0;
    }
}