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

:root {
    font-size: 62.5%;
    --primary-color:#1d65b9;
    --secondary-color: #66B646;
    --third-color: #242424;

    --white-color:#FFFFFF;
    --base-color: #FBFBFB;

    
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Inter', sans-serif;
    
}

html,
body {
    font-family: var(--primary-font);    
    font-size: 1.6rem;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    color: var(--primary-color);
}

p, a, span {
    font-family: var(--secondary-font);
    color: var(--third-color);
}

a {
    cursor: pointer;
    text-decoration: none;
    color: unset;
}

ul li {
    list-style: none;
}

.fab {
    font-size: 2.4rem;
}

.fas {
    font-size: 2.2rem;
}


/* HEADER */
header {
    display: block;
}

nav {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 1.3rem 5rem;
    width: 100%;
    height: 9rem;
    justify-content: space-between;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    background: var(--white-color);
}

nav .container .row {
    flex-wrap: nowrap;
    align-items: center;
}

.nav-logo, .nav-list, .nav-social {
    width: unset;
}

.nav-logo img {
    object-fit: contain;
    width: 18rem;
    height: 6rem;
}

.nav-logo img:hover {
    transform: scale(1.3);
    transition: 0.5s ease-in-out;
}

.nav-list {
    margin: 15px auto 0;
}

nav ul {
    display: flex;
    gap: 5rem;
}

nav ul li a {
    font-weight: 600;
    color: var(--primary-color);
}

.nav-list ul li:hover {
    transform: scale(1.1);
    transition: 0.2s ease;
}

.nav-list ul li a:hover { 
    color: var(--secondary-color);
    transition: 0.2s ease;
}

.nav-social {
    margin-top: 5px;
}

.module-contact {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.module-contact .btn {
    width: 18rem;
    padding: 0 1.5rem;
}

.btn--secondary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    border: none;
    width: 170px;
    height: 50px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-radius: 4px;
    color: var(--white-color);
    padding: 0 30px;
}

.btn:hover {
    color: var(--white-color);
}

.btn:hover::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.btn--secondary::before {
    background-color: var(--secondary-color);
}

.btn::before {
    content: '';
    position: absolute;
    width: calc(100%);
    height: calc(100%);
    top: 0px;
    left: 0px;
    z-index: -1;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
    transition: -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
    -o-transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
    transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
    transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9), -webkit-transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
    border-radius: inherit;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--white-color);
}

.mobile-menu, .mobile-icon-menu {
    display: none;
}

/* SECTION 01 */

.section-01 {
    background: url('../img/banner-h1.webp') var(--primary-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-h1 {
    padding: 26rem 2rem 22rem;
    color: var(--white-color);
    max-width: 99rem;
}

.sub-title h4 {
    font-weight: 600;
    line-height: 3rem;
    text-transform: uppercase;
    padding-bottom: 1rem;
    color: var(--white-color);
}

.banner-h1 h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.banner-h1 h1 span {
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--white-color);
}

.banner-h1 p {
    line-height: 2.8rem;
    margin-bottom: 3rem;
    color: var(--white-color);
}

.btn-contact {
    padding: 10px 20px;
    border: 1px solid var(--white-color);
    border-radius: 10px;
}

.btn-contact:hover{
    background: var(--primary-color);
    transition: 0.4s ease;
}

.fa-brush {
    font-size: 25px;
}


/* SECTION 02 */

.section-02 {
    position: relative;
    padding: 5rem 0;
}

.auto-container {
    max-width: 129rem;
    margin: 0 auto;
}

.about-section {
    margin: 0 1.2rem;
}

.about-left {
    position: relative;
}

.about-left .row {
    justify-content: right;
}

.inner_box {
    position: relative;
    display: block;
}

.inner_box .image_box {
    position: relative;
    display: block;
    overflow: hidden;
}

figure {
    margin: 0px;
}

.inner_box .image_box img {
    width: 100%;
}

.section-02 img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: 150px;
}

.about-image-block-two {
    padding-left: 2rem;
}

.about-image-block:nth-child(2) {
    padding-top: 2rem;
}

.sub-title h5 {
    font-style: normal;
    font-weight: 600;
    line-height: 3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.title-first {
    display: none;
}

.main-title h2 {
    padding: 2rem 0 3rem;
    font-weight: 800;
    font-size: 5rem;
    line-height: 5.5rem;
    margin-bottom: 0;
}

.about-right .normal-text {
    padding-bottom: 3.4rem;
}

.normal-text p {
    position: relative;
    font-family: var(--secondary-font);
    font-style: normal;
    font-weight: 400;
    line-height: 2.9rem;
    color: var(--third-color);
    transition: all .5s ease;
    margin-bottom: 0;
}

.about-right .btn-section {
    padding-top: 1.3rem;
    display: inline-block;
}

.btn-one {
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem;
    font-family: var(--secondary-font);
    font-style: normal;
    font-weight: 600;
    line-height: 1.9px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.mobile-imagem {
    display: none !important;
}


/* SECTION 03 */
.section-03 {
    padding: 5rem 0;
}

.section-03 .title {
    text-align: center;
}

.section-03 .prod-img img {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 2.5rem;
}

.section-03 .prod-title h3 {
    font-weight: 700;
    font-size: 2.5rem;
}

.section-03 .prod-title {
    padding: 1rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.section-03 .prod-title .btn{
    width: 7rem;
    height: 3rem;
}

.section-03 .services {
    background-color: var(--primary-color);
    padding: 5rem 0;
    margin-top: 5rem;
}

.section-03 .service-container {
    background-color: var(--white-color);
    border-radius: 2.5rem;
}

.section-03 .card-content {
    padding: 3rem 9rem 5rem;
}

.section-03 .card-icon img {
    width: 12rem;
    height: 16rem;
    margin-right: 7rem;
}

.section-03 .card-body {
    display: flex;
}

.section-03 .card-content .card-infos h3 {
    font-weight: 700;
    padding-bottom: 1rem;
}

.section-03 .card-content .card-infos p {
    padding-bottom: 1rem;
}

.section-03 .services .card-content .advantages-box {
    display: flex;
}

.advantages-box i {
    padding-right: 0.5rem;
    color: var(--secondary-color);
}


/* SECTION 04 - CONTATO */
.section-04 .advantages-box ul li i {
    font-size: 1.6rem;
}

.section-04 .endereco-mobile {
    display: none;
}



/* SECTION 05 - BLOG */
.blog-area {
    background-color: #f6f6f6;
    padding: 10rem;
}

.blog-area h5 {
    color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    
}

.blog-area .title .main-title h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-area h3 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-top: 30px;
    padding: 0 100px 50px;
}

.home-blog-active .slick-dots {
    text-align: center;
    margin-top: 30px;
}

.home-blog-active .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.home-blog-active .slick-dots li button {
    text-indent: -99999px;
    border: none;
    padding: 0;
    margin-left: 10px;
    border-radius: 50px;
    z-index: 1;
    cursor: pointer;
    background: no-repeat;
    transition: .3s;
}

.home-blog-active .slick-dots li.slick-active button::before {
    opacity: 1;
}

.home-blog-active .slick-dots li button::before {
    content: "";
    width: 19px;
    height: 19px;
    float: left;
    position: relative;
    margin-top: -9px;
    left: -19px;
    border-radius: 50%;
    opacity: .7;
    background-repeat: no-repeat;
    background-position: center;
}

.home-blog-active .slick-arrow,
.home-blog-active2 .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -154px;
    border: none;
    background: none;
    padding: 0;
    color: #f6fbff;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
    width: 60px;
    height: 60px;
    text-align: center;
    color: #fff;
    background: #222629;
    font-size: 24px;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.07);
    border-radius: 50%;
}


.home-blog-active .slick-arrow.slick-next,
.home-blog-active2 .slick-arrow.slick-next {
    right: -154px;
    left: auto;
}

.home-blog-active .slick-arrow:hover,
.home-blog-active2 .slick-arrow:hover {
    background: var(--primary-color);
    color: #fff;
}

.home-blog-active2 .slick-dots {
    text-align: center;
    position: relative;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.home-blog-active2 .slick-dots li button {
    text-indent: -99999px;
    border: none;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    z-index: 1;
    cursor: pointer;
    transition: .3s;
    background-color: #ababab;
    height: 10px;
    width: 10px;
    border-radius: 5px;
}

.home-blog-active2 .slick-dots .slick-active button {
    border-radius: 5px;
    background-color: #bc986b;
}

.home-blog-active2 .slick-dots li {
    display: inline-block;
    margin: 0 0px;
}

.blog-thumb img {
    width: 100%;
}

.blog-thumb .b-meta {
    padding: 30px 25px 0;
    color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.blog-thumb img {
    visibility: hidden;
}

.blog-thumb:hover img {
    visibility: visible;
}

.blog-content {
    background: #fff;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

.single-post .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: none;
    padding-bottom: 30px;
}

.blog-content h4 {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-content h4:hover a {
    color: var(--primary-color);
}

.blog-thumb:hover::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color) 0% 0% no-repeat padding-box;
    opacity: 0.8;
    display: inline-block;
}

.blog-thumb2 {
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.blog-thumb2 img {
    width: auto;
    max-width: inherit !important;
    height: 300px !important;
    
}

.blog-thumb2 .b-meta {
    padding: 30px 25px 0;
    color: var(--primary-color);
    top: 0;
    left: 0;
    z-index: 1;
}

.blog-content2 {
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.blog-content2 .date-home {
    position: absolute;
    top: -20px;
    background: var(--third-color);
    color: #fff;
    padding: 5px 15px;
    right: 30px;
    box-shadow: 1px 1.732px 30px 0px rgba(65, 105, 191, 0.6);
}

.blog-area .single-post2 {
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.09);
    overflow: hidden;
}

.blog-content2 .b-meta {
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-content2 .b-meta ul {
    padding-left: 0 !important;
}

.blog-content2 h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-content2 h4 a {
    text-decoration: none;
    line-height: 30px;
}

.adim-box {
    display: flex;
}

.adim-box .text {
    padding-top: 10px;
    padding-left: 15px;
    font-size: 14px;
    color: var(--secondary-color);
}

.blog-thumb:hover .b-meta h4,
.blog-thumb:hover .b-meta h4 a:hover {
    color: #fff;
}

.b-meta ul li {
    display: inline-block;
    margin-right: 8px;
    border-right: 2px solid #f5f5f5;
    padding-right: 8px;
}

.b-meta ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

.b-meta ul li a {
    font-size: 14px;
    text-transform: uppercase;
    color: #444d69;
}

.b-meta ul li a.corpo {
    color: var(--primary-color);
}

.b-meta ul li a:hover {
    color: var(--primary-color);
}


.single-post:hover .blog-btn {
    opacity: 1;
}

.blog-btn a {
    display: inline-block;
    color: var(--primary-color);
    text-align: center;
    font-size: 14px;
    border-bottom: 3px solid var(--primary-color);
}

.blog-btn a:hover {
    color: var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.blog-btn2 a {
    display: inline-block;
    color: #C0C0C0;
    text-align: center;
    font-size: 14px;
}

.blog-btn a i {
    margin-left: 5px;
}

.b-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.single-post {
    transition: .3s;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 3px 4px 15px #00000026;
}

.blog-thumb {
    position: relative;
}

.bsingle__post-thumb img {
    width: 100%;
    height: auto;
}

.bsingle__post .video-p {
    position: relative;
}

.bsingle__post .video-p .video-i {
    height: 80px;
    width: 80px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
}

.blog-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    border: none;
    background: none;
    padding: 0;
    font-size: 30px;
    color: #fff;
    z-index: 9;
    opacity: .4;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
}

.blog-active .slick-arrow.slick-next {
    right: 40px;
    left: auto;
}

.blog-active .slick-arrow:hover {
    opacity: 1;
}

.bsingle__content {
    padding: 40px 30px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(243, 243, 243);
    position: relative;
}

.bsingle__content .admin {
    position: absolute;
    top: -35px;
    background: #fff;
    background-color: rgb(255, 255, 255);
    padding: 15px 25px;
    border-radius: 10px;
    right: 20px;
    border-radius: 0;
    background-color: rgb(182, 140, 90);
    box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
    font-weight: 500;
    color: #fff;
}

.bsingle__content .admin i {
    margin-right: 10px;
    font-size: 18px;
}

.blog-details-wrap .meta-info ul {
    padding-top: 25px;
    border-top: 2px solid #f5f5f5;
    padding-bottom: 25px;
}

.blog-details-wrap .meta-info ul li {
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
    font-weight: 500;
    padding-right: 15px;
    border-right: 2px solid #f5f5f5;
}

.blog-details-wrap .meta-info ul li i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-details-wrap .meta-info ul li:last-child {
    border: none;
}

.bsingle__content .meta-info ul {
    padding-bottom: 0;
    border-bottom: none;
    display: inline-block;
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
}

.blog-deatails-box02 .meta-info ul {
    padding-left: 0;
}

.bsingle__content .meta-info ul li {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    font-weight: 500;
    padding-right: 10px;
    border-right: 2px solid #f5f5f5;
}

.bsingle__content .meta-info ul li:last-child {
    border: none;
}

.bsingle__content .meta-info ul li a {
    color: #3763eb;
    text-transform: capitalize;
}

.bsingle__content .meta-info ul li a i {
    margin-right: 5px;
}

.bsingle__content .meta-info ul li a:hover {
    color: var(--primary-color);
}

.bsingle__content .meta-info ul li i {
    margin-right: 10px;
    color: #fff;
    background: var(--primary-color);
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    float: left;
    border-radius: 50%;
    padding-right: 0;
}

.bsingle__content h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 500;
}

.bsingle__content h2:hover a {
    color: var(--primary-color);
}

.bsingle__content p {
    margin-bottom: 25px;
}

.bsingle__content .blog__btn .btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.bsingle__content .blog__btn .btn::before {
    content: none;
}

.bsingle__content .blog__btn .btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* SECTION 04 - CONTATO */

.section-04 .title {
    text-align: center;
}

.section-04 .cidades-contato .advantages-box {
    display: flex;
    justify-content: center;
}

.section-04 .cidades-contato .main-title h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 1rem;
}

.section-04 .cidades-contato .infos-contato {
    padding-top: 2rem;
}

.section-04 .cidades-contato .infos-contato .informacoes {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.section-04 .cidades-contato .infos-contato .endereco {
    text-align: center;
}

.section-04 .cidades-contato .module-contact {
    justify-content: center;
    text-align: center;
    padding: 2rem 0 5rem;
}

.informacoes .fa-whatsapp {
    color: var(--third-color) !important;
}

.google-maps {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

/* FOOTER */

footer {
    background: var(--third-color);
    color: var(--white-color);
    padding: 50px 200px 75px;
}

.footer-title {
    margin-bottom: 5rem;
}

footer h2 {
    font-size: 36px;
    text-align: center;
    color: var(--white-color);
}

footer p {
    text-align: center;
    color: var(--white-color);
}

.infos-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.infos-footer p {
    color: var(--white-color);
}

.footer-logo img {
    width: 280px;
    height: 100px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-social i {
    color: var(--white-color);
}

.footer-dev {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--white-color);
    background: var(--third-color);
    padding: 1rem;
}

.footer-dev a {
    text-decoration: none;
    cursor: pointer;
    color: var(--white-color);
    font-weight: bold;
}

.footer-dev p {
    margin-bottom: 0;
}

.fa-fab {
    color: white !important;
    text-align: center;
    vertical-align: bottom;
}

.whatsapp-link-footer {
    text-decoration: none;
    color: var(--white-color);
    cursor: pointer;
}

/* Whatsapp */
.whats {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 185;
}

.whats:hover{
    transform: scale(1.3);
    transition: 0.4s ease-in-out;
}

.footer-dev {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--white-color);
    background: var(--third-color);
    padding: 1rem;
}

.footer-dev a {
    text-decoration: none;
    cursor: pointer;
    color: var(--white-color);
    font-weight: bold;
}

.footer-dev p {
    margin-bottom: 0;
    color: var(--white-color);
}

@media only screen and (max-width: 488px) {
    /* HEADER */
    nav {
        padding: 0;
    }

    nav .nav-list, nav .nav-social { 
        display: none;
    }

    .mobile-icon-menu {
        display: block;
    }

    .mobile-icon-menu {
        display: block;
        border: 0;
        margin: auto 10px;
    }

    .mobile-icon-menu .icon-menu button {
        border: 0;
        background: var(--white-color);
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;

        height: 100vh;
    
        z-index: -1;
        opacity: 0;
        
        background-color: var(--color-azul_claro);
        font-size: 2rem;
    }
    
    .mobile-icon-menu button {
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    .icon-menu-close {
        text-align: right;
        padding-top: 26px;
        padding-right: 0px;
    }
    
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1.2rem;
        padding-left: 0;
        margin-top: 20px;
    }
    
    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;
    }
    
    .fecha-menu {
        display: none;
    
        width: 100%;
        height: 100%;
    
        background-color: rgba(0, 0, 0, 0.7);
        position: fixed;
        top: 0;
        right: 0;
    
        z-index: 109;
    }
    
    .open {
        opacity: 1;
        display: block;
        z-index: 110;
        background: var(--primary-color);
        color: #FFFFFF;
        height: 100%;
        min-width: 50%;
        transition-property: opacity;
        transition-duration: 0.45s;
        transition-timing-function: ease-out;
    }
    
    .close {
        display: block;
    }


    /* SECTION 01 */
    .banner-h1 {
        text-align: center;
        padding: 20rem 2rem 10rem;
    }

    .banner-h1 h1 {
        font-size: 5rem;
    }

    .section-01 .banner-h1 .title h1 {
        font-size: 4rem;
    }

    .section-01 .module-contact {
        justify-content: center;
    }

    /* SECTION 02 */
    .section-02 .container .row {
        flex-direction: column;
        text-align: center;
    }

    .section-02 .main-title h2 {
        padding: 2rem 1rem 3rem;
        font-size: 4.5rem;
    }

    .section-02 .normal-text p {
        padding: 0 2rem;
        text-align: justify;
    }

    .section-02 img {
        border-radius: 10rem;
    }

    .section-02 .module-contact {
        justify-content: center;
    }

    .section-02 .about-image-block-one {
        margin-top: 5rem;
        padding: 0 2rem;
    }

    /* SECTION 03 */
    .section-03 .container .row > div {
        padding: 0 2rem;
    }

    .section-03 .main-title h2 {
        padding: 2rem 1rem 3rem;
        font-size: 4.5rem;
    }
    
    .section-03 .services {
        padding: 5rem 2rem;
    }
    .section-03 .card-body {
        flex-direction: column;
    }

    .section-03 .card-body .card-icon {
        display: none;
    }

    .section-03 .card-body .card-infos {
        text-align: center;
        padding-bottom: 2rem;
    }

    .section-03 .card-body .card-infos .module-contact{
        justify-content: center;
    }

    .section-03 .services .card-body .card-infos .mobile-desc {
        display: none;
    }

    /* SECTION 04 */
    .section-04 .cidades-contato .main-title h3 {
        padding: 0 1rem;
    }

    .section-04 .cidades-contato .advantages-box {
        display: grid;
        grid-template-areas: "A B";
        font-size: 1.3rem;
    }

    .section-04 .cidades-contato .infos-contato .informacoes {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .section-04 .endereco {
        display: none;
    }

    .section-04 .endereco-mobile {
        display: block;
        text-align: center;
    }


    /* SECTION 05 */
    .blog-area {
        padding: 5rem 3rem;
    }

    .blog-row {
        gap: 3rem;
    }

    /* FOOTER */
    footer {
        padding: 5rem 2rem 3rem;
    }

    .infos-footer {
        flex-direction: column;
        gap: 3rem
    }

    .footer-social {
        flex-direction: row;
        gap: 2rem;
    }

    /* GOOGLE */
    .google-maps {
        height: 20rem;
    }

}

@media only screen and (min-width: 488px) and (max-width: 1200px) {
        /* HEADER */
        nav {
            padding: 0;
        }
    
        nav .nav-list, nav .nav-social { 
            display: none;
        }
    
        .mobile-icon-menu {
            display: block;
        }
    
        .mobile-icon-menu {
            display: block;
            border: 0;
            margin: auto 10px;
        }
    
        .mobile-icon-menu .icon-menu button {
            border: 0;
            background: var(--white-color);
        }
    
        .mobile-menu {
            display: block;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
    
            height: 100vh;
        
            z-index: -1;
            opacity: 0;
            
            background-color: var(--color-azul_claro);
            font-size: 2rem;
        }
        
        .mobile-icon-menu button {
            background: transparent;
            border: none;
            cursor: pointer;
        }
        
        .icon-menu-close {
            text-align: right;
            padding-top: 26px;
            padding-right: 0px;
        }
        
        .mobile-menu ul {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding-bottom: 1.2rem;
            padding-left: 0;
            margin-top: 20px;
        }
        
        .mobile-menu .nav-item {
            display: block;
            padding-top: 1.2rem;
        }
        
        .fecha-menu {
            display: none;
        
            width: 100%;
            height: 100%;
        
            background-color: rgba(0, 0, 0, 0.7);
            position: fixed;
            top: 0;
            right: 0;
        
            z-index: 109;
        }
        
        .open {
            opacity: 1;
            display: block;
            z-index: 110;
            background: var(--primary-color);
            color: #FFFFFF;
            height: 100%;
            min-width: 50%;
            transition-property: opacity;
            transition-duration: 0.45s;
            transition-timing-function: ease-out;
        }
        
        .close {
            display: block;
        }
    
    
        /* SECTION 01 */
        .banner-h1 {
            text-align: center;
            padding: 20rem 2rem 10rem;
        }
    
        .banner-h1 h1 {
            font-size: 5rem;
        }
    
        .section-01 .banner-h1 .title h1 {
            font-size: 4rem;
        }
    
        .section-01 .module-contact {
            justify-content: center;
        }
    
        /* SECTION 02 */
        .section-02 .container .row {
            flex-direction: column;
            text-align: center;
        }
    
        .section-02 .main-title h2 {
            padding: 2rem 1rem 3rem;
            font-size: 4.5rem;
        }
    
        .section-02 .normal-text p {
            padding: 0 2rem;
            text-align: justify;
        }
    
        .section-02 img {
            border-radius: 10rem;
        }
    
        .section-02 .module-contact {
            justify-content: center;
        }
    
        .section-02 .about-image-block-one {
            margin-top: 5rem;
            padding: 0 2rem;
        }
    
        /* SECTION 03 */
        .section-03 .container .row > div {
            padding: 0 2rem;
        }
        
        .section-03 .services {
            padding: 5rem 2rem;
        }

        .section-03 .services .tablet-view {
            width: 100% !important;
            padding: 0 15rem !important;
        }

        .section-03 .card-body {
            flex-direction: column;
        }
    
        .section-03 .card-body .card-icon {
            display: none;
        }
    
        .section-03 .card-body .card-infos {
            text-align: center;
            padding-bottom: 2rem;
        }
    
        .section-03 .card-body .card-infos .module-contact{
            justify-content: center;
        }
    
        .section-03 .services .card-body .card-infos .mobile-desc {
            display: none;
        }
    
        /* SECTION 04 */
        .section-04 .cidades-contato .main-title h3 {
            padding: 0 1rem;
        }
    
        .section-04 .cidades-contato .advantages-box {
            display: grid;
            grid-template-areas: "A B C";
            font-size: 1.3rem;
        }
    
        .section-04 .cidades-contato .infos-contato .informacoes {
            flex-direction: column;
            text-align: center;
            gap: 0;
        }
        
        .section-04 .infos-contato {
            padding: 0 15rem;
        }

        .section-04 .endereco {
            display: none;
        }
    
        .section-04 .endereco-mobile {
            display: block;
            text-align: center;
        }
    
    
        /* SECTION 05 */
        .blog-area {
            padding: 5rem 3rem;
        }
    
        .blog-row {
            gap: 3rem;
            flex-direction: column;
            align-content: center;
        }
    
        /* FOOTER */
        footer {
            padding: 5rem 2rem 3rem;
        }
    
        .infos-footer {
            flex-direction: column;
            gap: 3rem
        }
    
        .footer-social {
            flex-direction: row;
            gap: 2rem;
        }
    
        /* GOOGLE */
        .google-maps {
            height: 20rem;
        }
    
}