@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&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&display=swap');

* {
    font-family: "Poppins", sans-serif;
}

:root {
    --blue: #5eb7ae;
    --dark-blue: #005250;
    --yellow: #f9c43b;
    --dark-yellow: #fbc249;
    --red: #d14f47;
    --wine: #922930;
    --grey: #383838;
    --orange: #f68857;
    --dark-orange: #953c15;
}

html, body {
    background-color: #fefefe;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    padding: 0 24px;
}

.text-red {
    color: var(--red);
}

.text-blue {
    color: var(--blue);
}

.text-dark-blue {
    color: var(--dark-blue);
}

.text-yellow {
    color: var(--yellow);
}

.text-wine {
    color: var(--wine);
}

.text-grey {
    color: var(--grey);
}

.text-orange {
    color: var(--orange);
}

.text-dark-orange {
    color: var(--dark-orange);
}

.bg-red {
    background-color: var(--red);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-wine {
    background-color: var(--wine);
}

.bg-grey {
    background-color: var(--grey);
}

.bg-orange {
    background-color: var(--orange);
}

.header {
    margin-top: 24px;
    margin-bottom: 24px;
}

.header ul {
    margin-bottom: 0;
}

.header li {
    display: inline-block;
    list-style: none;
    text-transform: uppercase;
    margin-right: 16px;
    font-weight: bold;
    font-size: 14px;
}

.header nav a {
    color: var(--dark-blue);
}

.header_redes_ico {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin: 0 0 0 8px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banners {
    margin: 0 auto;
    margin-bottom: -28px;
    position: relative;
    z-index: 0;
}

.btn-box {
    position: relative;
    z-index: 99;
}

.btn {
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    padding: 16px 32px;
    line-height: 100%;
}

.btn-red {
    background-color: var(--red);
    color: #fff;
}

.btn-red:hover {
    background-color: var(--red);
    color: #fff;
}

.btn-blue {
    background-color: var(--blue);
    color: #fff;
}

.btn-blue:hover {
    background-color: var(--blue);
    color: #fff;
}

.btn-orange {
    background-color: var(--orange);
    color: #fff;
}

.btn-orange:hover {
    background-color: var(--orange);
    color: #fff;
}

.btn-yellow {
    background-color: var(--yellow);
    color: #fff;
}

.btn-yellow:hover {
    background-color: var(--yellow);
    color: #fff;
}

.btn svg {
    margin-top: -3px;
    margin-right: 6px;
}

.catalogo {
    margin-top: 48px;
}

.catalogo .row>a {
    padding: 0;
}

.catalogo img {
    border-radius: 12px;
}

.catalogo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.catalogo-item .title {
    font-size: 18px;
    line-height: 110%;
    font-weight: 900;
    margin-bottom: 8px;
}

.catalogo-item .text {
    font-size: 14px;
    line-height: 110%;
}

.catalogo-item-ico {
    width: 72px;
    height: 72px;
    background-color: #fff;
    border-radius: 12px;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 8px;
}

#about .title {
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
}

#about .text {
}

.btn-fixed-agende {
    position: fixed;
    z-index: 999;
    right: -16px;
    bottom: 30px;
    line-height: 120%;
    background-color: var(--orange);
    border-radius: 12px 0 0 12px;
    padding: 8px 32px 8px 16px;
    font-size: 12px;
    color: #fff;
    box-shadow: rgba(0,0,0,.3) 0 1px 2px;
}

.btn-fixed-agende:hover {
    right: -8px;
}

.btn-fixed-agende a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.experiences {
    padding: 0;
    margin-bottom: 0;
}

.experiences p {
    margin-bottom: 0;
    background-color: #111;
}

.experiences:hover img {
}

.experiences p:hover img {
    opacity: 1;
}

.experience {
    padding: 0 32px;
}

.experience-title {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 24px;
    line-height: 100%;
}

.experience ul {
    list-style: none;
    padding-left: 0;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 32px;
}

.experience li {
    margin-bottom: 8px;
}

#location {
    padding: 60px 0;
}

#location .title {
    font-size: 24px;
    font-weight: 900;
    line-height: 120%;
    text-transform: uppercase;
}

.comments {
    background: var(--blue) url('images/bg_comments.png') no-repeat center top;
    min-height: 600px;
    align-items: center;
    display: flex;
    padding: 64px 0;
}

.comments-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 16px;
}

.comment {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: rgba(0,0,0,.3) 0px 0px 20px;
    margin-bottom: 16px;
}

.comment-title {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--red);
    font-size: 18px;
}

.comment-title img {
    border-radius: 50px;
    margin-right: 8px;
}

#diferenciais {
    padding: 0;
    margin-top: 16px;
}

#diferenciais li {
    display: inline-block;
    list-style: none;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 120%;
    margin: 0 8px;
    color: var(--dark-orange);
    font-weight: bold;
}

#diferenciais li:first-of-type {
    margin-left: 0;
}

#diferenciais li>img {
    max-width: 28px;
    display: block;
    margin: 0 auto 8px auto;
}

#about {
    padding-top: 64px;
    padding-bottom: 64px;
}

#fotosloja .carousel-item {
    text-align: center;
}

#fotosloja .carousel-item img {
    max-height: 600px;
}

#about-images img {
    max-width: 100%;
}

@media(max-width: 767px){
    .experiences>div {
        flex-wrap: wrap;
    }
}