/* @import "public/fonts/fonts.css"; */
@import "../fonts/fonts.css";

/* Root Vars */
:root {
    --primary:              #2D5292;
    --primary-hover:        #336cce;
    --success:              #34AF23;
    --success-hover:        #218f13;
    --info:                 #39B5FC;
    --alert:                #FFA600;
    --danger:               #FE494C;

    --primary-background2:  #F9F7FF;
    --primary-background:   #EFE5FF;
    --success-background:   #DEF5EA;
    --info-background:      #E0F3FD;
    --alert-background:     #FCF0D8;
    --danger-background:    #FFE5E5;

    --white:            #FFFFFF;
    --black:            #000000;

    --gray-600:         #616161;
    --gray-950:         #262626;

    --emerald-500:      #15BC60;

    --gray-background:  #F2F6FC;
}

/* Master Reset */
* {
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
}

/* Default & Bootstrap */
body {
    padding: 0 !important;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -fx-text-fill:white;
    overflow: auto !important; /* Para projetos Next.js */
}
body, html {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: var(--gray-600);
    font-size: 16px;
}
a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}
h1 {
    font-size: 48px;
    font-weight: bold;
    color: var(--gray-950);
}
h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--gray-950);
}
h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--gray-950);
}
figure {
    margin: 0;
}


/* JS Scroll */
.js-scroll {
    opacity: 0;
}

/* Animations */
.anime-show-up {
    opacity: 0;
    animation: show-up 1.5s forwards;
}
.anime-show-down {
    opacity: 0;
    animation: show-down 1.5s forwards;
}
.anime-show-rotate-right {
    opacity: 0;
    animation: show-rotate-right 1.5s forwards;
}
.anime-show-zoom {
    opacity: 0;
    animation: show-zoom 1.5s forwards;
}
@keyframes show-up {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes show-down {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes show-rotate-right {
    0% { opacity: 0; transform: translateY(-100px) rotate(20deg) scale(1.7); }
    100% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
}
@keyframes show-zoom {
    0% { opacity: 0; transform: scale(.6); }
    100% { opacity: 1; transform: scale(1); }
}

.navbar-toggler {
    border: 1px solid var(--gray-800);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas-header {
    padding: 28px 28px 0;
}
.offcanvas-header h5 {
    font-weight: bold;
    color: var(--gray-600);
}
.offcanvas-backdrop {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, .6);
}
.offcanvas-backdrop.show {
    opacity: 1;
}

.custom-tabs .nav-tabs {
    /* border-bottom-color: var(--gray-100); */
    border-bottom: none;
    gap: 48px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}
.custom-tabs .nav-tabs .nav-link {
    padding: 12px 0 22px;
    color: var(--gray-400);
    font-weight: bold;
}
.custom-tabs .nav-tabs .nav-item.show .nav-link,
.custom-tabs .nav-tabs .nav-link.active,
.custom-tabs .nav-tabs .nav-link {
    border: none;
    position: relative;
}
.custom-tabs .nav-tabs .nav-item.show .nav-link,
.custom-tabs .nav-tabs .nav-link.active {
    color: var(--gray-950);
}
.custom-tabs .nav-tabs .nav-link.active::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    background: var(--primary);
    left: 0;
    bottom: 6px;
}

.custom-carousel-nav-wrapper {
    padding: 0 80px;
}
.custom-carousel-nav .owl-nav {
    display: flex;
    justify-content: center;
    top: 0;
    width: 100%;
}
.custom-carousel-nav .owl-nav button {
    width: 56px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.custom-carousel-nav .owl-nav button i {
    font-size: 48px;
}
.custom-carousel-nav .owl-nav button:hover i {
    color: var(--primary-hover);
}
.custom-carousel-nav .owl-nav .owl-prev {
    left: -80px;
}
.custom-carousel-nav .owl-nav .owl-prev i {
    margin: 0 0 0 5px;
    color: var(--primary);
}
.custom-carousel-nav .owl-nav .owl-next {
    right: -80px;
}
.custom-carousel-nav .owl-nav .owl-next i {
    margin: 0 5px 0 0;
    color: var(--primary);
}

.fontsize20 {
    font-size: 20px;
}

/* ###### WEBSITE SECTIONS BEGIN ###### */

/* Main Header */
#main-header {
    margin-bottom: 0;
    background: var(--primary);
}
#main-header .content {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 16px;
    position: relative;
    transition: .2s;
    height: 96px;
    flex-wrap: nowrap;
}
#main-header.compact .content {
    border-radius: 0 0 16px 16px;
    height: 64px;
}
#main-header .content .navbar-toggler {
    padding-top: 4px;
    padding-bottom: 4px;
    border: none;
}
#main-header .navbar {
    transition: .2s;
    padding: 0;
    background: none;
}
#main-header.compact .navbar {
    background: var(--primary);
}
#main-header .navbar .navbar-brand {
    display: flex;
    align-items: center;
}
#main-header .navbar .navbar-brand img {
    transition: .2s;
    max-width: 100%;
}
#main-header .navbar-collapse {
    justify-content: end;
}
#main-header .navbar-nav {
    justify-content: center;
}
#main-header li a {
    font-weight: 500;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    color: var(--white);
}
#main-header li a:hover {
    text-decoration: underline;
    color: var(--white);
}
#main-header li.cta-item {
    display: none;
}
#main-header .endbuttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Main Hero Section */
.main-hero-section {
    background: var(--primary);
    background-image: url(../img/bg-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
}
.main-hero-section .content {
    display: flex;
    align-items: center;
    padding-top: 200px;
    padding-bottom: 150px;
    position: relative;
    justify-content: space-between;
}
.main-hero-section .content .hero-text {
    max-width: 634px;
    min-width: 634px;
    padding: 40px 0;
}
.main-hero-section .content .hero-text .hat {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    color: #61E7FF;
}
.main-hero-section .content .hero-text h1 {
    margin-bottom: 24px;
    color: var(--white);
}
.main-hero-section .content .hero-text p {
    margin: 0;
}
.main-hero-section .content .hero-text .list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.main-hero-section .content .hero-text .item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.main-hero-section .content .hero-text .item i {
    color: #30CC22;
    font-size: 32px;
}
.main-hero-section .content .hero-text .btn {
    margin-top: 40px;
}
.main-hero-section .content .hero-fig {
    width: 100%;
    display: flex;
    justify-content: center;
}
.main-hero-section .content .hero-fig img {
    max-width: 100%;
}
.main-hero-section .content .support {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(45, 82, 146, .85);
    border-radius: 32px;
    padding: 40px 32px;
    display: flex;
    color: var(--white);
    backdrop-filter: blur(10px);
}
.main-hero-section .content .support .left {
    display: flex;
    gap: 24px;
}
.main-hero-section .content .support .left i {
    font-size: 105px;
}
.main-hero-section .content .support .left h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 32px;
}
.main-hero-section .content .support .left p {
    margin-bottom: 0;
    line-height: 28px;
}
.main-hero-section .content .support .right {
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
    max-width: 200px;
}

/* Default Section */
.default-section {
    padding: 100px 0;
}
.default-section.bg-gray-section {
    background: var(--gray-background);
}
.default-section .section-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}
.default-section .section-header.align-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
}
.default-section .section-header .hat {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
}
.default-section .endbutton {
    margin-top: 50px;
    text-align: center;
}

/* Map Section */
.map-section .content {
    display: flex;
    align-items: center;
    gap: 56px;
}
.map-section .content h2 {
    margin-bottom: 40px;
}

/* Products Section */
.products-section {
    background: var(--primary);
}
.products-section h2 {
    color: var(--white);
}
.products-section .products-carousel {
    display: flex;
}
.products-section .owl-stage-outer {
    padding-left: 2px;
}
.products-section .owl-stage {
    display: flex;
    justify-content: center;
}
.products-section .owl-stage .owl-item {
    flex: 1;
}
.products-section .item {
    border: 2px solid #BBEEFB;
    border-radius: 16px;
    background-image: linear-gradient(#2D5292, #19376A);
    color: var(--white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.products-section .item figure {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 24px;
}
.products-section .item h3 {
    color: var(--white);
    font-size: 24px;
    background: -webkit-linear-gradient(#FFF, #BBEEFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.products-section .item ul {
    padding: 0 0 0 14px;
    margin: 0;
}
.products-section .custom-carousel-nav .owl-nav button i {
    color: var(--white);
}

/* Logos Sections */
.logos-section .logos-carousel {
    display: flex;
}
.logos-section .logos-carousel .owl-stage-outer {
    padding-left: 2px;
}
.logos-section .logos-carousel .owl-stage {
    display: flex;
    justify-content: center;
}
.logos-section .logos-carousel .owl-stage .owl-item {
    flex: 1;
}
.logos-section .logos-carousel .item {
    display: flex;
    align-items: center;
    height: 100%;
}
.logos-section .logos-carousel .item img {
    max-width: 100%;
    max-height: 120px;
    height: auto;
    width: auto;
}

/* Systems Section */
.systems-section .list .item {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.systems-section .list .item .figs-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.systems-section .list .item .figs-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(45, 82, 146, 0), #2D5292);
}
.systems-section .list .item .figs-wrapper .print {
    width: 100%;
}
.systems-section .list .item .figs-wrapper .print img {
    width: 100%;
}
.systems-section .list .item .figs-wrapper .logo {
    width: 144px;
    height: 77px;
    position: absolute;
    background: var(--white);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
}
.systems-section .list .item .endbuttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Features Section */
.features-section .list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.features-section .list .item {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 16px);
    background: var(--white);
    box-shadow: 0 40px 40px #E3EAF5;
    border-radius: 16px;
    overflow: hidden;
    padding: 32px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 32px;
    box-sizing: border-box;
}
.features-section .list .item i {
    font-size: 100px;
    color: var(--primary);
}

/* Union Section */
.union-section .content {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.union-section .content .section-header {
    align-items: flex-start;
    text-align: left;
    margin: 0;
    max-width: 570px;
}
.union-section .content .section-header p {
    margin: 0;
}
.union-section .content .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas de tamanho igual */
    grid-template-rows: repeat(2, auto);  /* 2 linhas com altura automática */
    gap: 24px; /* Espaçamento opcional */
}
.union-section .content .list .item {
    background: var(--white);
    border: 1px solid #E2E8F1;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
    text-align: center;
    min-width: 170px;
    border-radius: 16px;
}
.union-section .content .list .item i {
    display: flex;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    background: var(--primary-background);
    border-radius: 200px;
    color: var(--white);
}
.union-section .content .list .item h3 {
    font-size: 16px;
    text-wrap: nowrap;
}

/* Benefits Sections */
.benefits-section {
    background: var(--primary);
}
.benefits-section .section-header h2 {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}
.benefits-section .list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.benefits-section .list .item {
    display: flex;
    width: calc(33.33% - 16px);
    background: var(--white);
    box-shadow: 0 40px 40px rgba(0, 0, 0, .15);
    border-radius: 16px;
    overflow: hidden;
    padding: 32px;
    gap: 24px;
    box-sizing: border-box;
}
.benefits-section .list .item i {
    font-size: 40px;
    color: var(--primary);
}
.benefits-section .list .item .text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}
.benefits-section .list .item .text p {
    margin: 0;
    line-height: 30px;
}

/* Evolution Section */
.evolution-section .section-header {
    max-width: 780px;
    margin: 0 auto;
}
.evolution-section .section-header .hat {
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 40px;
}
.evolution-section .section-header h2 {
    margin-bottom: 32px;
}
.evolution-section .section-header p {
    margin: 0;
}

/* App Section */
.app-section .content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}
.app-section .content .text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 400px;
    min-width: 400px;
}
.app-section .content .text .buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.app-section .content .text .buttons a {
    width: fit-content;
    transition: .2s;
}
.app-section .content .text .buttons a:hover {
    transform: scale(1.1);
}
.app-section img {
    max-width: 100%;
}

/* Presence Section */
.presence-section {
    background: var(--primary);
    color: var(--white);
    padding: 0;
}
.presence-section .content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}
.presence-section .text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding:  100px 0;
}
.presence-section .text .hat {
    background: var(--white);
    color: var(--primary);
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 24px;
}
.presence-section .text h2 {
    color: var(--white);
    margin-bottom: 24px;
}
.presence-section figure {
    min-width: 551px;
    max-width: 551px;
    align-self: flex-end;
}
.presence-section figure img {
    max-width: 100%;
}

/* API Section */
.api-section .content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.api-section .content h2 {
    margin-bottom: 32px;
}
.api-section .content .list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-bottom: 32px;
}
.api-section .content .list .item {
    width: calc(50% - 12px);
}
.api-section .content .list .item p {
    margin: 0;
}
.api-section .content figure {
    max-width: 663px;
    min-width: 663px;
}
.api-section .content figure img {
    max-width: 100%;
}
.api-section .content .endbutton {
    text-align: left;
}

/* Plans Section */
.plans-section .list {
    display: flex;
    gap: 24px;
}
.plans-section .list .item {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    background: var(--white);
    border-radius: 32px;
    border: 1px solid #CEDBEF;
    padding: 32px;
    box-shadow: 0px 40px 40px #E6EEFA;
}
.plans-section .list .item .main-text {
    display: flex;
    flex-direction: column;
    gap: 48px;
    height: 100%;
}
.plans-section .list .item .main-text header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.plans-section .list .item .main-text header .hat {
    font-size: 24px;
    color: #616161;
    font-weight: bold;
}
.plans-section .list .item .main-text header h3 {
    font-size: 56px;
    color: var(--primary);
    font-weight: bold;
}
.plans-section .list .item .main-text header .desc {
    color: #B4B4B4;
    text-transform: uppercase;
}
.plans-section .list .item .main-text .checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.plans-section .list .item .main-text .checklist .checkitem {
    display: flex;
    align-items: center;
    gap: 12px;
}
.plans-section .list .item .main-text .checklist .checkitem i {
    color: var(--success);
}

/* Main Footer */
#contato {
    background: var(--primary);
    color: var(--white);
    padding-top: 64px;
}
#contato .top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}
#contato .top .left figure {
    margin-bottom: 24px;
}
#contato .top .left figure img {
    max-width: 100%;
}
#contato .top .left .address {
    margin-bottom: 24px;
}
#contato .top .left .list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#contato .top .left .list .item {
    display: flex;
    align-items: center;
    gap: 8px;
}
#contato .top .left .list a[href^=tel]{ 
    color:#FFF; 
    text-decoration:none;
}
#contato .top .links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#contato .top .links a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
#contato .bottom {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid #466CAC;
    margin-top: 32px;
}
#contato .bottom .links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
#contato .bottom .links a {
    color: var(--white);
}
#contato .bottom p {
    margin: 0;
}

/* ###### WEBSITE SECTIONS END ###### */

.whatsapp-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #0EC143;
    color: var(--white) !important;
    font-size: 40px;
    text-decoration: none;
    border-radius: 200px;
    box-shadow: 0 40px 40px rgba(0, 0, 0, .2);
    transition: .2s;
}
.whatsapp-floating i {
    font-size: 40px;
}
.whatsapp-floating:hover {
    background: #13d84e;
    text-decoration: none;
    color: var(--white) !important;
    box-shadow: 0 40px 40px rgba(0, 0, 0, .25);
}

/* xxl */
@media only screen and (min-width:1400px)  {
}

/* xl */
@media only screen and (max-width:1399px)  {
    #main-header li a {
        color: var(--primary);
    }
    #main-header li a:hover {
        color: var(--primary);
    }
    #main-header li.cta-item {
        display: block;
    }

    .main-hero-section .content {
        padding-top: 100px;
    }
    .main-hero-section .content {
        padding-bottom: 100px;
    }
    .main-hero-section .content .hero-text {
        max-width: none;
        min-width: auto;
        text-align: center;
    }
    .main-hero-section .content .hero-text .hat {
        display: block;
    }
}

/* lg */
@media only screen and (max-width:1199px)  {
    .main-hero-section .content .hero-text {
        margin: 0;
    }
    .main-hero-section .content {
        flex-direction: column;
    }
    .main-hero-section .content .hero-fig img {
        max-width: 100%;
    }

    .map-section .content {
        flex-direction: column;
        gap: 16px;
    }
    .map-section .content figure {
        order: 2;
    }
    .map-section .content figure img {
        max-width: 100%;
    }

    .presence-section .text {
        padding-bottom: 0;
    }
    .presence-section .content {
        flex-direction: column;
        gap: 16px;
    }
    .presence-section figure {
        max-width: none;
        min-width: auto;
        justify-self: center;
        align-self: center;
    }

    .api-section .content figure {
        max-width: 400px;
        min-width: 400px;
    }
}

/* md */
@media only screen and (max-width:991px)  {
    .main-hero-section .content .support {
        flex-direction: column;
        gap: 32px;
    }
    .main-hero-section .content .support .right {
        margin-left: 102px;
    }

    .features-section .list .item {
        width: calc(50% - 16px);
    }

    .union-section .content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    .union-section .content .section-header {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .benefits-section .list .item {
        width: calc(50% - 16px);
    }

    .api-section .content {
        flex-direction: column;
    }

    .plans-section .list {
        flex-direction: column;
    }
}

/* sm */
@media only screen and (max-width:767px)  {
    #main-header .cta-button {
        display: none;
    }
    #main-header li.cta-item {
        display: block;
    }

    .main-hero-section .content .support {
        position: static;
        background: var(--primary);
        margin-top: -130px;
        animation: none !important;
        opacity: 1 !important;
    }
    .main-hero-section .content .support .left i {
        text-align: center;
    }
    .main-hero-section .content .support .left {
        flex-direction: column;
    }
    .main-hero-section .content .support .right {
        margin: 0;
        min-width: auto;
        max-width: none;
        justify-content: center;
    }

    .systems-section .list {
        margin-bottom: -48px;
    }
    .systems-section .list .item {
        margin-bottom: 48px;
        gap: 24px;
    }

    .union-section .content .list {
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }

    .benefits-section .list .item {
        width: 100%;
        min-width: auto;
    }

    .app-section .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .app-section .content .text {
        max-width: none;
        min-width: auto;
    }
    .app-section .content .text .buttons {
        align-items: center;
    }

    #contato .top {
        flex-direction: column;
    }
}

/* xs */
@media only screen and (max-width:575px)  {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    .fontsize20 {
        font-size: 16px;
    }

    .main-hero-section .content {
        padding-bottom: 50px;
    }
    .main-hero-section .content .hero-text {
        padding-top: 0;
    }

    .default-section {
        padding: 50px 0;
    }
    .default-section .section-header {
        margin-bottom: 32px;
    }

    .main-hero-section .content .support .left h2 {
        font-size: 28px;
    }

    .map-section .content h2 {
        margin-bottom: 24px;
    }

    .custom-carousel-nav-wrapper {
        padding: 0;
    }

    .products-section .container {
        padding: 0;
    }
    .custom-carousel-nav-wrapper .owl-carousel .owl-stage-outer .owl-stage {
        padding-left: 0 !important;
    }

    .features-section .list .item {
        gap: 16px;
        padding: 16px;
    }
    .features-section .list .item i {
        font-size: 50px;
    }
    .features-section .list .item h3 {
        font-size: 16px;
    }

    .union-section .content .list .item {
        width: 100%;
        min-width: auto;
    }
    .union-section .content .list .item h3 {
        text-wrap: wrap;
    }

    .evolution-section .section-header {
        margin-bottom: 0;
    }
    .evolution-section .section-header .hat {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .evolution-section .section-header h2 {
        margin-bottom: 24px;
    }

    .presence-section {
        padding-bottom: 0;
    }
    .presence-section .text {
        padding: 0;
    }

    .api-section .content figure {
        max-width: none;
        min-width: auto;
    }
}

/* 500 */
@media only screen and (max-width:500px)  {
}
