/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito Sans",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #364146; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #03ABED; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --whatsapp-color: #32BA46;
    --light: #F5F8F2;
    --dark: #252C30;
    --cinza: #a39fb0;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #364146;  /* The default color of the main navmenu links */
    --nav-hover-color: #03ABED; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #03ABED; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f6f8fa;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Geral Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

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

.text-primary {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    border-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 8px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo img {
    max-height: 70px;
    margin-right: 8px;
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 8px 0;
    }

    .header .logo img {
        max-height: 70px;
        margin-right: 8px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: -60px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }






    .navmenu .dropdown .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 40px;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown .dropdown ul a:hover,
    .navmenu .dropdown .dropdown ul .active:hover,
    .navmenu .dropdown .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 133%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 24px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px;
        font-family: var(--nav-font);
        font-size: 13px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 0;
        margin: 0 5px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 24px;
        top: 25px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--surface-color);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), black 20%) 0%, var(--accent-color) 100%);
    padding: 40px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.page-title .breadcrumbs h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: var(--surface-color);
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--surface-color);
}

.page-title .breadcrumbs ol li i {
    margin-right: 5px;
}
.page-title .breadcrumbs ol li a {
    color: var(--surface-color);
    line-height: 150%;
}
.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
    color: var(--surface-color);
}

@media (max-width: 768px) {
    .page-title .breadcrumbs h1 {
        font-size: 26px;
    }

    .page-title .breadcrumbs ol {
        padding: 0 0 5px 0;
        font-size: 14px;
        color: var(--surface-color);
    }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 100px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        padding: 60px 0;
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 26px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-title {
        padding-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px;
        padding-bottom: 15px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    background: url(../img/hero-bg.webp) right center no-repeat;
    width: 100%;
    position: relative;
    padding: 70px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

#changingText {
    /* Primeiro passo: definir um degradê como fundo */
    background-image: linear-gradient(to bottom, #000000, #03ABED);

    /* Segundo passo: apagar do fundo tudo que não estiver imediatamente atrás de texto */
    background-clip: text;
    -webkit-background-clip: text; /* Alguns navegadores precisam do prefixo */

    /* Terceiro passo: apagar o texto, deixando apenas o fundo atrás dele */
    -webkit-text-fill-color: transparent;

    /* Cor que contraste com o degradê, caso o navegador não suporte `background-clip: text` */
    color: black;
    border-right: 1px solid black;
    animation: cursoranim 1s linear infinite;
    font-size: 60px;
    line-height: 80px;
}

@keyframes cursoranim {
    50% {
        border-right: 1px solid rgba(0, 0, 0, 0);
    }
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 10px 30px 30px 0;
    font-size: 22px;
    font-weight: 400;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: linear-gradient(284deg, #000000 -3.45%, var(--accent-color) 75.42%);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: linear-gradient(284deg, var(--accent-color) -3.45%, #000000 75.42%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
    font-size: 18px;
    transition: 0.5s;
    margin-left: 50px;
    font-weight: 600;
    color: #000000;
}

.hero .btn-watch-video i {
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 40px;
        line-height: 50px;
        text-align: center;
    }

    #changingText {
        font-size: 50px;
        line-height: 60px;
        text-align: center;
    }

    .hero p {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }

    .hero .hero-botoes {
        margin: auto;
    }

    .hero .hero-img {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 40px;
        text-align: center;
    }

    #changingText {
        font-size: 28px;
        line-height: 42px;
        text-align: center;
    }

    .hero p {
        font-size: 16px;
        line-height: 25px;
        text-align: center;
        margin: 30px 0 40px 0;
    }

    .hero .hero-botoes {
        margin: auto;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 16px;
    }

    .hero .hero-img {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Services Section Hero
--------------------------------------------------------------*/
.solucoes .service-item {
    display: flex;
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px 24px;
    height: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    flex-direction: column;
    align-content: space-around;
    margin-top: 50px;
}

.solucoes .service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--accent-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.solucoes .service-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-25px);
}

.solucoes .service-item:hover::before {
    transform: scaleY(1);
}

.solucoes .service-item:hover .service-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotateY(180deg);
}

.solucoes .service-item:hover .service-icon i {
    transform: rotateY(180deg);
}

.solucoes .service-item:hover .service-link i {
    transform: translateX(5px);
}

.solucoes .service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    margin: auto;
}

.solucoes .service-icon i {
    font-size: 2rem;
    transition: transform 0.5s ease;
}

.solucoes .service-content {
    flex-grow: 1;
}

.solucoes .service-content h3 {
    font-size: 1.4rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    text-align: center;
}

.solucoes .service-content p {
    margin-bottom: 1.25rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 14px;
    text-align: justify;
    margin-right: 0;
}

.solucoes .service-link {
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solucoes .service-link span {
    margin-right: 0.5rem;
}

.solucoes .service-link i {
    transition: transform 0.3s ease;
}

.solucoes .service-link:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 767.98px) {
    .solucoes .service-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .solucoes .service-icon {
        width: 60px;
        height: 60px;
    }

    .solucoes .service-icon i {
        font-size: 1.5rem;
    }

    .solucoes .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .solucoes .service-content p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .solucoes .service-item {
        flex-direction: column;
        text-align: center;
    }

    .solucoes .service-item::before {
        width: 100%;
        height: 4px;
        transform: scaleX(0);
        transform-origin: left;
    }

    .solucoes .service-item:hover::before {
        transform: scaleX(1);
    }

    .solucoes .service-icon {
        margin-bottom: 1.25rem;
    }

    .solucoes .service-link {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 40px;
}

.about .content h1 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
}

.about .content h2 {
    font-size: 24px;
    font-weight: 700;
}

.about .content p {
    margin: 15px 0 30px 0;
    line-height: 24px;
    text-align: justify;
}

.about .content .btn-read-more {
    color: var(--contrast-color);
    background: linear-gradient(284deg, #000000 -3.45%, var(--accent-color) 75.42%);
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more span {
    font-family: var(--default-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.about .content .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.about .content .btn-read-more:hover {
    background: linear-gradient(284deg, var(--accent-color) -3.45%, #000000 75.42%);
}
.about .content .btn-read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about .content {
        padding: 30px 20px;
    }
}



/*--------------------------------------------------------------
# Features Alt Section
--------------------------------------------------------------*/
/*
#meu-container {
    height: 550px;
    overflow-x: hidden;
    overflow-y: scroll;
    direction: rtl;
    overflow: auto;
}

#meu-container::-webkit-scrollbar {
    width: 5px;
}

#meu-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#meu-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

#meu-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}
*/

#ancora_fixa {
    scroll-behavior: smooth;
    scroll-margin-top: 100px;
}

#modelos {
    scroll-behavior: smooth;
    scroll-margin-top: 170px;
}

.features-alt h2 {
    font-size: 44px;
    line-height: 120%;
    font-weight: 400;
    color: var(--heading-color);
}
.features-alt h2 strong {
    background-image: linear-gradient(to bottom, #000000, #03ABED);
    background-clip: text;
    -webkit-background-clip: text; /* Alguns navegadores precisam do prefixo */
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.features-alt p {
    font-size: 18px;
    text-align: justify;
    line-height: 130%;
    font-weight: 400;
    color: var(--cinza);
    margin-bottom: 50px;
}

.features-alt .nav-tabs {
    border: none;
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.features-alt .nav-tabs .nav-item {
    margin-bottom: 5px;
}

.features-alt .nav-tabs .nav-item:last-child {
    margin-bottom: 0;
}

.features-alt .nav-tabs .nav-link {
    padding: 5px;
    border: none;
    border-radius: 10px;
    background: var(--surface-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    direction: ltr;
}

.features-alt .nav-tabs .nav-link .d-flex {
    position: relative;
    z-index: 1;
}

.features-alt .nav-tabs .nav-link .icon-box {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link .icon-box i {
    font-size: 16px;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
    transition: all 0.4s ease;
}

.features-alt .nav-tabs .nav-link:hover {
    transform: translateY(-2px);
}

.features-alt .nav-tabs .nav-link:hover::before {
    opacity: 1;
}

.features-alt .nav-tabs .nav-link:hover .icon-box {
    background: var(--accent-color);
}

.features-alt .nav-tabs .nav-link:hover .icon-box i {
    color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link:hover h3 {
    color: var(--accent-color);
}

.features-alt .nav-tabs .nav-link:hover p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-alt .nav-tabs .nav-link.active {
    background: var(--accent-color);
}

.features-alt .nav-tabs .nav-link.active::before {
    opacity: 0;
}

.features-alt .nav-tabs .nav-link.active .icon-box {
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features-alt .nav-tabs .nav-link.active .icon-box i {
    color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link.active h3 {
    color: var(--contrast-color);
}

.features-alt .nav-tabs .nav-link.active p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features-alt .tab-content .content-box {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.features-alt .tab-content .content-box h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.features-alt .tab-content .content-box h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.features-alt .tab-content .content-box p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.features-alt .tab-content .content-box p.highlight {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.features-alt .tab-content .content-box .features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.features-alt .tab-content .content-box .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-left: 0;
    transition: all 0.3s ease;
    text-align: justify;
}

.features-alt .tab-content .content-box .features-list li:last-child {
    margin-bottom: 0;
}

.features-alt .tab-content .content-box .features-list li i {
    font-size: 20px;
    color: var(--accent-color);
    margin-right: 12px;
}

.features-alt .tab-content .content-box .features-list li span {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-alt .tab-content .content-box .features-list li:hover {
    transform: translateX(5px);
}

.features-alt .tab-content .content-box .features-list li:hover span {
    color: var(--default-color);
}

.features-alt .tab-content .content-box .image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.features-alt .tab-content .content-box .image-box img {
    transition: all 0.6s ease;
}

.features-alt .tab-content .content-box .image-box:hover img {
    transform: scale(1.05);
}

.features-alt .tab-content .content-box .image-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.features-alt .tab-pane {
    transition: all 0.4s ease;
}

.features-alt .tab-pane.fade {
    transform: translateY(10px);
    opacity: 0;
}

.features-alt .tab-pane.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 991px) {
    .features-alt .nav-tabs {
        margin-bottom: 30px;
    }

    .features-alt .tab-content .content-box {
        padding: 30px;
    }

    .features-alt .tab-content .content-box h4 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    #meu-container {
        height: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    #ancora_fixa {
        scroll-behavior: smooth;
        scroll-margin-top: 110px;
    }

    .features-alt {
        padding-left: 5px;
        padding-right: 5px;
    }

    .features-alt h2 {
        font-size: 30px;
    }
    .features-alt h2 strong {
        background-image: linear-gradient(to bottom, #000000, #03ABED);
        background-clip: text;
        -webkit-background-clip: text; /* Alguns navegadores precisam do prefixo */
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    .features-alt p {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .features-alt .nav-tabs .nav-item {
        margin-bottom: 10px;
    }

    .features-alt .tab-content .content-box {
        padding: 20px 15px;
    }

    .features-alt .tab-content .content-box h4 {
        font-size: 22px;
    }

    .features-alt .tab-content .content-box p {
        font-size: 15px;
    }
}

/* Exemplo conversa whatsapp */
.exemplo {
    background-color: #DBD8D4;
    margin: auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    min-height: 550px;
    border-radius: 10px;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.tela {
    width: 94%;
    max-width: 94%;
    height: 520px;
    background-color: rgb(255 255 255 / 0.4);
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    margin: auto;
    border-radius: 10px;
}
.tela-crm-contabil {
    background-color: rgb(255 255 255 / 0.4);
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    margin: auto;
}
.cabecalho {
    padding: 16px;
    background-color: #075e54;
    border-bottom: 1px solid #ddd;
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.cabecalho h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}
.card {
    border: none;
    border-radius: 10px;
    flex: 1;
    background-color: #EFEBE6;
    background-image: url(../img/image.webp);
}
.card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff0;
}

.message-container {
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    border-radius: 10px;
    max-height: calc(80vh - 178px);
    position: relative;
}
.message-container .message {
    margin-bottom: 15px;
    max-width: 75%;
    line-height: 1.4;
}
.user-message {
    background-color: #dcf8c6;
    color: #333;
    padding: 10px 15px;
    border-radius: 20px;
    align-self: flex-end;
    word-wrap: break-word;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
    max-width: 70%;
    margin-bottom: 10px;
    font-size: 14px;
}
.bot-message {
    background-color: #fff;
    color: #4c4c4c;
    padding: 10px 15px;
    border-radius: 20px;
    align-self: flex-start;
    word-wrap: break-word;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
    max-width: 70%;
    margin-bottom: 10px;
    font-size: 14px;
}
.alert-message {
    background-color: #ff5722;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    align-self: flex-start;
    word-wrap: break-word;
}
.input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #eee;
    border-top: 1px solid #ddd;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    top: 450px;
    border-radius: 0 0 10px 10px;
}
.input-container input[type="text"] {
    flex: 1;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #ccc;
    font-size: 15px;
    background-color: #f0f0f0;
    transition: border-color 0.2s ease;
    margin-right: 10px;
}
.input-container input[type="text"]:focus {
    outline: none;
    border-color: #075e54;
}
.input-container .btn-submit {
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #009443;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
    margin: auto;
}
.input-container .btn-submit:disabled {
    background-color: #68a568;
    cursor: not-allowed;
}
.input-container .btn-submit:not(:disabled):hover {
    background-color: #086e36;
}
input[type="hidden"] {
    display: none;
}
.card-body h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}
.card-body ul {
    list-style-type: none;
    padding: 0;
}
.card-body ul li {
    font-size: 14px;
    color: #555;
}
.card-body ul li b {
    font-weight: 700;
}
@media (max-width: 768px) {
    .exemplo {
        padding: 0;
        width: 100%;
        min-height: 500px;
        margin-top: 30px;
    }
    .tela {
        width: 94%;
        max-width: 94%;
        height: 480px;
        background-color: rgb(255 255 255 / 0.4);
        box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
        display: flex;
        flex-direction: column;
        margin: auto;
        border-radius: 10px;
    }
    .cabecalho h2 {
        font-size: 17px;
    }
    .message-container {
        max-height: calc(80vh - 160px);
        padding: 10px;
    }
    .message-container .user-message,
    .message-container .bot-message {
        max-width: 85%;
        padding: 6px 12px;
        font-size: 14px;
    }
    .input-container {
        padding: 10px;
        top: 420px;
    }
    .input-container input[type="text"] {
        font-size: 14px;
        padding: 8px 10px;

    }
    .input-container .btn-submit {
        font-size: 14px;
        padding: 8px 12px;

    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-wrapper {
    height: auto !important;
}

.clients .clients-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    padding: 10px;
}

.clients .clients-card:hover {
    border-color: var(--accent-color);
}

.clients .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    opacity: 1;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 5px;
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.call-to-action {
    padding: 120px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--contrast-color);
    font-size: 38px;
    font-weight: 700;
    text-shadow: 1px 1px 2px #000000;
    margin-bottom: 10px;
}

.call-to-action p {
    font-size: 22px;
    color: var(--contrast-color);
    text-shadow: 1px 1px 2px #000000;
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 45px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: var(--contrast-color);
    background: var(--whatsapp-color);
    box-shadow: 0 0 10px rgba(73, 78, 92, 0.75);
}

.call-to-action .cta-btn:hover {
    background: color-mix(in srgb, var(--whatsapp-color) 90%, white 15%);
}

.call-to-action .cta-btn i {
    font-size: 18px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .call-to-action {
        padding: 100px 0;
    }

    .call-to-action h3 {
        margin-bottom: 30px;
    }

    .call-to-action p {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 .cta-image-wrapper {
    position: relative;
}

.call-to-action-2 .cta-image-wrapper img {
    position: relative;
    z-index: 2;
    transform: scaleX(-1);
}

.call-to-action-2 .cta-image-wrapper .cta-pattern {
    position: absolute;
    width: 80%;
    height: 80%;
    bottom: -30px;
    right: -30px;
    background: repeating-linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%), color-mix(in srgb, var(--accent-color), transparent 98%) 10px, color-mix(in srgb, var(--accent-color), transparent 95%) 10px, color-mix(in srgb, var(--accent-color), transparent 95%) 20px);
    z-index: 1;
    border-radius: 1rem;
}

.call-to-action-2 .cta-content {
    margin-left: 30px;
}

.call-to-action-2 .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .call-to-action-2 .cta-content h2 {
        font-size: 2rem;
    }
}

.call-to-action-2 .cta-content .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: justify;
}

.call-to-action-2 .cta-features {
    margin-bottom: 1.5rem;
}

.call-to-action-2 .cta-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.call-to-action-2 .cta-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.call-to-action-2 .cta-features .feature-item span {
    font-size: 1rem;
}

.call-to-action-2 .cta-action .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}

.call-to-action-2 .cta-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.call-to-action-2 .cta-action .btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}

.call-to-action-2 .cta-action .btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .call-to-action-2 .cta-image-wrapper {
        margin-bottom: 2rem;
    }

    .call-to-action-2 .cta-content {
        margin-left: 0;
    }

    .call-to-action-2 .cta-image-wrapper .cta-pattern {
        width: 70%;
        height: 70%;
        bottom: -20px;
        right: -20px;
    }

    .call-to-action-2 .cta-action {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .call-to-action-2 .cta-action .btn {
        width: 100%;
    }
}
/*--------------------------------------------------------------
# Depoimentos Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
    height: auto !important;
}

.testimonials .testimonial-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.testimonials .testimonial-card:hover {
    border-color: var(--accent-color);
}

.testimonials .testimonial-content {
    padding: 40px 30px 30px;
    position: relative;
    flex-grow: 1;
}

.testimonials .testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.testimonials .testimonial-content .quote-icon {
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 42px;
    color: color-mix(in srgb, var(--accent-color), transparent 85%);
    z-index: 0;
    opacity: 0.8;
}

.testimonials .testimonial-profile {
    padding: 20px 30px;
    background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.testimonials .rating {
    margin-bottom: 15px;
}

.testimonials .rating i {
    color: #ffc107;
    margin-right: 3px;
    font-size: 14px;
}

.testimonials .profile-info {
    display: flex;
    align-items: center;
}

.testimonials .profile-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--background-color);
    margin-right: 15px;
}

.testimonials .profile-info div {
    flex: 1;
}

.testimonials .profile-info h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
}

.testimonials .profile-info h4 {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (max-width: 767px) {
    .testimonials .testimonial-content {
        padding: 30px 20px 20px;
    }

    .testimonials .testimonial-content p {
        font-size: 15px;
    }

    .testimonials .testimonial-content .quote-icon {
        font-size: 36px;
        left: 20px;
    }

    .testimonials .testimonial-profile {
        padding: 15px 20px;
    }

    .testimonials .profile-info img {
        width: 45px;
        height: 45px;
    }
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-tabs .nav-pills {
    display: inline-flex;
    padding: 8px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 50px;
}

.faq .faq-tabs .nav-pills .nav-item {
    margin: 0 5px;
}

.faq .faq-tabs .nav-pills .nav-item:first-child {
    margin-left: 0;
}

.faq .faq-tabs .nav-pills .nav-item:last-child {
    margin-right: 0;
}

.faq .faq-tabs .nav-pills .nav-link {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--default-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq .faq-tabs .nav-pills .nav-link:hover {
    color: var(--accent-color);
}

.faq .faq-tabs .nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq .faq-tabs .nav-pills .nav-link i {
    font-size: 1.1rem;
    margin-right: 10px;
}

.faq .faq-list .faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .faq-list .faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq .faq-list .faq-item h3 {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--surface-color);
    transition: all 0.3s ease;
    position: relative;
}

.faq .faq-list .faq-item h3:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.faq .faq-list .faq-item h3 .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 15px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq .faq-list .faq-item h3 .question {
    flex: 1;
}

.faq .faq-list .faq-item h3 .faq-toggle {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-left: 15px;
}

.faq .faq-list .faq-item .faq-content {
    padding: 15px;
    display: none;
}

.faq .faq-list .faq-item .faq-content p {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.faq .faq-list .faq-item .faq-content p:last-child {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-list .faq-item.faq-active h3 {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
    display: block;
}

.faq .faq-cta {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    padding: 30px;
    border-radius: 10px;
}

.faq .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .faq .faq-tabs .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px;
        border-radius: 30px;
    }

    .faq .faq-tabs .nav-pills .nav-item {
        margin: 0 5px;
    }

    .faq .faq-tabs .nav-pills .nav-link {
        padding: 8px 14px;
        font-size: 14px;
    }

    .faq .faq-tabs .nav-pills .nav-link i {
        font-size: 1rem;
        margin-right: 5px;
    }
}

@media (max-width: 576px) {
    .faq .faq-list .faq-item h3 {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq .faq-list .faq-item h3 .num {
        width: 24px;
        height: 24px;
        margin-right: 10px;
        font-size: 0.8rem;
    }

    .faq .faq-list .faq-item .faq-content .content-inner {
        padding: 0 20px;
    }

    .faq .faq-list .faq-item .faq-content.faq-active .content-inner {
        padding: 15px 20px;
    }
}

/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--accent-color);
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    transition: all 0.3s ease;
}

.contact .btn-square:hover {
    transform: translateY(-4px);
}

.contact a {
    color: var(--dark);
    text-decoration: none;
}
.contact a:hover,
.contact a:focus{
    color: var(--accent-color);
}

.contact .box-contato {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .contact .btn-square {
        width: 120px;
        height: 120px;
        font-size: 20px;
    }

    .contact .icone-contato {
        margin-bottom: 50px;
    }

    .contact {
        padding: 80px 10px;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--background-color);
    position: relative;
    font-size: 16px;
    padding: 0 10px;
    border-top:1px solid #ddd;
}

.footer .footer-top {
    background-color: color-mix(in srgb, var(--background-color), white 5%);
    padding-top: 60px;
    padding-bottom: 20px;
}

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

.footer p span {
    font-weight: 500;
    color: var(--accent-color);
}

.footer h2 {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.footer h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer .link-contato {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--heading-color);
    font-weight: normal;
    transition: .3s;
    text-decoration: none;
}

.footer .link-contato:hover {
    color: var(--accent-color);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .footer-links .link-contato i {
    color: var(--accent-color);
    margin-right: 12px;
}

.footer .copyright {
    border-top: solid 1px #ECECEF;
    padding: 20px 0;
    font-size: 14px;
}

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

.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    color: var(--accent-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    text-decoration: none;
}

@media (max-width: 1200px) {
    .footer .footer-top .footer-about img {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .footer .footer-top .footer-about img {
        margin-bottom: 40px;
    }

    .footer {
        background-color: var(--background-color);
        position: relative;
        font-size: 14px;
    }

    .footer h2 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .footer .footer-links .link-contato i {
        color: var(--accent-color);
        margin-right: 8px;
    }

    .footer .footer-links p {
        font-size: 14px;
    }


    .footer .copyright {
        text-align: center;
    }

}

/* Ícone Flutuante WhatsApp */

.whatsapp-flutuante {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #32BA46;
    color: #fff;
    font-size: 30px;
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
    transition: background 0.5s;
    border-radius: 100%;
    z-index: 99999;
}

.whatsapp-flutuante:focus {
    background-color: #32BA46;
    color: #fff;
    outline: none;
}

.whatsapp-flutuante:hover {
    box-shadow: 0 0 10px rgba(73, 78, 92, 0.75);
    background-color: #32BA46;
    color: #fff;
    outline: none;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 48px;
    height: 48px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 20px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/* Página Atendimentos */
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services h2 {
    font-size: 44px;
    line-height: 120%;
    font-weight: 400;
    color: var(--heading-color);
    margin-right: 10px;
    margin-bottom: 32px;
}
.services h2 strong {
    background-image: linear-gradient(to bottom, #000000, #03ABED);
    background-clip: text;
    -webkit-background-clip: text; /* Alguns navegadores precisam do prefixo */
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.services .btn-vantagens {
    color: var(--contrast-color);
    background: linear-gradient(284deg, #000000 -3.45%, var(--accent-color) 75.42%);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.services .btn-vantagens:hover {
    color: var(--contrast-color);
    background: linear-gradient(284deg, var(--accent-color) -3.45%, #000000 75.42%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.services .service-item {
    border-radius: 16px;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
    padding: 30px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    transition: all 500ms ease;
}

.services .service-item .icon i {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 32px;
    transition: 0.3s;
    margin-bottom: 12px;
}

.services .service-item h3 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
}

.services .service-item h3 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 0;
    text-align: justify;
}

.services .service-item:hover {
    transform: translateY(-10px);
}

.services .service-item:hover h4 a {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .services h2 {
        font-size: 28px;
        line-height: 120%;
    }

    .services .btn-vantagens {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .services .service-item {
        border-radius: 14px;
        padding: 14px;
        min-height: 250px;
        margin-bottom: 20px;
        transition: all 500ms ease;
    }

    .services .service-item .icon i {
        padding: 14px;
        border-radius: 16px;
        font-size: 30px;
        margin-bottom: 10px;
    }

    .services .service-item h3 {
        margin-bottom: 12px;
        font-size: 17px;
        line-height: 28px;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services h2 {
        font-size: 26px;
        line-height: 120%;
    }

    .services .btn-vantagens {
        font-size: 16px;
        margin-bottom: 50px;
    }
}

/*--------------------------------------------------------------
# Plataforma Section
--------------------------------------------------------------*/
.plataforma .nav-tabs {
    border: 0;
    justify-content: space-between;
}

.plataforma .nav-link {
    color: var(--heading-color);
    padding: 15px 0;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.plataforma .nav-link h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.plataforma .nav-link:hover {
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.plataforma .nav-link.active {
    background-color: var(--background-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.plataforma .tab-content {
    margin-top: 30px;
}

.plataforma .tab-pane h4 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.plataforma .tab-pane h4:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.plataforma .tab-pane ul {
    list-style: none;
    padding: 0;
    text-align: justify;
}

.plataforma .tab-pane ul li {
    padding-top: 10px;
}

.plataforma .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.plataforma .tab-pane p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .plataforma {
        padding-left: 5px;
        padding-right: 5px;
    }

    .plataforma .nav-link {
        padding: 10px 0;
    }

    .plataforma .nav-link h3 {
        font-size: 14px;
        text-align: center;
    }

    .plataforma .tab-pane h4 {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .plataforma .tab-pane ul li {
        padding-top: 10px;
    }

    .plataforma .tab-pane ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--accent-color);
    }

    .plataforma .tab-pane p:last-child {
        margin-bottom: 0;
    }
}

/*** Planos Start ***/
.price .price-item {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.price .price-item:hover {
    background: var(--bs-white) !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
    position: absolute;
    width: 200px;
    height: 110px;
    top: -40px;
    right: -80px;
    background: var(--accent-color) !important;
    color: var(--bs-white);
    transform: rotate(42deg);
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
}

.price .btn-comprar {
    color: var(--contrast-color);
    background: linear-gradient(284deg, #000000 -3.45%, var(--accent-color) 75.42%);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    transition: 0.5s;
}

.price .btn-comprar:hover {
    color: var(--contrast-color);
    background: linear-gradient(284deg, var(--accent-color) -3.45%, #000000 75.42%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
/*** Pricing End ***/
/* Página Atendimentos */

/* Página Desenvolvimento de Sistemas */
.desenvolvimento-sistemas {
    justify-content: space-between;
    margin-top: 30px;
}

.desenvolvimento-sistemas h4 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.desenvolvimento-sistemas h4:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.desenvolvimento-sistemas ul {
    list-style: none;
    padding: 0;
    text-align: justify;
}

.desenvolvimento-sistemas ul li {
    padding-top: 10px;
}

.desenvolvimento-sistemas ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.desenvolvimento-sistemas p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .desenvolvimento-sistemas {
        padding-left: 5px;
        padding-right: 5px;
    }

    .desenvolvimento-sistemas h4 {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .desenvolvimento-sistemas ul li {
        padding-top: 10px;
    }

    .desenvolvimento-sistemas ul i {
        font-size: 20px;
        padding-right: 4px;
        color: var(--accent-color);
    }

    .desenvolvimento-sistemas p:last-child {
        margin-bottom: 0;
    }
}
/* Página Desenvolvimento de Sistemas */


/*Página Help */
.corpo-help {
    margin: 30px 0;
}
p {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 17px;
    line-height: 24px;
    text-align: justify;
}
.subtitulo-help {
    font-weight: bold;
    margin-top: 30px;
    text-align: justify;
}
p.note{
    margin:20px 0;
    padding:15px;
    background-color:#cce6ff;
    text-align: justify;
}
.li_help {
    font-size: 17px;
    text-align: justify;
    margin: 20px 0;
}