<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", serif;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #1f3345;
    color: #f0ede5;
}

/*WhatsApp Button*/
.wpp-btn {
    z-index: 99;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 15px;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: 50px;
    padding: 20px;
    background-color: #c78f57;
    cursor: pointer;
    transition: 0.5s;
}

.wpp-btn p {
    margin-left: 15px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s linear;
    transition-delay: 0.2s;
    color: #f0ede5;
}

.wpp-btn img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 12px;
    color: #f0ede5;
}

/*Scroll to Top Button*/
.scroll-btn {
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    padding: 20px;
    border: none;
    cursor: pointer;
    background-color: #c78f57;

    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: translateY(30px);
    }
}

.scroll-btn img {
    height: 20px;
    width: 20px;
}

/*Universal*/
section {
    margin: 0 70px;
    padding: 70px;
}

div.txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
}

h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #c78f57;
}

.btn {
    padding: 10px 20px;
    background-color: #c78f57;
    width: max-content;
    border-radius: 20px;
    color: #f0ede5;
    margin-top: 15px;
}

p {
    font-weight: 300;
    font-size: 14px;
}

section {
    width: 75vw;
    margin: 0 auto;
    gap: 28px;
}

/*Header*/
header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 15px 150px;
    z-index: 1;
}

header .logo {
    width: 200px;
}

header #menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header #menu #item {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    color: #f0ede5;
    margin: 0 1vw;
    padding: 0 5px;
}

header #menu #item.active {
    color: #c78f57;
    font-weight: 600;
}

header .btn {
    margin: 0;
}

#btn-mobile {
    display: none;
}

/*Main*/
.main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.main img {
    max-width: 400px;
}

.mainBtn {
    display: flex;
    gap: 20px;
}

.main .mainBtn .btn2 {
    background-color: transparent;
    border: 2px solid #c78f57;
}


/*Sobre*/
.sobre {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre .sobreImg img {
    width: 350px;
    height: 450px;
    border-radius: 15px;
}

.sobre div {
    max-width: 500px;
}

/*ServiÃ§os*/
.servicos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.servicos p {
    max-width: 700px;
}

.servicos .servicosSection {
    display: flex;
}

.servicos .servicosSectionTop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 50px;
}

.servicos .servicosSectionBot {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.servicos .servicosSectionBtn {
    margin-top: 30px;
}

.servicos .servicosSectionBot-div {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    height: 180px;
    width: 100%;
}

.servicos .container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: #c78f57;
    padding: 20px;
    border-radius: 7px;
}

.servicos .container h1 {
    font-size: 18px;
    text-align: center;
}

.servicos .container span {
    font-size: 28px;
    border-radius: 50%;
    padding: 7px;
    background-color: #1a2c3c;
    display: flex;
    color: #c78f57;
}

/*Contato*/
.contato {
    display: flex;
    justify-content: space-between;
}

.contato .contatoText {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.contato .contatoText .btn {
    display: flex;
    align-items: center;
}

.contato .contatoText .btn img {
    width: 15px;
    margin-right: 10px;
}

/*Contato Form*/
.contato form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contato form .field {
    border: none;
    background-color: #c78f57;
    padding: 10px 15px;
    border-radius: 15px;
    color: #f0ede5;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 40px;
}

.contato form .field:focus, .contato form .field:active {
    outline: none;
    border: none;
    background-color: #c78f57;
}

.contato form .field::placeholder {
    color: #f0ede5;
}

.contato form .btn {
    border: none;
    cursor: pointer;
}

.contato form p {
    font-weight: 200;
}

/*Clientes*/
.clientes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.clientes .clientesText {
    text-align: center;
    width: 50%;
}

.clientes .clientesBottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 25px;
}

.clientes .clientes-container img {
    width: 30px;
    height: 30px;
}

.clientes .clientes-container {
    max-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #c78f57;
    padding: 15px;
    border-radius: 20px;
    padding-bottom: 45px;
    width: 100%;
}

.clientes .clientesRating {
    text-align: right;
    color: #f0ede5;
    font-weight: 500;
    font-size: 16px;
    position: absolute;
    bottom: 15px;
    right: 22px;
}

/*Area*/
.area {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 70px;
}

.area div {
    max-width: 500px;
}

.area img {
    width: 500px;
}

/*Footer*/
footer {
    display: flex;
    flex-direction: column;
}

footer h2 {
    text-transform: initial;
}

footer .footerTop {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

footer .footerTop .footerTop-div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

footer .footerTop-div a {
    color: #f0ede5;
    font-weight: 300;
    font-size: 14px;
}

footer .footerTop-div-txt {
    display: flex;
    flex-direction: column;
}

footer .footerTop-div img {
    width: 200px;
    margin-bottom: 15px;
}

footer .footerTop-div .footer-socialMedia {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
}

footer .footerTop-div ion-icon {
    color: #c78f57;
    font-size: 18px;
}

footer .footerBot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid #878a8f;
}

/*Responsive PC*/
@media screen and (min-width:1024px) {
    /*Header*/
    header #menu #item::after {
        content: "";
        position: absolute;
        background-color: #c78f57;
        height: 1.5px;
        width: 0;
        left: 0;
        bottom: -5px;
        transition: 0.4s;
    }

    header #menu #item:hover {
        color: #c78f57;
    }

    header #menu #item:hover::after {
        width: 100%;
    }

    /*WhatsApp Button*/
    .wpp-btn:hover {
        width: 230px;
    }

    .wpp-btn:hover p {
        visibility: visible;
        opacity: 1;
    }
}

/*Responsive Tablet*/
@media screen and (min-width: 767px) and (max-width: 1024px) {
    /*Header*/
    header {
        padding: 10px 25px;
        justify-content: space-around;
        align-items: center;
    }

    header .logo {
        width: 140px;
    }

    header a, header #menu #item {
        font-size: 14px;
    }

    section {
        width: 100%;
        padding: 36px;
        gap: 36px;
    }

    .main img {
        width: 250px;
    }

    .sobre .sobreImg img {
        width: 100%;
    }

    .servicos {
        gap: 10px;
    }

    .servicos .servicosSectionTop {
        gap: 36px;
    }

    .servicos .servicosSectionBot-div h1 {
        font-size: 16px;
    }

    .servicos .btn {
        margin-top: 0;
    }

    .area {
        gap: 36px;
    }

    .area img {
        width: 280px;
    }

    footer {
        padding: 0 28px;
    }

    footer .footerTop {
        gap: 36px;
    }
}

/*Responsive Smartphone*/
@media screen and (max-width: 767px) {
    /*Header*/
    header {
        position: static;
        box-sizing: border-box;
        height: 70px;
        padding: 1rem;
        display: flex;
        align-items: center;
        background-color: #1f3345;
        justify-content: space-between;
    }

    header .logo {
        width: 150px;
    }

    header .btn {
        display: none;
    }

    header #menu {
        display: block;
        position: absolute;
        width: 100%;
        top: 70px;
        right: 0;
        left: 0;
        background: #1f3345;
        border-top: 0.4px solid #c78f57;
        transition: 0.6s;
        z-index: 10000;
        height: 0;
        visibility: hidden;
        overflow-y: hidden;
    }

    #nav.active #menu {
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }

    header #menu #item {
        display: block;
        padding: 1rem 0;
        margin: 0 1rem;
        border-bottom: 0.4px solid #c78f57;
    }

    header #btn-mobile {
        color: #c78f57;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
    }

    #btn-mobile {
        display: flex;
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border: none;
        background: none;
        cursor: pointer;
        gap: 0.5rem;
    }

    #hamburger {
        border-top: 2px solid;
        width: 20px;
    }

    #hamburger::after,
    #hamburger::before {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: 0.3s;
        position: relative;
    }

    #nav.active #hamburger {
        border-top-color: transparent;
    }

    #nav.active #hamburger::before {
        transform: rotate(135deg);
    }

    #nav.active #hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    /*Universal*/
    section {
        margin: auto;
        padding: 28px;
        width: 100%;
    }

    /*Main*/
    .main {
        flex-direction: column;
        gap: 15px;
    }

    .main .mainText {
        width: 100%;
        text-align: center;
    }

    .main img {
        width: 100%;
    }

    .servicos {
        gap: 0;
    }

    .servicos .servicosSectionTop {
        flex-direction: column;
    }

    .servicos .servicosSectionBot-div {
        flex-wrap: wrap;
        height: auto;
    }

    .servicos .servicosSectionBtn {
        margin-top: 15px;
    }

    /*Sobre*/
    .sobre {
        gap: 0;
    }

    .sobre img {
        display: none;
    }

    .sobre .btn {
        align-self: center;
    }

    .area {
        flex-direction: column;
    }

    .area .btn {
        align-self: center;
    }

    .area img {
        width: 100%;
    }

    .contato {
        flex-direction: column;
        gap: 28px;
    }

    .contato .contatoText {
        width: 100%;
    }

    .clientes .clientesText {
        width: 100%;
    }

    .clientes .clientesBottom {
        flex-direction: column;
    }

    footer {
        padding: 28px;
    }

    footer .footerTop {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    footer .footerTop-div {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footerBot {
        text-align: center;
    }
}
</pre></body></html>