<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/css?family=Montserrat:300,400,700,900');

:root {
    --font-min: 0.8em;
    --font-small: 0.875em;
    --font-normal: 1em;
    --font-medium: 1.2em;
    --font-large: 1.4em;
    --font-max: 2em;
   
    --color-default: #555555;
    --black: #000000;
    --color-green: #36BA9B;
    --color-blue: #39AED9;
    --color-yellow: #f5b754;
    --color-red: #D94352;
    --color-fsphp: #1D2025;

    --weight-light: 300;
    --weight-normal: 400;
    --weight-strong: 600;
    --weight-bold: 700;
    --weight-black: 900;

    --hover-color-green: #61DDBC;
    --hover-color-blue: #66D4F1;
    --hover-color-yellow: #FCD277;
    --hover-color-red: #F76C82;
    --hover-duration: 0.3s;

    --gradient-black:  linear-gradient(166deg, transparent 0% 50%, #2D3135 50%, #3E4248 100%), linear-gradient(166deg, #3E4248 0%, #2A2E32 50%, #3E4248 50%, #313437 100%);
    --gradient-green: linear-gradient(to right, #42E695 0%, #3BB2B8 50%, #42E695 100%);
    --gradient-blue: linear-gradient(to right, #17EAD9 0%, #6078EA 50%, #17EAD9 100%);
    --gradient-red: linear-gradient(to right, #622744 0%, #C53364 50%, #622744 100%);
    --gradient-yellow: linear-gradient(90deg, rgba(184,124,33,1) 18%, rgba(217,170,75,1) 36%, rgba(206,163,70,1) 53%, rgba(108,58,0,1) 77%);


    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;

    --index-back: -1;
    --index-fold: 2;
    --index-menu: 3;
    --index-modal: 4;

    --red: #da2c4d;
    --yellow: #f8ab37;
    --green: #2ecc71;
    --white: #ffffff;
    --grey-light: #f2f7f9;
    --grey: #ecedf3;
    --black: #080808;
    --black-blue: #1f2029;
    --black-blue-light: #353746;
    --black-blue-light-2: #404255;
    --black-blue-light-3: #4b4d64;
    --black-light: #424455;
}

body {
    background: #111;
}

.gradient-yellow {
    background: var(--gradient-yellow);
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* para compatibilidade com alguns navegadores */
}


#progress-bar {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  max-width: 300px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 80;
  border-radius: 5rem;

}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to right, #8B6508, #DAA520, #FFD700, #FFDF00, #F5DEB3);
  border-radius: 5rem;
}

.name{
     background: linear-gradient(to right, #ecd8a8, #e7e7e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    font-size: 1rem;
    letter-spacing: -2px;
    text-align: center;
}

.hide{
    display: none;
}

html,body{
    /*scroll-behavior: smooth;*/
    overflow-x: hidden;
}

/*EFFECTS*/
.transition {
    transition-duration: var(--hover-duration);
}

.radius {
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
}

.rounded {
    -webkit-border-radius: var(--radius-round);
    -moz-border-radius: var(--radius-round);
    border-radius: var(--radius-round);
}

.box-shadow {
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
}

/*DEFAULT LOAD*/
.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--index-modal) * 2);
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid var(--hover-color-green);
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;

    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite;
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: var(--weight-strong);
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.message {
    display: block;
    margin-bottom: 20px;
    padding: 15px;
    text-align: center;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    border: 1px solid #cccccc;
    font-weight: var(--weight-bold);
    color: red;
}

.message.success {
    color: var(--color-green);
    border-color: var(--color-green);
}

.message.info {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.message.warning {
    color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.message.error {
    color: var(--color-red);
    border-color: var(--color-red);
}

/*GRADIENTS*/
.gradient {
    background-size: 200% auto;
    transition-duration: 0.5s;
}



.gradient-black {
    background-image: var(--gradient-black);
    background-position: 0% 0%, 100% 100%;
    background-size: 200% 200%;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    color: #b4c0ce;
    text-shadow: inherit;
    box-shadow: 8px 8px 22px rgb(21 22 24 / 38%), -4px -2px 16px rgb(195 200 205 / 8%);
    transition: 0.5s ease-in-out;
}

.gradien-black:hover{
    text-decoration: none;
    background-position: 100% 100%, 0% 0%;
    color: #d7e1ec;
    box-shadow: 8px 8px 22px rgba(21, 22, 24, 0.38), -4px -2px 16px rgba(195, 200, 205, 0.08), inset -2px -2px 4px rgba(54, 54, 57, 0.16), inset 2px 2px 4px rgba(30, 30, 32, 0.18);
}

.gradient-green {
    background-image: var(--gradient-green);
}

.gradient-blue {
    background-image: var(--gradient-blue);
}

.gradient-yellow {
    background-image: var(--gradient-yellow);
}

.gradient-red {
    background-image: var(--gradient-red);
}

.gradient-hover:hover {
    background-position: right center;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/*DEFAULT PAGINATOR*/
.paginator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.paginator a, .paginator span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #cccccc;
    border-right: 0;
    color: #555555;
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition-duration: 0.2s;
}

.paginator a:first-of-type {
    -webkit-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    -moz-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    border-radius: var(--radius-normal) 0 0 var(--radius-normal);
}

.paginator a:last-of-type {
    border-right: 1px solid #cccccc;
    -webkit-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    -moz-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
}

.paginator a:hover {
    background: var(--gradient-green);
    background-size: 200%;
    color: #FBFBFB;
}

.paginator span {
    background: #cccccc;
}

/*WYSH HTMLCHARS*/
.htmlchars {
    color: var(--color-default);
}

.htmlchars :first-child {
    margin-top: 0;
}

.htmlchars h2,
.htmlchars h3,
.htmlchars h4,
.htmlchars h5 {
    margin: 40px 0 20px 0;
    font-weight: var(--weight-bold);
}

.htmlchars h2 {
    font-size: 1.8em;
}

.htmlchars h3 {
    font-size: 1.6em;
}

.htmlchars h4 {
    font-size: 1.4em;
}

.htmlchars h5 {
    font-size: 1.2em;
}

.htmlchars p {
    margin-top: 25px;
}

.htmlchars ul,
.htmlchars ol {
    margin: 20px 0 20px 40px;
}

.htmlchars ul {
    list-style: circle;
}

.htmlchars ol li,
.htmlchars ul li {
    margin-top: 5px;
}

.htmlchars a {
    color: var(--color-green);
    font-weight: var(--weight-bold);
    text-decoration: none;
}

.htmlchars a:hover {
    text-decoration: underline;
}

.htmlchars img {
    margin-top: 30px;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
}

.htmlchars pre {
    padding: 20px;
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
    background: #EEEEEE;
    margin: 20px 0;
    overflow-x: auto;
}

/*SOCIAL SHARE*/
.social_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding: 30px;
    background: #FBFBFB;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    border-bottom: 3px solid var(--color-green);
}

.social_share_title {
    font-size: var(--font-normal);
    font-weight: var(--weight-normal);
}

.social_share_medias {
    display: flex;
}

.social_share_medias div {
    margin-right: 10px;
}

/*EMPTY CONTENT*/
.empty_content {
    width: 800px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    color: var(--color-default);
}

.empty_content_cover {
    width: 500px;
}

.empty_content_title {
    font-size: 2em;
    font-weight: var(--weight-bold);
}

.empty_content_desc {
    font-size: 1.1em;
    margin: 10px 0 40px 0;
}

.title_image {
    width: 300px;
    max-width: 100%;
    margin: 0 auto 30px auto;
}

.empty_content_btn {
    display: inline-block;
    padding: 20px 40px;
    font-weight: var(--weight-bold);
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    font-size: 1.4em;
}

/* MAIN HEADER */
.main_header {
    color: #ffffff;
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 30px;
}

.main_header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/*logo*/
.main_header_logo h1 a {
    font-weight: var(--weight-normal);
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
}

.main_header_logo img{
    width: 250px;
}

/*nav*/
.main_header_nav {
    display: flex;
    align-items: center;
    height: 50px;
}

.main_header_nav_links {
    display: block !important;
}

.main_header_nav_links {
    display: block !important;
}

.main_header_nav_links .link {
    display: inline-block;
    padding: 6px 12px;

    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
    font-size: var(--font-small);
}


.main_header_nav_links .link.active:not():hover {
    background: var(--gradient-yellow);
}

.main_header_nav_links .login {
    background: var(--hover-color-green);
}

.main_header_nav_links .link-whats {
    padding: 10px;
    font-weight: 600;
    border: 1px solid var(--color-yellow);
}

.header_social {
    margin-left: 20px;
    text-decoration: none;
    color: #fff;
}

/*mobile*/
.main_header_nav_mobile,
.main_header_nav_mobile_close {
    display: none;
}

/*CONTENT*/

/*home featured*/
.home_featured {
    color: #ffffff;
}

.home_hero {
    padding-top: 40px;
}

.home_featured:after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background: rgb(0 0 0 / 88%);
    color: #ffffff;
    z-index: -1;
}

.home_featured a{
    color: #fff;
    text-decoration: none;
}

.home_featured_content {
    padding: 80px 0 80px 0;
}

.home_featured_header {
    width: 660px;
    max-width: 100%;
    margin-left: 0;
    text-align: left;
}

.home_featured_header h1 {
    font-size: 3em;
    font-weight: var(--weight-bold);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

.home_featured_header p {
    margin: 30px 0 50px 0;
    font-weight: var(--weight-normal);
    font-size: var(--font-medium);
}

.home_featured_header .features {
    font-size: var(--font-small);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home_featured_btn {
    cursor: pointer;
    display: inline-block;
    padding: 20px 50px;
    text-transform: uppercase;
    font-weight: var(--weight-black);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    font-size: 1rem;
}

.home_featured_app {
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: var(--index-fold);
}

.home_featured_app img {
    max-width: 90%;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.home_featured_app:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #ffffff;
    z-index: var(--index-back);
}

/*home features*/
.home_features{
    background: var(--black);
}

.home_features_header {
    text-align: center;
    margin: 20px 0 40px 0;
    color: #555555;
}

.home_features_header h2 {
    color: var(--color-yellow);
}

.home_features_header p {
    margin-top: 10px;
    color: #eee;
}

.home_features_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.home_features_content article {
    padding: 40px;
    text-align: left;
    color: #fff;
    background: #111;
    margin-bottom: 1rem;
    border-left: 7px solid var(--color-yellow);
}


.home_features_content article img {
    width: 60%;
}

.home_features_content img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.home_features_content article h3 {
    font-size: var(--font-medium);
    font-weight: var(--weight-normal);
    color: var(--color-white);
}

.home_features_content article p {
    font-size: var(--font-small);
     font-weight: 300;
}

@media(max-width: 800px){
    .home_features_content {
        grid-template-columns: repeat(1, 1fr);
    }
}


/*Home cars*/
.home_cars {
    background: #111;
}

.home_cars_header {
    text-align: center;
    margin: 20px 0 40px 0;
    color: #555555;
}

.home_cars_header h2 {
    color: var(--color-yellow);
    text-transform: uppercase;
}

.home_cars_header p {
    margin-top: 10px;
    color: #eee;
}

.home_cars_content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.home_cars_content article {
    padding: 20px;
    text-align: center;
    color: #fff;
    background: #222;
    border-top: 3px solid transparent;
}

.home_cars_content article.active,
.home_cars_content article:hover {
    border-top: 3px solid var(--color-yellow);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    transition: .3s;
}

.home_cars_content article img {
    width: 60%;
}

.home_cars_content article h3 {
    margin: 20px 0 10px 0;
    font-size: 21px;
    font-weight: 700;
    color: var(--color-white);
}

.home_cars_content article p {
    font-size: var(--font-small);
    font-weight: 300;
}

@media (max-width:800px) {
    .home_cars_content {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*home services*/
.home_services{
    background: #111;
}

.home_services_header {
    text-align: center;
    margin: 20px 0 40px 0;
    color: #555555;
}

.home_services_header h2 {
    color: var(--color-yellow);
}

.home_services_header p {
    margin-top: 10px;
    color: #eee;
}

.home_services_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.home_services_content article {
    flex-basis: calc(33.33% - 20px);
    padding: 50px;
    text-align: center;
    color: #fff;
    background: #222;
    border-top: 3px solid transparent;
}

.home_services_content article.active,
.home_services_content article:hover {
    border-top: 3px solid var(--color-yellow);
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
    transition: .3s;
}

.home_services_content article img {
    width: 60%;
}

.home_services_content article h3 {
    margin: 20px 0 10px 0;
    font-size: 21px;
    font-weight: 700;
    color: var(--color-white);
}

.home_services_content article p {
    font-size: var(--font-small);
    font-weight: 300;
}

@media (max-width:800px) {
    .home_services_content {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*optin*/
.home_optin {
    background: #111;
}

.home_optin_content {
    display: flex;
    align-items: flex-start;
    color: #555555;
}

.home_optin_content_flex {
    flex-basis: 50%;
    padding: 20px;
}

.home_optin_content_flex .icon {
    display: block;
    text-align: center;
    font-size: 5em;
    color: var(--hover-color-green);
}

.home_optin_content figure{
    display: block;
    padding: 2rem 0 0 0;
    text-align: center;
}

.home_optin_content header h2 {
    margin-top: 10px;
    font-size: 2em;
    font-weight: var(--weight-bold);
    color: #ffff;
}

.home_optin_content header p {
    margin-top: 30px;
    font-size: var(--font-medium);
}

.home_optin_content h4 {
    font-size: var(--font-medium);
    text-align: center;
    margin-bottom: 30px;
}

.home_optin_content form input,
.home_optin_content form select,
.home_optin_content form textarea {
    display: block;
    width: 100%;
    font-size: var(--font-small);
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
}

.home_optin_content form button {
    cursor: pointer;
    border: none;
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: var(--font-medium);
    font-weight: var(--weight-black);
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.iti{
    width: 100%;
    margin-bottom: 1rem;
}

/*sendEmail*/
.sendbox_email{
    text-align: center;
    color: #fff;
}

.sendbox_email .h2{
    text-align: center;
    font-size: 1.5rem;
    color: #eeee;
    margin-bottom: 1rem;
}
.sendbox_email p {
    margin-bottom: 1rem;
}

.sendbox_email .h2 span{
    font-size: 3rem;
    color: var(--green);
    text-align: center;
}

.sendbox_email  b{
    color: #eee;
}

.sendbox_email .sitename{
    color: var(--yellow);
}



/*home_about_history*/
.home_about_history{
    background: #111;
}

.home_about_history_header {
    text-align: center;
    margin: 20px 0 40px 0;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 32px;
}

.home_about_history_header h2 {
    color: var(--color-yellow);
    text-transform: uppercase;
}

.home_about_history_header p {
    margin-top: 10px;
    color: #eee;
}

.home_about_history_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.home_about_history_content article {
    padding: 30px;
    text-align: center;
    color: #fff;
    background: #222;
}

.home_about_history_content article li {
    text-align: left;
}

.home_about_history_content article h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-white);
}

.home_about_history_content article p {
    font-size: var(--font-small);
    font-weight: 300;
}

@media (max-width:800px) {
    .home_about_history_content {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*home_about_viagens*/
.home_about_viagens{
    background: #111;
    padding: 80px 0;
}

.home_about_viagens_thumb{
    flex-basis: 40%;
}

.home_about_viagens_itens img{
    text-align: center;
}

.home_about_viagens_box{
    margin: 1rem 0;
}

.home_about_viagens h3{
    color: var(--color-yellow);
    font-size: 2rem;
}

.home_about_viagens .home_optin{
    background: transparent;
}

.home_about_viagens .home_optin h4{
    color: #fff;
}

.home_about_viagens_box{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


.home_about_viagens_box h4{
    color: var(--color-yellow);
    font-weight: 400;
}

.home_about_viagens_box .home_about_viagens_itens{
    flex-basis: 30%;
    color: #fff;
    text-align: center;
}

@media(max-width: 34rem){
    .home_about_viagens_box .home_about_viagens_itens{
        flex-basis: 47%;
    }
}

/*video*/
.home_video {
    position: relative;
    background:var(--black);
}


.home_video:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("../images/home-featured.jpg") top center;
    background-size: cover;
    background-attachment: fixed;
    z-index: var(--index-back);
}

.home_video_content {
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.home_video_content img{
    padding: 4rem 0 0 0;
    max-width: 500px;
}


.home_video_content h2 {
    font-weight: var(--weight-light);
    font-size: 2em;
}

.home_video_content span {
    cursor: pointer;
    font-size: 6em;
    margin-top: 15px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.8);
}

.home_video_content span:hover {
    color: var(--hover-color-green);
}

.home_video_modal {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: var(--index-modal);
}

.home_video_modal_box {
    margin: auto;
    width: 800px;
    max-width: 90%;
}

/*opt out*/
.footer_optout {
    background: #111;
    padding: 80px 0;
}

.footer_optout_content {
    text-align: center;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.footer_optout .icon {
    font-size: 5em;
    color: #555555;
}

.footer_optout h2 {
    font-size: 2em;
    font-weight: var(--weight-black);
    color: #fff;
}

.footer_optout p {
    margin: 20px 0 40px;
}

.footer_optout_btn {
    display: inline-block;
    cursor: pointer;
    padding: 15px 40px;
    font-size: var(--font-medium);
    color: #ffffff;
    font-weight: var(--weight-black);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

/*MAIN FOOTER*/
.main_footer {
    background: var(--black);
}

.main_footer_content {
    display: flex;
}

.main_footer_content article {
    flex-basis: 33%;
    padding: 20px;
    color: #555555;
}

.main_footer_content article h2 {
    font-size: var(--font-medium);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
    color: var(--color-yellow);
}

.main_footer_content article p,
.main_footer_content article a {
    font-size: 1rem;
    display: block;
    margin-top: 10px;
    color: #eee;
}

.main_footer_content article a {
    color: var(--color-yellow);
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition-duration: var(--hover-duration);
}

.main_footer_content article a:hover {
    color: var(--hover-color-green);
}

.main_footer_content article a:before {
    color: #ffffff;
    background: var(--color-yellow);
    background-size: 200%;
    padding: 6px;
    -webkit-border-radius: var(--radius-round);
    -moz-border-radius: var(--radius-round);
    border-radius: var(--radius-round);
    transition-duration: var(--hover-duration);
}

.main_footer_content article a:hover:before {
    background-position: right center;
}

.main_footer_logo {
    width: 355px;
    margin: 0 auto;
}

.main_footer_content .social a {
    display: block;
    margin-bottom: 20px;
}

.copy{
    background: #111;
}

.copy &gt; .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #666;
    padding: 2rem 0 2rem 0;
    font-size: .8rem;
}

.copy a{
    color: #666;
}

/*sroll*/
.blok:nth-of-type(odd) {
background-color:white;
}
    
.blok:nth-of-type(even) {
background-color:black;
}

@-webkit-keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
    42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
    56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
    70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
    84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}



/* #Progress
================================================== */

.progress-wrap {
    position: fixed;
    left: 25px;
    bottom: 3rem;
    width: 46px;
    cursor: pointer;
    display: flex;
    border-radius: 50px;
    box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e83b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--grey);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path { 
    fill: none; 
}
.progress-wrap svg.progress-circle path {
    stroke: var(--grey);
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
body.light .progress-wrap {
    box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);
}
body.light .progress-wrap::after {
    color: var(--black-blue);
}
body.light .progress-wrap svg.progress-circle path {
    stroke: var(--black-blue);
}


/*NOT FOUND PAGE 404*/
.not_found {
    text-align: center;
    color: #EEE;
    background: #111;
}

.not_found .error {
    font-size: 8em;
    font-weight: var(--weight-light);
    color: #cccccc;
    margin-bottom: 40px;
}

.not_found_header {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.not_found p a {
    color: var(--color-green);
    text-decoration: none;
    font-weight: var(--weight-bold);
}

.not_found p a:hover {
    text-decoration: underline;
}

.not_found_btn {
    display: inline-block;
    margin-top: 60px;
    padding: 20px 40px;
    color: #ffffff;
    background: var(--gradient-yellow);
    text-decoration: none;
    font-weight: var(--weight-bold);
}

/*ABOUT PAGE*/
.about_header {
    text-align: center;
    width: 800px;
    max-width: 100%;
    margin: 0 auto 40px auto;
    color: #555555;
}

.about_header h1 {
    font-size: 2em;
    font-weight: var(--weight-light);
}

.about_page_steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about_page_steps article {
    flex-basis: calc(33.33% - 40px);
    margin: 20px;
    text-align: center;
    padding: 30px;
    color: #555555;
}

.about_page_steps article .icon {
    display: inline-block;
    padding: 15px 20px;
    background: var(--gradient-green);
    font-size: 2em;
    color: #ffffff;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    background-size: 200%;
}

.about_page_steps article h3 {
    margin: 20px 0 0 0;
    font-size: var(--font-medium);
    font-weight: var(--weight-normal);
}

.about_page_steps article p {
    line-height: 1.4;
    margin-top: 15px;
}

/*media*/
.about_page_media {
    position: relative;
}

.about_page_media:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: var(--gradient-green);
    background-size: 200%;
    z-index: var(--index-back);
}

.about_media_video {
    width: 860px;
    max-width: 90%;
    margin: 0 auto;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    overflow: hidden;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

/*cta*/
.about_page_cta {
    background: var(--gradient-green);
    background-size: 200%;
    text-align: center;
}

.about_page_cta_content {
    width: 600px;
    max-width: 100%;
}

.about_page_cta_content p {
    margin: 20px 0;
}

.about_page_cta_btn {
    display: inline-block;
    padding: 20px 40px;
    background: var(--hover-color-green);
    cursor: pointer;
    font-size: var(--font-medium);
    font-weight: var(--weight-black);
    color: #ffffff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    text-decoration: none;
}

.about_page_cta_btn:hover {
    background: var(--color-green);
}

/*home_partner*/
.home_partner {
    padding: 40px 0;
}

.home_partner_header h2 {
    text-align: center;
    margin-bottom: 20px;
}

.home_partner_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    color: #fff;
    border-radius: 5px;
    border-left: 2px solid var(--color-yellow);
    padding: 20px;
}

.home_partner_text {
    width: 60%;
}

.home_partner_logo {
    width: 30%;
    text-align: right;
}

.home_partner_logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width:800px) {
    .home_partner_content {
        flex-wrap: wrap;
    }

    .home_partner_logo {
        width: 100%;
    }

    .home_partner_text {
        width: 100%;
        order: 1;
    }
}

/*faq*/
.faq_header {
    text-align: center;
    margin-bottom: 30px;
}

.faq_header h3 {
    font-size: 2em;
    font-weight: var(--weight-light);
    margin-bottom: 20px;
}

.faq_asks {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.faq_ask {
    flex-basis: calc(50% - 30px);
    cursor: pointer;
    padding: 20px;
    margin: 15px;
    border: 1px solid #cccccc;
    border-bottom: 3px solid var(--color-green);
    color: var(--color-default);
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
}

.faq_ask h4 {
    font-size: var(--font-medium);
    font-weight: var(--weight-bold);
}

.faq_ask p {
    font-size: var(--font-small);
}

.faq_ask a {
    color: var(--color-green);
    font-weight: var(--weight-bold);
    text-decoration: none;
}

.faq_ask a:hover {
    text-decoration: underline;
}

.faq_ask_coll {
    display: none;
}


/*TERMS PAGE*/
.terms_page_header {
    text-align: center;
    padding: 50px 40px;
    background: var(--gradient-green);
    background-size: 200%;
    color: #ffffff;
}

.terms_page_header h1 {
    font-size: 2em;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.terms_page_header p {
    margin-top: 10px;
    font-weight: var(--weight-black);
    color: rgba(0, 0, 0, 0.4);
}

.terms_page_content {
    width: 800px;
    margin: 0 auto;
    padding: 60px 0 0 0;
}

/*OPTIN PAGES*/
.optin_page {

}

.optin_page_content {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    color: var(--color-default);
    text-align: center;
}

.optin_page_content img {
    width: 400px;
    max-width: 100%;
}

.optin_page_content h1 {
    font-size: 2.3em;
    font-weight: var(--weight-bold);
}

.optin_page_content p {
    margin: 20px 0;
    font-size: 1.1em;
}

.optin_page_btn {
    display: inline-block;
    padding: 20px 40px;
    margin-top: 20px;
    color: #ffffff;
    font-weight: var(--weight-bold);
    text-decoration: none;
    font-size: 1.4em;
}

@media (max-width: 62em) {
    .main_header_logo {
        font-size: 0.8em;
    }

    .main_header_nav {
        text-align: center;
    }

    .main_header_nav_mobile {
        display: block;
        font-size: var(--font-medium);
        cursor: pointer;
        padding: 4px 8px;
        background: rgba(0, 0, 0, 0.3);
    }

    .main_header_nav_mobile:hover {
        background: rgba(0, 0, 0, 0.6);
    }

    .main_header_nav_mobile_close {
        cursor: pointer;
        display: block;
        padding: 10px;
        color: var(--color-red);
        font-size: 2em;
    }

    .main_header_nav_mobile_close:hover {
        color: var(--hover-color-red);
    }

    .main_header_nav_links {
        display: none;
        position: fixed;
        z-index: var(--index-menu);
        left: 100%;
        top: 0;
        background: #ffffff;
        width: 300px;
        height: 100%;
        max-width: 80%;
        padding: 20px;
        border-left: 1px solid #E9E9E9;
    }

    .main_header_nav_links .login,
    .main_header_nav_links .link {
        background: none;
        display: block;
        color: #555555;
        padding: 10px;
        transition-duration: 0s;
    }

    .main_header_nav_links .link:hover {
        color: #ffffff;
        background: #ffffff;
        background-image: var(--gradient-yellow);
    }

    .main_footer_content {
        flex-wrap: wrap;
        text-align: center;
    }

    .main_footer_content article {
        flex-basis: 50%;
    }

    .blog_article {
        flex-basis: calc(50% - 40px);
    }

    .faq_ask {
        flex-basis: 100%;
        margin: 20px 0 0 0;
    }

    .page_section_equipa .container{
        flex-wrap: wrap;
    }

    .page_section_equipa .article_equipa{
        flex-basis: 100%;
    }
}

@media (max-width: 52em) {
    .home_featured_header {
        font-size: 0.8em;
    }

    .home_featured_header h1{
        font-size: 2rem;
    }

    .home_features_content {
        flex-wrap: wrap;
    }

    .home_features_content article {
        flex-basis: 100%;
    }

    .home_optin_content {
        flex-wrap: wrap;
        text-align: center;
    }

    .home_optin_content_flex {
        flex-basis: 100%;
    }

    .about_page_steps article {
        flex-basis: 100%;
        margin: 20px 0 0 0;
    }

    .post_page_meta {
        display: none;
    }

    .social_share {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social_share_title {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .post_page_header h1 {
        font-size: 1.8em;
    }

    .post_page_hero {
        padding: 10px 0 0 0;
    }

    .page_section_equipa .article_equipa{
        flex-basis: 100%;
    }
}

@media (max-width: 32em) {
    .home_video_content img{
        max-width: 100%;
    }

    .main_footer_content article {
        flex-basis: 100%;
    }

    .blog_article {
        text-align: center;
        flex-basis: calc(100% - 40px);
    }

    .optin_page_content h1 {
        font-size: 1.8em;
    }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    height: 50px; 
    background-color: #222; 
}
.marquee-content {
    display: inline-block;
    padding-right: 0;
    animation: marquee 50s linear infinite;
}

.marquee-content span {
    font-weight: bold;
    color: #fff;
}
@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}


/*whatsapp*/
.whatsapp{
    position: fixed;
    display: flex;
    right: 3rem;
    bottom: 3rem;
    width: 290px;
    height: 60px;
    background: #128c7e;
    padding: 1rem;
    border-radius: 25px;
    box-shadow: 0 0 0 rgba(204,169,44, 0.4);
    animation: pulse 2s infinite;
    z-index: 99;
}

.whatsapp a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    color: #fff;
    font-size: .8rem;
}

.whatsapp span {
    display: block;
}

.whatsapp img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}

[data-anime]{
    opacity: 0;
    transition: .3s;
}

[data-anime='left']{
    transform: translate3d(-50px, 0px, 0px);
}

[data-anime='right']{
    transform: translate3d(50px, 0px, 0px);
}

[data-anime].animate{
    opacity: 1;
    transform: translate3d(0, 0px, 0px);
}



</pre></body></html>