:root {
    --mint: #94FFDF;
    --mint-light: #BEFFEB;
    --green: #00C689;
    --green-dark: #00996A;
    --teal: #023B4A;
    --teal-mid: #00859B;
    --gray-bg: #F4F6F7;
    --text-muted: #6B7B83;
    --mint-btn: #B7FFD6; /* Tom exato do botão "Entre em contato" */
    --teal-dark: #2D3A44; /* Cor escura do título e textos (Inter) */
    --text-body: #4A5560; /* Cor cinza do parágrafo descritivo */
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: 'Inter', sans-serif;
    color: var(--teal);
}

h1, h2, h3, h4, h5 {
    color: var(--teal);
}

.btn-green {
    background-color: var(--green);
    border: none;
    color: #fff;
}

.btn-green:hover {
    background-color: var(--green-dark);
    color: #333840;
}

.btn-outline-teal {
    border: 1px solid #CED5DF;
    color: #333840;
    background: transparent;
    font-weight: 500;
}

.btn-outline-teal:hover {
    background: var(--teal);
    color: #fff;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--green);
}



/* 1. Estado Inicial (No topo da página) */
.navbarcustom {
    position: fixed !important; /* Mantém ele fixo para o JS monitorar corretamente */
    top: 20px; /* Margem inicial do topo */
    left: 50%;
    transform: translateX(-50%); /* Centraliza o menu flutuante */
    width: 90%; /* Largura inicial reduzida (ajuste como preferir) */
    max-width: 1320px; /* Alinha com o container padrão do Bootstrap */
    z-index: 1050;
    transition: all 0.3s ease-in-out; /* Transição suave de tamanho e bordas */
    border-radius: 30px;
    padding: 8px 24px !important;
    font-size: 15px;
    font-weight: 600;
}

/* 2. Estado Ativo (Quando o usuário desce a tela) */
.navbarcustom.navbar-scrolled {
    top: 0 !important; /* Cola no teto */
    width: 100% !important; /* Ocupa toda a largura da tela */
    max-width: 100% !important; /* Remove o limite de largura */
    border-radius: 0 !important; /* Remove as bordas arredondadas */
    padding: 12px 24px !important; /* Ajusta o padding para ficar mais compacto ao rolar */
    box-shadow: 0 10px 30px rgba(2, 59, 74, 0.08) !important; /* Sombra sutil ao rolar */
}

.logo {
    width: 140px;
}

.nav-link {
    color: var(--teal) !important;
    font-weight: 600;
}

.nav-link.active {
    background-color: var(--mint-light);
    border-radius: 8px;
    padding: 6px 14px;
}

/* Hero */
.hero {
    position: relative;
    background-color: #94FFDF;
    padding-top: 24px;
    padding-bottom: 0;
    overflow: hidden;
    min-height: 620px;
}

.hero-text {
    max-width: 520px;
    padding-bottom: 48px;
}

.hero-text h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
}

.hero-img-wrapper {
    text-align: right;
}

.hero-img {
    max-height: 500px;

    object-fit: contain;
}

.sliderok {
    padding-top: 48px;

    min-height: 480px;
    justify-content: space-between;
}

.carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: rgba(2, 59, 74, 0.25);
    border: none;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: var(--green);
}

/* Section headers with slider controls */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dde5e8;
    background: #fff;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-btn:hover {
    background: var(--mint-light);
    border-color: var(--green);
    color: var(--green);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Horizontal card slider */
.cards-slider {
    overflow: hidden;
    margin: 0 -12px;
}

.cards-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    padding: 4px 12px 16px;
}

.advantage-card,
.testimonial-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 260px;
    background: #FCFCFC;

    border-radius: 16px;
    padding: 28px 24px;
    border: 2px solid #F3F4F6;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--mint-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--green);
}

.advantage-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Feature section */
.feature-section {
    background: #16EFAE;
    color: var(--teal);
    padding: 100px 0;
    overflow: hidden;
}

.feature-section h2 {
    color: var(--teal);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    max-width: 560px;
}

.feature-section p {
    opacity: 0.95;
    font-size: 1.05rem;
    max-width: 520px;
    color: rgba(2, 59, 74, 0.95);
}

.feature-section .btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--teal);
    border: none;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.feature-section .btn:hover {
    background: #f8fff8;
    color: var(--green-dark);
}

.feature-img-wrapper {
    text-align: right;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.feature-img {
    width: 100%;
    max-height: none;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

/* Ajustes no Container do Card */
.solution-card {
    border: none !important; /* Sem bordas visíveis */
    background: transparent !important; /* Fundo limpo */
    box-shadow: none !important; /* Removida a sombra pesada do CSS antigo */
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Imagens dos cartões */
.solution-card-img {
    width: 400px;
    max-height: 260px; /* Mantém o limite de altura para não quebrar o layout */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    display: block;
    margin-bottom: 1.5rem;

    /* Força o arredondamento idêntico ao da foto */
    border-radius: 24px !important;
}

.btn-mint-custom {
    margin-top: auto;
    align-self: flex-start;
    background-color: var(--mint-btn) !important;
    color: var(--teal-dark) !important;
    border: none !important;
    padding: 0.75rem 2.2rem !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border-radius: 999px !important;
    box-shadow: none !important; /* Removida a sombra verde neon */
    transition: all 0.2s ease-in-out;
}


.btn-mint-custom:hover {
    background-color: #8EFFD8 !important; /* Um tom levemente mais vivo ao passar o mouse */
    transform: translateY(-1px);
}


/* Zerando paddings internos do body para alinhar com a imagem */
.solution-card-body {
    padding: 10px 0px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Ajustes nos Títulos */
.solution-card-body h4 {
    color: var(--teal-dark) !important;
    font-size: 2rem; /* Tamanho proporcional ao layout da imagem */
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-card-body p {
    color: #5d6d77;
    margin-bottom: 28px;
    line-height: 1.8;
    max-width: 85%;
}

.solution-card-body .btn {
    margin-top: auto;
    align-self: flex-start;
    color: var(--teal);
    border: none;
    padding: 1rem 1.9rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(0, 198, 137, 0.18);
}

.solution-card-body .btn:hover {
    background: #dfffee;
    color: var(--green-dark);
}

/* Soluções FizPay detail */
.solutions-detail {

    padding: 80px 0;
}

.solutions-detail ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.solutions-detail li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-weight: 500;
}

.solutions-detail li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
}

.phone-mockup-wrap {
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.phone-mockup {
    max-height: 380px;
    width: auto;
    border-radius: 24px;
}

.network-text {
    text-align: center;
    max-width: 720px;
    margin: 64px auto 0;
}

/* Testimonials */
.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--green);
    line-height: 1;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--teal);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Partners CTA */
.partners-cta {
    background: var(--green);
    color: #fff;
    padding: 64px 0;
    text-align: center;
}

.partners-cta h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.partners-cta p {
    opacity: 0.9;
    margin-bottom: 32px;
}

.logo-ticker {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 25s linear infinite;
    width: max-content;
}

.logo-ticker-track img {
    height: 32px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e8ecef !important;
    background: transparent;
}

.accordion-button {
    font-weight: 600;
    color: var(--teal);
    background: transparent;
    box-shadow: none !important;
    padding: 20px 0;
}

.accordion-button:not(.collapsed) {
    color: var(--green);
    background: transparent;
}

.accordion-button::after {
    filter: grayscale(1);
}

.accordion-body {
    color: var(--text-muted);
    padding: 0 0 20px;
}

/* Footer */
footer {
    background: var(--mint-light);
    padding: 64px 0 0;
}

footer h6 {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

footer a {
    color: var(--teal);
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    padding: 4px 0;
    opacity: 0.85;
}

footer a:hover {
    color: var(--green);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(2, 59, 74, 0.1);
    padding: 20px 0;
    margin-top: 48px;
}

.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(2, 59, 74, 0.08);
    margin-right: 8px;
    padding: 0;
}

.social-links a:hover {
    background: var(--green);
    color: #fff !important;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 198, 137, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.img-placeholder {
    background: linear-gradient(135deg, var(--mint-light) 0%, #94FFDF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-mid);
    font-size: 0.85rem;
    font-weight: 600;
}


/* Container Geral da Seção */
.solutions-detail {

    font-family: 'Inter', sans-serif;
}
/* Container Geral da Seção */
.solutions-detail .container {

    background-color: #FCFCFC!important; /* Tom de fundo suave para destacar o container branco */
}

/* Títulos */
.main-title-solutions {
    color: #2D3A44 !important;
    font-size: 2.5rem;
}

.text-muted-custom {
    color: #5D6D77;
    font-size: 1.1rem;
}

/* Estilização da Barra Lateral de Navegação (Tabs) */
.custom-solutions-tabs {
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

/* Estilização padrão dos links (Inativos) */
.custom-solutions-tabs .nav-link {
    background: transparent !important;
    color: #8C9BA5 !important;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    padding: 0.5rem 0 0.5rem 1.5rem !important;
    border-radius: 0 !important;
    position: relative;
    border-left: 4px solid #E2E8F0 !important; /* Mantém a linha cinza de fundo comum */
    transition: all 0.3s ease;
}

/* Remove a borda padrão do Bootstrap quando ativo para usarmos a nossa arredondada */
.custom-solutions-tabs .nav-link.active {
    color: #2D3A44 !important;
    border-left: 6px solid transparent !important; /* Esconde a borda cinza antiga */
}

/* Cria a nova borda verde com pontas arredondadas usando ::before */
.custom-solutions-tabs .nav-link.active::before {
    content: "";
    position: absolute;
    left: -4px; /* Alinha exatamente em cima da linha cinza (ajuste se a espessura mudar) */
    top: 0;
    width: 5px; /* A espessura da sua borda */
    height: 100%; /* Ocupa a altura inteira do link */
    background-color: #00E89C; /* A cor verde menta */
    border-radius: 10px; /* Aqui acontece a mágica: arredonda as pontas da barra! */
}

/* Container Azul do Mockup */
.phone-mockup-wrap {
    background-color: #139EC4 !important; /* Azul idêntico ao da imagem */
    border-radius: 24px;
    padding: 3rem 2rem 0rem 2rem; /* Remove padding de baixo para o celular "brotar" da base */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    height: 420px;
}

/* Imagem do Celular */
.phone-mockup {
    max-height: 390px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Textos descritivos abaixo do bloco azul */
.content-desc-wrapper {
    max-width: 95%;
}

.text-dark-custom {
    color: #2D3A44 !important;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.text-muted-desc {
    color: #5D6D77;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Título Principal */
.main-title-depoimentos {
    color: #3C4852 !important;
    font-size: 2.3rem;
    font-weight: 700;
}

/* Controles do Slider (Setas) */
.slider-controls-custom {
    display: flex;
    align-items: center;
}

.slider-btn-custom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #F1F3F5 !important; /* Cor cinza clara de fundo do botão */
    border: none;
    color: #2D3A44;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.slider-btn-custom:hover {
    background-color: #E2E6EA !important;
}

.slider-btn-custom:active {
    transform: scale(0.95);
}

/* Container do Slider de Cartões */
.cards-slider {
    overflow: hidden;
    width: 100%;
}

.cards-track {
    display: flex;
    gap: 20px; /* Distância exata entre os cards */
}

/* Card de Depoimento Customizado */
.testimonial-card-custom {
    flex: 0 0 calc(33.333% - 14px); /* Divide em 3 colunas perfeitas no desktop */
    min-width: 300px;
    background-color: #FAFAFA !important; /* Fundo off-white sutil idêntico à imagem */
    border: 1px solid #F0F2F4 !important; /* Borda bem suave */
    border-radius: 20px !important; /* Bordas arredondadas suaves */
    padding: 35px 30px 30px 30px !important;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Ícone de Aspas (SVG) posicionado no topo esquerdo */
.quote-icon-custom {
    margin-bottom: 12px;
    display: block;
}

/* Texto do Depoimento */
.testimonial-text {
    color: #4A5560 !important;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1; /* Garante que todos os autores alinhem embaixo mesmo com textos de tamanhos diferentes */
}

/* Bloco do Autor (Foto + Nome) */
.testimonial-author-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: none !important;
    padding-top: 0 !important;
}

.testimonial-author-custom img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-custom strong {
    color: #2D3A44 !important;
    font-size: 1.05rem;
    font-weight: 700;
}


/* Container que esconde a barra de rolagem e permite o slide */
#depoimentos-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Esconde a barra no Firefox */
    scroll-snap-type: x mandatory; /* Faz o card grudar ao deslizar */
}

#depoimentos-slider::-webkit-scrollbar {
    display: none; /* Esconde a barra no Chrome, Safari e Edge */
}

/* A esteira que segura todos os cards alinhados em linha */
.cards-track {
    display: flex;
    gap: 24px; /* Espaçamento entre os cards */
}

/* Garante que o card respeite o encaixe perfeito */
.testimonial-card-custom {
    flex: 0 0 350px; /* Altere 350px para a largura que você desejar para cada card */
    scroll-snap-align: start; /* Alinha o card no início do container ao scrollar */
}

@media (max-width: 768px) {
    .testimonial-card-custom {
        flex: 0 0 280px; /* Cards um pouco menores em telas mobile */
    }
}



/* Container Principal com o Verde Menta Atômico da Imagem */
.partners-cta-custom {
    background-color: #00E89C !important; /* Cor exata de fundo */
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Título Principal */
.main-title-cta {
    color: #2D3A44 !important; /* Grafite escuro idêntico ao mockup */
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsivo e imponente */
    font-weight: 800 !important;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

/* Subtítulo */
.subtitle-cta {
    color: #2D3A44 !important;
    opacity: 0.9;
    font-size: 1.05rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Esteira de Logos (Ticker) */
.logo-ticker-custom {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    /* Suaviza as bordas laterais do slider com um efeito fade */
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.logo-ticker-track-custom {
    display: flex;
    width: max-content;
    gap: 80px; /* Espaçamento largo entre os logos como na imagem */
    animation: ticker-slide 20s linear infinite;
}

.ticker-item-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Força os logos a ficarem totalmente brancos e preserva a proporção */
.ticker-logo {
    height: 70px; /* Altura ideal baseada na imagem */
    width: auto;
    opacity: 1 !important;
}

/* Animação CSS para o movimento infinito contínuo */
@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move exatamente metade do container duplicado */
    }
}

/* Pausa a animação ao passar o mouse para uma experiência mais agradável */
.logo-ticker-custom:hover .logo-ticker-track-custom {
    animation-play-state: paused;
}


/* Título da Seção */
.main-title-faq {
    color: #333840 !important;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Container do Accordion (Cria os espaçamentos isolados entre cada linha) */
.custom-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px; /* Separação exata de cada caixa */
}

/* Caixa de cada pergunta */
.faq-item-custom {
    background-color: #F8F9FA !important; /* Fundo off-white sutil do mockup */
    border: 1px solid #F1F3F5 !important;
    border-radius: 24px !important; /* Bordas perfeitamente arredondadas */
    overflow: hidden;
    transition: all 0.2s ease;
}

/* Botão disparador (A pergunta em si) */
.faq-btn-custom {
    background-color: transparent !important;
    color: #333840 !important;
    font-weight: 700 !important;
    font-size: 1.1rem;
    padding: 24px 30px !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Remove a seta padrão do Bootstrap */
.faq-btn-custom::after {
    display: none !important;
}

/* Cria a nossa própria seta customizada e circular da imagem */
.faq-btn-custom::before {
    content: '\F128'; /* Ícone de chevron para baixo do Bootstrap Icons */
    font-family: 'bootstrap-icons' !important;
    order: 2; /* Joga a seta para a extrema direita */
    width: 40px;
    height: 40px;
    background-color: #EBF0F3; /* Fundo circular cinza */
    color: #333840;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Inverte o ícone da seta quando o menu estiver aberto */
.faq-btn-custom:not(.collapsed)::before {
    content: '\F148'; /* Ícone de chevron para cima do Bootstrap Icons */
    background-color: #E2E8F0;
    transform: rotate(0deg);
}

/* Alinhamento flex do cabeçalho da pergunta */
.faq-btn-custom {
    text-align: left;
}

/* Corpo do texto interno (A resposta) */
.faq-body-custom {
    padding: 0px 30px 24px 30px !important; /* Padding ajustado para brotar abaixo do título */
    color: #4A5560 !important;
    font-size: 1.05rem;
    line-height: 1.6;
    background-color: transparent !important;
}
/* Container Geral do Rodapé */
.fizpay-footer-section {
    background-color: #C2FCE9 !important; /* Tom verde-menta claro exato da imagem */
    font-family: 'Inter', sans-serif;
    border-top-left-radius: 24px; /* Bordas arredondadas do topo da seção */
    border-top-right-radius: 24px;
}

/* Tamanho da Logo */
.footer-logo-custom {
    height: 40px;
    width: auto;
}

/* Cores Tipográficas */
.text-dark-custom {
    color: #1A2831 !important; /* Tom grafite bem escuro corporativo */
}

.text-muted-custom {
    color: #435B6B !important; /* Texto de suporte */
}

/* Lista de Links do Rodapé */
.footer-links-list li {
    margin-bottom: 0.9rem;
}

.footer-links-list li a {
    color: #435B6B !important;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #1A2831 !important;
    text-decoration: underline;
}

/* Divisor sutil inferior */
.footer-divider-custom {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    opacity: 1;
}

/* Botões Circulares das Redes Sociais */
.footer-social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

/* Botão Customizado Verde Menta Claro */
.btn-feature-mint {
    background-color: #BEFFEB !important; /* Esse é o tom exato de verde-claro do seu projeto (var(--mint-light)) */
    color: #2D3A44 !important;            /* Cor grafite escura idêntica à do print (var(--teal-dark)) */
    font-weight: 700 !important;          /* Deixa a fonte mais encorpada */
    font-size: 0.95rem !important;
    padding: 0.8rem 2.2rem !important;    /* Espaçamento perfeito para dar a proporção exata da foto */
    border: none !important;              /* Remove qualquer borda */
    box-shadow: none !important;          /* Sem sombras, visual totalmente flat */
    transition: all 0.2s ease-in-out !important;
}

/* Efeito sutil ao passar o mouse */
.btn-feature-mint:hover {
    background-color: #94FFDF !important; /* Inverte para o verde um pouco mais vivo (var(--mint)) */
    color: #2D3A44 !important;
    transform: translateY(-1px);          /* Leve elevação charmosa */
}

@media (min-width: 768px) {
    .footer-social-links {
        justify-content: flex-start;
    }
}

.social-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #00E89C !important; /* Círculo verde-menta vibrante */
    color: #1A2831 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-circle-btn:hover {
    transform: translateY(-3px);
    background-color: #00d18d !important;
    color: #1A2831 !important;
}

/* ==========================================
   BOTÃO VOLTAR AO TOPO FIXO NO MEIO DA BORDA
   ========================================== */
.back-to-top-custom {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); /* Força o alinhamento centralizado perfeito sobre a linha */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #00E89C !important; /* Verde vibrante idêntico ao topo */
    color: #1A2831 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.back-to-top-custom:hover {
    background-color: #00d18d !important;
    color: #1A2831 !important;
    transform: translate(-50%, -55%); /* Leve elevação no hover preservando o ponto de origem */
}
/* Responsividade para telas menores */
@media (max-width: 991px) {
    .testimonial-card-custom {
        flex: 0 0 calc(50% - 10px); /* Exibe 2 cards em tablets */
    }
}

@media (max-width: 576px) {
    .testimonial-card-custom {
        flex: 0 0 100%; /* Exibe 1 card inteiro em smartphones */
    }
}

@media (max-width: 991px) {
    .advantage-card {
        flex: 0 0 calc(50% - 12px);
    }

    .testimonial-card {
        flex: 0 0 calc(80% - 12px);
    }

    .hero {
        min-height: auto;
    }

    .sliderok {
        min-height: auto;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-img-wrapper {
        text-align: right;
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .advantage-card,
    .testimonial-card {
        flex: 0 0 calc(100% - 8px);
        min-width: 100%;
    }

    .hero-img {
        width: 100%;
    }
    .solution-card-img {
        width: 300px;

    }

    .navbarcustom .d-flex {
        flex-direction: column;
        width: 100%;
    }

    .navbarcustom .d-flex .btn {
        width: 100%;
    }
}
/* ==========================================
   NAVBAR MOBILE EM TELA CHEIA (ESTILO MODAL) & ÍCONE DINÂMICO
   ========================================== */

@media (max-width: 991.98px) {
    /* 1. Transforma o menu colapsado em um modal de tela cheia */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #ffffff; /* Cor de fundo do modal */
        z-index: 1040;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centraliza o conteúdo verticalmente */
        align-items: center;    /* Centraliza o conteúdo horizontalmente */
        padding: 2rem;
        transition: all 0.3s ease-in-out;
    }

    /* 2. Garante que a lista de links e botões fiquem organizados e centralizados */
    .navbar-collapse .navbar-nav {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1.5rem; /* Aumenta a fonte dos links no mobile */
    }

    .navbar-collapse .navbar-nav .nav-link {
        padding: 12px 24px !important;
    }

    .navbar-collapse .d-flex {
        flex-direction: column;
        width: 100%;
        max-width: 300px; /* Limita a largura dos botões de ação no modal */
        gap: 1rem !important;
    }

    /* 3. Mantém o botão de fechar visível e acima do modal em tela cheia */
    .navbar-toggler {
        position: relative;
        z-index: 1050; /* Fica acima da tela cheia */
        border: none !important;
        box-shadow: none !important;
    }

    /* ==========================================
       MÁGICA DO ÍCONE: HAMBÚRGUER VIRA "X"
       ========================================== */

    /* Quando o menu está ABERTO (NÃO está colapsado) */
    .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23023B4A'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;

    }

    /* Quando o menu está FECHADO (Está colapsado) */
    .navbar-toggler.collapsed .navbar-toggler-icon {
        transition: transform 0.2s ease-in-out;
    }
    .navbarcustom:has(.show) {
        top: 0!important;
        left: 45%;
    }
}