html {
    scroll-behavior: smooth !important;
  }

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

@media (min-width: 1200px) {
    .container:not(.container-bs):not(.container-xl-custom):not(.container-xxl-custom) {
            max-width: 1200px;
    }
}

@media (min-width: 992px) {
    #header .header-nav-main nav > ul > li > a {
            font-size: 13px;
    }
}

.custom-border-radius-1 {
    border-radius: 7px !important;
}

.custom-text-underline-1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.custom-btn-border-radius {
    border-radius: var(--border-radius2x);
}

.custom-btn-arrow-effect-1 > svg {
    transition: ease transform 300ms;
}

.custom-btn-arrow-effect-1:hover > svg {
    transform: translate3d(8px, 0, 0);
}

.custom-select-1.custom-select-1-arrow-position:before {
    right: 30px;
}

.custom-svg-1 {
    position: absolute;
    left: 0;
    top: -100px;
    width: 640px;
}

.custom-svg-2 {
    position: absolute;
    top: 43%;
    left: -260px;
    width: 190px;
    transform: translate3d(0, -50%, 0);
}

.custom-svg-3 {
    display: none;
    position: absolute;
    right: 0;
}

@media (min-width: 576px) {
    .custom-svg-3 {
            display: block;
            bottom: -80px;
            width: 80px;
    }
}

@media (min-width: 1440px) {
    .custom-svg-3 {
            bottom: -150px;
            width: 150px;
    }
}

.custom-bg-color-grey-1 {
    background-color: #f4f4f4 !important;
}

.custom-alert-bg-color-1 {
    background-color: var(--light) cd6 !important;
}

@media (max-width: 575px) {
    .custom-section-background {
            background-color: var(--light) !important;
    }
}

.custom-section-background .container:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 85%;
    width: 100vw;
    height: calc( 100% + 150px);
    background: var(--light);
    z-index: 0;
    transform: translate3d(0, -50%, 0);
}

@media (max-width: 575px) {
    .custom-section-background .container:before {
            opacity: 0;
    }
}

@media (min-width: 1920px) {
    .custom-background-style-1 {
            background-size: cover;
    }
}

@media (max-width: 575px) {
    .custom-background-style-1 {
            background-image: none !important;
            background-color: var(--light);
    }
}

@media (min-width: 2050px), (max-width: 991px) {
    .custom-background-size-1 {
            background-size: cover !important;
    }
}

@media (min-width: 2050px) {
    .custom-background-size-1 {
            background-position: 14vw 50% !important;
    }
}

.custom-svg-background-1 {
    position: absolute;
    width: 1000%;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translate3d(-50%, 0, 0);
}

@media (max-width: 991px) {
    .custom-svg-background-1 {
            left: 77%;
    }
}

@media (max-width: 575px) {
    .custom-svg-background-1 {
            left: 82%;
    }
}

@media (max-width: 991px) {
    .custom-remove-mobile-border-left {
            border-left: 0 !important;
    }
}

@media (max-width: 575px) {
    .custom-remove-mobile-xs-border-left {
            border-left: 0 !important;
    }
}

.custom-divider > hr {
    height: 4px !important;
}

@keyframes customLineAnim {
    from {
            stroke-dasharray: 1600;
            stroke-dashoffset: 1600;
    }
    to {
            stroke-dasharray: 2500;
            stroke-dashoffset: 1600;
    }
}

.customLineAnim {
    animation-name: customLineAnim;
}

@keyframes customLineAnim2 {
    from {
            stroke-dasharray: 2650;
            stroke-dashoffset: 2650;
    }
    to {
            stroke-dasharray: 2650;
            stroke-dashoffset: 0;
    }
}

.customLineAnim2 {
    animation-name: customLineAnim2;
}

@keyframes customLineProgressAnim {
    from {
            width: 0;
    }
    to {
            width: 60px;
    }
}

.customLineProgressAnim {
    animation-name: customLineProgressAnim;
}

/*
* Social Icons
*/
.custom-social-icons-divider > li + li {
    position: relative;
    margin-left: 20px;
}

.custom-social-icons-divider > li + li:before {
    content: '';
    border-left: 1px solid #dadcdd;
    height: 80%;
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
}

/*
* Header
*/
#header .header-container {
    height: 110px;
}

#header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
    border-radius: 5px !important;
}

#header .header-nav-features .header-nav-feature.px-4 .header-nav-features-dropdown.show {
    right: calc( 100% - 30px) !important;
}

.custom-left-border-1 {
    position: relative;
}

.custom-left-border-1:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -22px;
    height: 60%;
    border-left: 1px solid var(--grey-500);
    transform: translate3d(0, -50%, 0);
}

/*
* Icon Style
*/
.custom-icon-style-1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 95px;
}

.custom-icon-style-1:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid var(--grey-500);
    border-radius: 7px;
    transform: rotate(45deg);
    z-index: 0;
    transition: ease background 300ms;
}

.custom-icon-style-1 svg {
    position: relative;
    z-index: 1;
}

.custom-icon-box-style-1 h3 {
    transition: ease color 300ms;
}

/*
* Thumb Info
*/
.custom-thumb-info-style-1 .thumb-info-wrapper {
    border-radius: 25px !important;
    border: 5px solid transparent !important;
    transition: ease border 300ms;
}

.custom-thumb-info-style-1 h3 {
    transition: ease color 300ms;
}

.custom-img-thumbnail-style-1.img-thumbnail.img-thumbnail-hover-icon:before {
    border-radius: 0 !important;
}

/*
* Testimonial
*/
.custom-testimonial-style-1 blockquote {
    padding: 5px 20px !important;
}

.custom-testimonial-style-1 blockquote p {
    font-family: "Poppins", sans-serif;
}

.custom-testimonial-style-1.testimonial-with-quotes blockquote:before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
}

@media (min-width: 1200px) {
    .custom-carousel-box-shadow-1 {
            position: relative;
    }
    .custom-carousel-box-shadow-1:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 65%;
            height: 0px;
            box-shadow: 0 0 40px 120px rgba(0, 0, 0, 0.07);
            transform: translate3d(-50%, -50%, 0);
            z-index: 0;
    }
}

/*
* Accordion
*/
.custom-accordion-style-1 > .card {
    border: 1px solid transparent !important;
    transition: ease border-color 300ms;
}

.custom-accordion-style-1 > .card .card-header a {
    position: relative;
    padding: 23px 30px;
    background-color: #f4f4f4;
    transition: ease background-color 300ms, ease color 300ms;
}

.custom-accordion-style-1 > .card .card-header a:after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 25px;
    font-size: inherit;
    font-weight: inherit;
    transform: translate3d(0, -50%, 0) rotate(45deg);
    transform-origin: 50% 50%;
    transition: ease transform 300ms;
}

.custom-accordion-style-1 > .card .card-header a.collapsed:after {
    transform: translate3d(0, -50%, 0) rotate(0deg);
}

.custom-accordion-style-1 > .card .card-header + .collapse.show,
.custom-accordion-style-1 > .card .card-header + .collapsing {
    border: 1px solid var(--grey-500);
    border-top: 0;
}

.custom-accordion-style-1 > .card + .card {
    margin-top: 17px;
}

/*
* Services Detail
*/
.custom-nav-list-effect-1 > li > a {
    position: relative;
    transition: ease padding 300ms, ease color 300ms;
}

.custom-nav-list-effect-1 > li > a:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    border-top: 4px solid var(--grey-500);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -50%, 0);
    transition: ease opacity 300ms, ease width 300ms;
}

.custom-nav-list-effect-1 > li.active > a, .custom-nav-list-effect-1 > li.open > a, .custom-nav-list-effect-1 > li:hover > a {
    padding-left: 45px;
    font-weight: 700;
}

.custom-nav-list-effect-1 > li.active > a:before, .custom-nav-list-effect-1 > li.open > a:before, .custom-nav-list-effect-1 > li:hover > a:before {
    width: 30px;
    opacity: 1;
    visibility: visible;
}

.custom-feature-box-justify-center {
    justify-content: center;
}

.custom-feature-box-justify-center .feature-box-icon,
.custom-feature-box-justify-center .feature-box-info {
    flex: 0 0 auto;
}

/*
* Contact
*/
.custom-form-style-1 .form-control {
    border: 0;
    background: #f4f4f4;
    border-radius: 35px;
    height: auto;
    padding: 20px 25px;
}

/*
* Datepicker
*/
.datepicker {
    padding: 10px;
    margin: 0 auto;
    line-height: 1.1em;
}

.datepicker.datepicker-inline {
    line-height: 1.7em;
    width: 100%;
}

.datepicker table {
    width: 100%;
}

.datepicker table tr td {
    border-radius: 0;
}

.datepicker table thead tr th {
    cursor: pointer;
    font-size: 12.8px;
    font-size: 0.8rem;
    text-align: center;
    font-weight: normal;
}

.datepicker table thead tr th.prev {
    content: '\f0d9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.datepicker table thead tr th.next {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.datepicker table thead tr th:hover {
    color: var(--light);
}

.datepicker table thead tr:last-child th {
    font-weight: 600;
}

.datepicker table thead tr:last-child th:hover {
    color: var(--grey-500);
}

.datepicker table td {
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
}

.datepicker table td.day {
    transition: background-color .1s ease-in .1s, color .1s ease-in .1s;
    cursor: pointer;
}

/*
* Footer
*/
#footer {
    background: #1d3e30;
}

#footer a:not(.btn):not(.no-footer-css), #footer li, #footer span, #footer p {
    color: #888888;
}

.custom-list-style-1 > li {
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.custom-list-style-1 > li + li {
    border-top: 1px solid #46474a;
}

.custom-list-style-1 > li:first-child {
    padding-top: 0;
}

.custom-list-style-1 > li:last-child {
    padding-bottom: 0;
}

/* Skin */
/*
* Icon Style
*/
.custom-icon-style-1:before {
    border-color: var(--primary);
}

.custom-icon-box-style-1:hover .custom-icon-style-1:before {
    background: #46776825;
}

.custom-icon-box-style-1:hover .custom-icon-style-1 svg path {
    fill: var(--primary-inverse) !important;
}

.custom-icon-box-style-1:hover h3 {
    color: var(--primary) !important;
}

/*
* Thumb Info
*/
.custom-thumb-info-style-1:hover .thumb-info-wrapper {
    border-color: var(--primary) !important;
}

.custom-thumb-info-style-1:hover h3 {
    color: var(--primary) !important;
}

/*
* Testimonial
*/
.custom-testimonial-style-1.testimonial-with-quotes blockquote:before {
    color: var(--primary);
}

/*
* Accordion
*/
.custom-accordion-style-1 > .card .card-header a:not(.collapsed) {
    background-color: var(--primary);
    color: var(--primary-inverse) !important;
}

.custom-accordion-style-1 > .card:hover .card-header a.collapsed {
    color: var(--primary) !important;
}

/*
* Services Detail - Nav List
*/
.custom-nav-list-effect-1 > li > a:before {
    border-top-color: var(--primary);
}

.custom-nav-list-effect-1 > li.active > a, .custom-nav-list-effect-1 > li.open > a, .custom-nav-list-effect-1 > li:hover > a {
    color: var(--primary) !important;
}

/*
* Datepicker
*/
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover,
.datepicker table tr td span:hover {
    background: var(--primary);
}

.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover {
    background: var(--primary);
}

.datepicker table thead tr:last-child th:hover {
    color: var(--primary);
}

.datepicker table tbody tr td.day:hover {
    background: var(--primary);
}

.datepicker table tbody tr td.day.active {
    background: var(--primary-300);
}


/* PRINCIPAL */
/*  COR ANTIGA #2baab1; */

 :root {
	--border-radius: 4px;
	--border-radius2x: 8px;
	--default: #777;
}
/* Skin Colors */
:root {
	--primary: #4eab83;
	--primary-100: #469976;
	--primary-200: #42916f;
	--primary-300: #3e8868;
	--primary--100: #5db58f;
	--primary--200: #66b995;
	--primary--300: #6fbd9b;
	--primary-rgba-0: rgba(78, 171, 131, 0);
	--primary-rgba-10: rgba(78, 171, 131, 0.1);
	--primary-rgba-20: rgba(78, 171, 131, 0.2);
	--primary-rgba-30: rgba(78, 171, 131, 0.3);
	--primary-rgba-40: rgba(78, 171, 131, 0.4);
	--primary-rgba-50: rgba(78, 171, 131, 0.5);
	--primary-rgba-60: rgba(78, 171, 131, 0.6);
	--primary-rgba-70: rgba(78, 171, 131, 0.7);
	--primary-rgba-80: rgba(78, 171, 131, 0.8);
	--primary-rgba-90: rgba(78, 171, 131, 0.9);
	--secondary: #e36159;
	--secondary-100: #df4c43;
	--secondary-200: #dd4238;
	--secondary-300: #dc372d;
	--secondary--100: #e7766f;
	--secondary--200: #e9807a;
	--secondary--300: #ea8b85;
	--secondary-rgba-0: rgba(227, 97, 89, 0);
	--secondary-rgba-10: rgba(227, 97, 89, 0.1);
	--secondary-rgba-20: rgba(227, 97, 89, 0.2);
	--secondary-rgba-30: rgba(227, 97, 89, 0.3);
	--secondary-rgba-40: rgba(227, 97, 89, 0.4);
	--secondary-rgba-50: rgba(227, 97, 89, 0.5);
	--secondary-rgba-60: rgba(227, 97, 89, 0.6);
	--secondary-rgba-70: rgba(227, 97, 89, 0.7);
	--secondary-rgba-80: rgba(227, 97, 89, 0.8);
	--secondary-rgba-90: rgba(227, 97, 89, 0.9);
	--tertiary: #2b5146;
	--tertiary-100: #224038;
	--tertiary-200: #1e3830;
	--tertiary-300: #193029;
	--tertiary--100: #346254;
	--tertiary--200: #386a5c;
	--tertiary--300: #3d7263;
	--tertiary-rgba-0: rgba(43, 81, 70, 0);
	--tertiary-rgba-10: rgba(43, 81, 70, 0.1);
	--tertiary-rgba-20: rgba(43, 81, 70, 0.2);
	--tertiary-rgba-30: rgba(43, 81, 70, 0.3);
	--tertiary-rgba-40: rgba(43, 81, 70, 0.4);
	--tertiary-rgba-50: rgba(43, 81, 70, 0.5);
	--tertiary-rgba-60: rgba(43, 81, 70, 0.6);
	--tertiary-rgba-70: rgba(43, 81, 70, 0.7);
	--tertiary-rgba-80: rgba(43, 81, 70, 0.8);
	--tertiary-rgba-90: rgba(43, 81, 70, 0.9);
	--quaternary: #2b5146;
	--quaternary-100: #224038;
	--quaternary-200: #1e3830;
	--quaternary-300: #193029;
	--quaternary--100: #346254;
	--quaternary--200: #386a5c;
	--quaternary--300: #3d7263;
	--quaternary-rgba-0: rgba(43, 81, 70, 0);
	--quaternary-rgba-10: rgba(43, 81, 70, 0.1);
	--quaternary-rgba-20: rgba(43, 81, 70, 0.2);
	--quaternary-rgba-30: rgba(43, 81, 70, 0.3);
	--quaternary-rgba-40: rgba(43, 81, 70, 0.4);
	--quaternary-rgba-50: rgba(43, 81, 70, 0.5);
	--quaternary-rgba-60: rgba(43, 81, 70, 0.6);
	--quaternary-rgba-70: rgba(43, 81, 70, 0.7);
	--quaternary-rgba-80: rgba(43, 81, 70, 0.8);
	--quaternary-rgba-90: rgba(43, 81, 70, 0.9);
	--dark: #212529;
	--dark-100: #16181b;
	--dark-200: #101214;
	--dark-300: #0a0c0d;
	--dark--100: #2c3237;
	--dark--200: #32383e;
	--dark--300: #383f45;
	--dark-rgba-0: rgba(33, 37, 41, 0);
	--dark-rgba-10: rgba(33, 37, 41, 0.1);
	--dark-rgba-20: rgba(33, 37, 41, 0.2);
	--dark-rgba-30: rgba(33, 37, 41, 0.3);
	--dark-rgba-40: rgba(33, 37, 41, 0.4);
	--dark-rgba-50: rgba(33, 37, 41, 0.5);
	--dark-rgba-60: rgba(33, 37, 41, 0.6);
	--dark-rgba-70: rgba(33, 37, 41, 0.7);
	--dark-rgba-80: rgba(33, 37, 41, 0.8);
	--dark-rgba-90: rgba(33, 37, 41, 0.9);
	--light: #FFF;
	--light-100: #f2f2f2;
	--light-200: #ececec;
	--light-300: #e6e6e6;
	--light--100: #ffffff;
	--light--200: #ffffff;
	--light--300: #ffffff;
	--light-rgba-0: rgba(255, 255, 255, 0);
	--light-rgba-10: rgba(255, 255, 255, 0.1);
	--light-rgba-20: rgba(255, 255, 255, 0.2);
	--light-rgba-30: rgba(255, 255, 255, 0.3);
	--light-rgba-40: rgba(255, 255, 255, 0.4);
	--light-rgba-50: rgba(255, 255, 255, 0.5);
	--light-rgba-60: rgba(255, 255, 255, 0.6);
	--light-rgba-70: rgba(255, 255, 255, 0.7);
	--light-rgba-80: rgba(255, 255, 255, 0.8);
	--light-rgba-90: rgba(255, 255, 255, 0.9);
}
/* Skin Colors - Inverse */
:root {
	--primary-inverse: #FFF;
	--secondary-inverse: #FFF;
	--tertiary-inverse: #FFF;
	--quaternary-inverse: #FFF;
	--dark-inverse: #FFF;
	--light-inverse: #777;
}
/* Grey Colors */
:root {
	--grey: #969696;
	--grey-100: #f4f4f4;
	--grey-200: #eaeaea;
	--grey-300: #e5e5e5;
	--grey-400: #e0e0e0;
	--grey-500: #dbdbdb;
	--grey-600: #cecece;
	--grey-700: #c1c1c1;
	--grey-800: #a8a8a8;
	--grey-900: #8e8e8e;
	--grey-1000: #757575;
}

.less-error-message ul, .less-error-message li {
	list-style-type: none;
	margin-right: 15px;
	padding: 4px 0;
	margin: 0;
}

.less-error-message label {
	font-size: 12px;
	margin-right: 15px;
	padding: 4px 0;
	color: #cc7777;
}

.less-error-message pre {
	color: #dd6666;
	padding: 4px 0;
	margin: 0;
	display: inline-block;
}

.less-error-message pre.line {
	color: #ff0000;
}

.less-error-message h3 {
	font-size: 20px;
	font-weight: bold;
	padding: 15px 0 5px 0;
	margin: 0;
}

.less-error-message a {
	color: #10a;
}

.less-error-message .error {
	color: red;
	font-weight: bold;
	padding-bottom: 2px;
	border-bottom: 1px dashed red;
}


.copyright {
    background-color: #343a40;
    color: #ffffff;
    font-size: 12px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.copyright a {
    color: #ffffff !important;
    font-weight: bold;
}

.copyright a:hover {
    color: #b1b1b1 !important;
    text-decoration: none;
}

.copyright i {
    color: #b31818;
}


.container-single {
    margin: 50px auto 90px auto;
}

.img-90 {
    max-width: 80%;
}

.btn-whatsapp {
    background-color: #075e54;
}
.btn-whatsapp:hover {
    border-color: #4eab83;
}


.size-21 {
    font-size: 24px;
    margin: 3px 6px 6px 0;
    vertical-align: middle;
    display: inline-block;
}

#sobre {
    background-color: #f4f4f4;
    margin: 0;
    padding: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-bottom: 30px;
}


@media (max-width: 768px) {
    .text-8 {
        font-size: 1.9em !important;
        line-height: 1.2em;
        margin-top: 10px;
      }
  }

