/* === Variáveis de Cor (Baseadas na Imagem) === */
:root {
    --primary-blue: #013EFD; /* Azul principal */
    --dark-blue-gradient-start: #182556; /* Azul escuro do gradiente */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #6c757d;
    --border-color: #dee2e6;
}

/* === Reset Completo === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Fonte mais próxima do sistema */
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Evita espaço extra abaixo das imagens */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

input, button, label {
    font-size: inherit;
}

/* === Layout Principal === */
.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
}

.main-container {
    width: 80%;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

/* === Botões === */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-start,
.btn-specialist-white,
.hero-form .btn-primary {
    position: relative;
    overflow: hidden;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    outline: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

/* Efeito de brilho no hover */
.btn::before,
.btn-primary::before,
.btn-secondary::before,
.btn-outline::before,
.btn-start::before,
.btn-specialist-white::before,
.hero-form .btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.6s;
    z-index: -1;
}

/* Estado hover para todos os botões */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-start:hover, 
.btn-specialist-white:hover,
.hero-form .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Efeito brilho no hover */
.btn:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-outline:hover::before,
.btn-start:hover::before,
.btn-specialist-white:hover::before,
.hero-form .btn-primary:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* Estado active para todos os botões */
.btn:active,
.btn-primary:active,
.btn-secondary:active,
.btn-outline:active,
.btn-start:active,
.btn-specialist-white:active,
.hero-form .btn-primary:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos específicos para cada tipo de botão, mantendo suas cores mas aplicando o novo visual */
.btn-primary {
    background: linear-gradient(135deg, #0147E9 0%, #1E68F6 100%);
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: #0147E9;
    border: 1px solid rgba(1, 71, 233, 0.2);
}

.btn-outline {
    background: transparent;
    color: #0147E9;
    border: 2px solid #0147E9;
}

.btn-start {
    background: linear-gradient(135deg, #0147E9 0%, #1E68F6 100%);
    color: #ffffff;
    border-radius: 30px;
    padding: 14px 30px;
}

.btn-specialist-white {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 14px 30px;
}

/* Estilos para o ícone de seta nos botões */
.arrow {
    margin-left: 5px;
    font-size: 1.2em;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-start:hover .arrow,
.btn-specialist-white:hover .arrow {
    transform: translateX(3px);
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-start,
    .btn-specialist-white,
    .hero-form .btn-primary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #182556;
    padding: 9px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* === Header === */
.header {
    padding: 20px 0 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 28px;
}

/* Botão de integração fácil */
.integration-btn {
    background-color: white;
    color: #000000;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.integration-btn:hover {
    background-color: white;
}

/* === Hero Section === */
.hero {
    background: url('assets/hero.svg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 30px;
}

/* Removendo transição do hero-container */
.hero-container, 
.hero-container *, 
.hero-text, 
.hero-text *, 
.hero-man-image {
    transition: none !important;
    animation: none !important;
}

/* Classes para controle de visibilidade em diferentes tamanhos de tela */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Estilo para a imagem hero desktop */
.hero-man-image {
    position: absolute;
    bottom: -60px;
    left: calc(50% + 90px);
    transform: translateX(-50%) !important;
    max-height: 600px;
    z-index: 1;
    pointer-events: none !important;
    user-select: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
}

/* Estilo para o contêiner da imagem mobile */
.mobile-image-container {
    display: none;
    width: 100%;
    text-align: center;
    margin: 20px 0 30px;
    order: 2;
}

.hero-man-image-mobile {
    max-width: 100%;
    max-height: 320px;
    margin: 0 auto;
    z-index: 2;
    pointer-events: none !important;
    user-select: none !important;
}

.hero-text {
    width: 48%;
    padding-top: 40px;
    padding-right: 0;
    z-index: 2;
}

.hero-text h1 {
    color: white;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    max-width: 600px;
    white-space: normal;
}

.hero-text p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 360px;
}

.hero-text .feature-list {
    margin-bottom: 1.5rem;
    list-style: none;
}

.hero-text .feature-item {
    margin-bottom: 1rem;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

/* Fallback se as imagens não carregarem */
.feature-item img[src*="seta"]:not([src=""]):not([src^="data:"]) {
    display: inline-block;
}

.feature-item img[src*="seta"]:not([src=""]):not([src^="data:"]):not([complete="complete"]) {
    position: relative;
}

.feature-item img[src*="seta"]:not([src=""]):not([src^="data:"]):not([complete="complete"])::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #013EFD;
    margin-right: 8px;
}

/* Removo o pseudo-elemento de bolinha, agora usamos ícones */
.hero-text li::before {
    content: none;
}

.hero-image-form {
    width: 48%;
    display: flex;
    justify-content: flex-end;
    padding-top: 40px;
    z-index: 2;
}

.hero-form {
    background-color: white;
    color: #333;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 3;
}

.hero-form h2 {
    font-size: 0.85rem;
    text-align: left;
    margin-bottom: 5px;
    color: #6c757d;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
}

.hero-form input[type="tel"] {
    background-color: #f5f5f5;
}

.hero-form .radio-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-form label {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-form input[type="radio"] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 2px;
    accent-color: #013EFD;
}

/* === Responsividade para Hero === */
@media (max-width: 992px) {
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
        background-position: left center;
    }
    
    /* Alternando visibilidade para mobile/desktop */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: left;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        display: flex;
    }
    
    .hero-text, .hero-image-form {
        width: 100%;
        padding: 0;
    }
    
    .hero-text {
        order: 1;
    }
    
    .mobile-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: -5px;
        margin-top: 10px;
        width: 100%;
        position: relative;
        z-index: 1;
        text-align: center;
    }
    
    .hero-man-image-mobile {
        max-width: 100%;
        max-height: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .hero-image-form {
        order: 3;
        justify-content: center;
        align-items: center;
        margin-top: -50px;
        position: relative;
        z-index: 2;
        display: flex;
        width: 100%;
    }
    
    .hero-form {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .hero-text h1, .hero-text p {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
    
    .hero-text h1 {
        height: auto;
        font-size: 2.1rem;
        margin-left: 0;
        margin-right: 0;
        max-width: 600px;
    }
    
    .hero-text .feature-item {
        justify-content: flex-start;
    }
    
    /* Ajuste para o botão de começar na mesma altura da logo */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .header .btn-secondary {
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
        margin-left: auto;
    }
    
    /* Ajuste para a badge de API de pagamentos */
    .hero-text .badge {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    
    /* Ajustes no header para mobile - tornando-o transparente */
    .header {
        padding: 15px 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: transparent;
        z-index: 10;
    }
    
    .main-container {
        width: 92%;
    }
    
    .header-container {
        align-items: center;
    }
    
    .logo {
        height: 22px;
    }
    
    /* Ajustes no botão Começar agora */
    .header .btn-secondary {
        height: 32px;
        padding: 0 12px;
        font-size: 0.8rem;
        border-radius: 6px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .header .btn-secondary:hover {
        background-color: #ffffff;
    }
    
    /* Posicionamento da badge API */
    .hero-text {
        padding-top: 70px;
        position: relative;
        width: 100%;
    }
    
    .api-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .badge-icon {
        width: 14px;
        height: 14px;
        margin-right: 5px;
    }
    
    /* Headline principal com tamanho reduzido */
    .hero-text h1 { 
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
        height: auto;
        line-height: 1.3;
        max-width: 100%;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
        height: auto;
        line-height: 1.5;
    }
    
    .feature-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    
    /* Reduzir o espaçamento entre os itens de feature */
    .hero-text .feature-list {
        margin-bottom: 0.8rem;
    }
    
    .hero-text .feature-item {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Imagens */
    .hero-man-image {
        display: none; /* Garantir que imagem desktop esteja oculta */
    }

    .hero-man-image-mobile {
        max-height: 300px;
        display: block;
        margin: 0 auto;
    }

    /* Reduzir o espaço entre o texto e a imagem para manter proporcionalidade */
    .mobile-image-container {
        margin-top: -10px;
        margin-bottom: -15px;
        justify-content: center;
        width: 100%;
        display: flex;
    }
    
    .hero-image-form {
        margin-top: -40px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-form {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Outros ajustes */
    .container {
        width: 95%;
    }

    .hero-form label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-form {
        width: 100%;
        max-width: 92%;
        padding: 20px 25px;
        margin: 0 auto;
    }
    
    .hero-form input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-form .radio-group label {
        padding: 3px 0;
        margin-bottom: 0;
        font-size: 0.85rem;
    }
    
    .hero-form .radio-group {
        gap: 0;
        margin-bottom: 10px;
    }
    
    .hero-form input[type="radio"] {
        margin-top: 0;
    }
    
    .hero-form h2 {
        margin-bottom: 3px;
    }
    
    .mobile-image-container {
        width: 100%;
        text-align: center;
        margin-bottom: -5px;
    }
    
    .hero-man-image-mobile {
        max-width: 90%;
        max-height: 280px;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
        letter-spacing: -0.025em;
        line-height: 1.3;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: auto;
        max-height: 100px;
    }
    
    .hero-text p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
}

/* === Restante do CSS === */
/* Os estilos para as outras seções (brands, intelligent-payments, etc.) 
   foram mantidos como estavam anteriormente */

/* === Brands Section === */
.brands {
    background-color: var(--white);
    padding: 100px 0 60px; /* Reduzido de 120px para 60px na base */
    text-align: center;
}

.brands h2 {
    font-size: 2.2rem; /* Aumentado de 1.8rem para 2.2rem */
    color: #333;
    margin-bottom: 60px; /* Aumentado para dar mais espaço */
    font-weight: 600;
    text-align: center;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px; /* Aumentado para permitir imagem maior */
    margin: 0 auto;
}

.brand-logos img,
.logos-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: none;
    transform: none !important;
}

.logos-image {
    width: auto;
    max-width: 100%; /* Permitir que a imagem ocupe toda a largura disponível */
    height: auto;
    margin: 0 auto;
    transform: scale(1.15) !important; /* Aumentar em 15% o tamanho da imagem */
    transition: none !important;
    will-change: auto;
}

.logos-image:hover {
    transform: scale(1.15) !important;
    transition: none !important;
}

/* --- Media Queries (Brands) --- */
@media (max-width: 992px) {
    .brands {
        padding: 80px 0 100px;
    }
    
    .brands h2 {
        font-size: 2rem;
    }
    
    .logos-image {
        transform: scale(1.1); /* Ligeiramente menor em telas médias */
    }
}

@media (max-width: 768px) {
    .brands {
        padding: 60px 0 80px;
    }
    
    .brands h2 {
        font-size: 1.7rem;
        margin-bottom: 40px;
    }
    
    .logos-image {
        transform: scale(1); /* Sem escala em telas pequenas */
    }
}


/* === Intelligent Payments Section === */
.intelligent-payments {
    background-color: var(--white);
    padding: 40px 0 100px; /* Reduzido de 80px para 40px no topo */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intelligent-payments h2 {
    font-size: 2.3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.8rem; /* Reduzido de 1rem */
}

.intelligent-payments > .container > p {
    text-align: center;
    color: #667085;
    margin-bottom: 25px; /* Reduzido de 40px */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px; /* Reduzido de 40px */
    gap: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.tab-link {
    flex: 1;
    padding: 16px 20px;
    background: #F8F9FC;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    color: #667085;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 250px;
    font-weight: 600; /* Texto em negrito para todos os botões */
    overflow: hidden;
}

/* Efeito de brilho nos botões inativos - removido */
.tab-link:not(.active)::before {
    display: none;
}

/* Animação para chamar atenção para os botões inativos - removida */
@keyframes pulseTabAttention {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Manter apenas o efeito de flutuação vertical */
.tab-link:not(.active) {
    animation: floatTab 3s infinite alternate ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 61, 191, 0.1);
    transform-origin: center;
}

/* Remover efeito de onda nos botões inativos */
.tab-link:not(.active)::after {
    display: none;
}

/* Remover animação de glowTab */
.tab-link:not(.active).in-view {
    animation: floatTab 2s infinite alternate ease-in-out;
    box-shadow: 0 6px 15px rgba(0, 61, 191, 0.15);
}

.tab-link:hover:not(.active) {
    background: #e9f0ff;
    color: #003DBF;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 61, 191, 0.15);
}

.tab-link.active {
    background: linear-gradient(to right, #2F72FF, #003DBF);
    color: white;
    font-weight: 500;
    box-shadow: 0 8px 16px rgba(0, 61, 191, 0.2);
    animation: none;
}

.tab-content {
    display: none;
    text-align: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Remover esses estilos que não são mais usados */
.tab-content h3,
.tab-content .highlight,
.tab-content-container,
.tab-content-box,
.tab-content-box p {
    display: none;
}

/* Controle de visibilidade das imagens */
.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

/* --- Media Queries (Intelligent Payments) --- */
@media (max-width: 992px) {
    .intelligent-payments h2 {
        font-size: 2rem;
    }
    
    .tab-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .intelligent-payments {
        padding: 60px 0 80px;
    }
    
    .intelligent-payments h2 {
        font-size: 1.8rem;
    }
    
    .intelligent-payments > .container > p {
        font-size: 1rem;
    }
    
    .tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-link {
        width: auto;
        max-width: 30%;
        padding: 10px 12px;
        font-size: 0.85rem;
        flex: 0 0 auto;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        height: auto;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab-content {
        padding: 0;
    }
    
    /* Alternar visibilidade das imagens */
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
    }
}

@media (max-width: 480px) {
    .tab-link {
        padding: 8px 10px;
        font-size: 0.75rem;
        min-height: 40px;
    }
}

/* === Performance System Section === */
.performance-system {
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
}

.performance-container {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    margin: 80px auto;
    overflow: hidden;
}

.performance-text {
    flex: 1;
    background: linear-gradient(135deg, #0147E9 0%, #1E68F6 100%);
    color: #ffffff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.performance-text .badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 500;
    box-shadow: none;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 20px;
}

.performance-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.2;
    max-width: 550px;
}

.performance-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
}

.performance-image {
    flex: 1;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .performance-container {
        flex-direction: column;
        margin: 60px auto;
    }
    
    .performance-text {
        padding: 40px 30px;
    }
    
    .performance-text h2 {
        font-size: 1.8rem;
    }
    
    .performance-image {
        min-height: 350px;
    }
}

/* === Control Dashboard Section === */
.control-dashboard {
    background-color: var(--white);
    padding: 80px 0;
}

.dashboard-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.dashboard-text {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

.dashboard-text .badge {
    margin-bottom: 20px;
    display: inline-flex;
}

.dashboard-image {
    flex: 1;
    max-width: 55%;
    position: relative;
}

.dashboard-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.control-dashboard h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.control-dashboard .highlight {
    color: var(--primary-blue);
}

.control-dashboard p {
    color: #667085;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.desktop-btn-start {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #2F72FF, #003DBF);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 61, 191, 0.2);
}

.desktop-btn-start:hover {
    box-shadow: 0 10px 20px rgba(0, 61, 191, 0.3);
    transform: translateY(-2px);
}

.btn-start {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #2F72FF, #003DBF);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 61, 191, 0.2);
}

.btn-start:hover {
    box-shadow: 0 10px 20px rgba(0, 61, 191, 0.3);
    transform: translateY(-2px);
}

.arrow {
    margin-left: 6px;
    font-size: 1.3rem;
}

/* Media queries para a seção dashboard */
@media (max-width: 992px) {
    .dashboard-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .dashboard-text,
    .dashboard-image {
        max-width: 100%;
    }
    
    .dashboard-mobile-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-btn-start {
        display: none;
    }
    
    .control-dashboard {
        padding: 40px 0 40px;
        background-color: #f5f7fc;
    }
    
    .dashboard-content {
        flex-direction: column;
        gap: 0;
    }
    
    /* Estilos específicos para mobile - texto alinhado à esquerda */
    .dashboard-text {
        text-align: left;
        order: 1;
        padding: 0 15px;
        margin-bottom: 15px;
    }
    
    .dashboard-text .badge {
        margin-left: 0;
        margin-right: auto;
        justify-content: flex-start;
        margin-bottom: 15px;
    }
    
    .control-dashboard h2 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-left: 0;
        margin-right: auto;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .control-dashboard p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
        margin-bottom: 0;
        color: rgba(0, 0, 0, 0.7);
    }
    
    .dashboard-image {
        order: 2;
        padding: 0;
        margin: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .dashboard-image img {
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        height: auto;
        display: block;
    }
    
    .dashboard-mobile-cta {
        display: block;
        order: 3;
        margin-top: 25px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .dashboard-mobile-cta .btn-start {
        font-size: 0.95rem;
    }
}

/* === Antifraud Section === */
.antifraud {
    background-color: var(--white);
    color: #333;
    padding: 80px 0 100px;
}

.antifraud-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 20px;
    text-align: left;
}

.antifraud-text {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

.antifraud-text .badge {
    margin-bottom: 20px;
    display: inline-flex;
}

.antifraud-image {
    flex: 1;
    max-width: 55%;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
    box-shadow: none !important;
}

.antifraud-image::before,
.antifraud-image::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

.antifraud-image .primary-img {
    border-radius: 12px;
    max-width: 100%;
    box-shadow: none !important;
    transition: transform 0.3s ease;
    z-index: 2;
    background: transparent !important;
    position: relative;
}

.antifraud-image .primary-img::before,
.antifraud-image .primary-img::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

.antifraud-image .secondary-img {
    display: none;
}

.antifraud-image:hover .primary-img {
    transform: scale(1.02);
    box-shadow: none !important;
}

.antifraud-image:hover .secondary-img {
    transform: rotate(25deg) scale(1.05);
    opacity: 0.9;
}

.antifraud h2 {
    margin-top: 0;
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
}

.antifraud .highlight {
    color: var(--primary-blue);
    display: inline;
    font-size: inherit;
    font-weight: inherit;
}

.antifraud-text p {
    color: #667085;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    font-weight: 400;
}

.antifraud-text .btn-start {
    background: linear-gradient(135deg, #0147E9 0%, #1E68F6 100%);
    color: var(--white);
    padding: 14px 30px;
    font-weight: 500;
    border-radius: 30px;
}

.antifraud-text .btn-start:hover {
    transform: translateY(-2px);
}

.antifraud-mobile-cta {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 25px;
    animation: fadeIn 0.5s ease-in-out;
}

.antifraud-mobile-cta .btn-start {
    display: inline-flex;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 61, 191, 0.25);
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-weight: 600;
    border-radius: 100px;
    padding: 16px 20px;
}

@media (max-width: 992px) {
    .antifraud-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .antifraud-text,
    .antifraud-image {
        max-width: 100%;
    }
    
    /* Manter a ordem: primeiro texto, depois imagem */
    .antifraud-text {
        order: 1;
    }
    
    .antifraud-image {
        order: 2;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .antifraud-image .secondary-img {
        top: -15%;
        right: -5%;
        max-width: 40%;
    }
    
    .antifraud-mobile-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .antifraud {
        padding: 60px 0 80px;
        background-color: #f5f7fc;
    }
    
    /* Alinhamento à esquerda para mobile */
    .antifraud-text {
        text-align: left;
        padding: 0 15px;
    }
    
    .antifraud-text .badge {
        margin-left: 0;
        margin-right: auto;
        justify-content: flex-start;
        margin-bottom: 15px;
    }
    
    .antifraud h2 {
        font-size: 1.7rem;
        line-height: 1.2;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .antifraud .highlight {
        font-size: inherit;
        color: #0147E9;
    }
    
    .antifraud-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
        margin-left: 0;
        margin-right: auto;
        margin-bottom: 0;
        color: rgba(0, 0, 0, 0.7);
    }
    
    .antifraud-text .btn-start {
        display: none;
    }
    
    .antifraud-image {
        background: transparent !important;
        box-shadow: none !important;
        margin: 20px 0 0;
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .antifraud-image .primary-img,
    .antifraud-image .secondary-img {
        box-shadow: none !important;
        background: transparent !important;
    }
    
    .antifraud-image .secondary-img {
        top: -10%;
        right: 0;
        max-width: 35%;
    }
    
    .antifraud-container {
        flex-direction: column;
        gap: 0;
    }
    
    .antifraud-mobile-cta {
        display: block;
        order: 3;
        margin-top: 25px;
        padding: 0 20px;
    }
    
    .antifraud-mobile-cta .btn-start {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .antifraud-mobile-cta .btn-start {
        font-size: 0.95rem;
    }
}

/* === CTA Bottom Section === */
.cta-bottom {
    background: linear-gradient(to right, #3465FF, #00269B);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    border-radius: 20px;
    margin: 30px auto;
    max-width: 1200px;
}

.cta-bottom h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.cta-bottom .btn-secondary {
    margin-top: 20px;
    padding: 15px 35px;
    font-size: 1.05rem;
    background: #ffffff;
    color: #0147E9;
    border: 1px solid rgba(1, 71, 233, 0.2);
}

.cta-bottom .btn-secondary:hover {
    background-color: #f5f5ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* === FAQ Section === */
.faq {
    background-color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
}

.faq-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 50px 40px;
    background-color: #f9fafb;
    border-radius: 20px;
}

.faq h2 {
    font-size: 2.2rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.faq .badge {
    display: inline-flex;
    margin-bottom: 15px;
    background-color: rgba(1, 62, 253, 0.1);
    color: var(--primary-blue);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
    height: fit-content;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(1, 62, 253, 0.1);
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1rem;
    line-height: 1;
    margin-left: 10px;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    background-color: rgba(1, 62, 253, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    opacity: 0;
    transition: max-height 0.5s ease;
    padding: 0;
}

.faq-item.open .faq-answer {
    opacity: 1;
    padding-bottom: 20px;
}

.faq-answer p {
    padding: 0 24px 0 24px;
    color: #667085;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* === Footer Section === */
.footer {
    background-color: #ffffff;
    padding: 40px 0 25px;
}

.footer-first-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    max-width: 350px;
}

.logo-footer {
    height: 35px;
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
    margin: 0 10px;
}

/* Área de menus - posicionado mais à direita */
.footer-menus {
    display: flex;
    gap: 50px;
    margin-left: auto;
    max-width: 600px;
}

.links-section h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.links-section ul li {
    margin-bottom: 8px;
}

/* Informações de endereço e CNPJ */
.footer-info-row {
    margin-bottom: 15px;
    color: #333;
}

.footer-info-row p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #555;
}

/* Linha inferior com copyright e selo */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.copyright {
    font-size: 0.65rem;
    text-align: center;
    color: #555;
    margin: 0;
    white-space: nowrap;
    max-width: 60%;
}

.seal-ra1000 {
    height: 30px;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-first-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-column {
        max-width: 100%;
    }
    
    .footer-menus {
        max-width: 100%;
        gap: 30px;
        margin-left: 0;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .seal-ra1000 {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 20px;
        background-color: #f5f7fc;
    }
    
    .footer-first-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .logo-footer {
        height: 28px;
        margin-bottom: 15px;
    }
    
    .footer-column p {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 280px;
        text-align: center;
        margin: 0 auto 15px;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 5px;
    }
    
    .footer-menus {
        display: none;
    }
    
    .footer-info-row {
        margin: 0 0 20px;
        text-align: center;
    }
    
    .footer-info-row p {
        font-size: 0.75rem;
        line-height: 1.4;
        color: #555;
        margin-bottom: 0;
    }

    .footer-info-row p:first-child {
        margin-bottom: 5px;
    }
    
    .footer-bottom-row {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        border-top: none;
        padding-top: 0;
    }
    
    .copyright {
        font-size: 0.65rem;
        text-align: center;
        color: #555;
        margin: 0;
        white-space: nowrap;
        max-width: 60%;
    }
    
    .seal-ra1000 {
        height: 30px;
        margin: 0;
    }
}

@media (max-width: 360px) {
    .copyright {
        font-size: 0.6rem;
    }
}

/* Animação FadeIn */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Media Queries (btn-specialist) --- */
@media (max-width: 992px) {
    .btn-specialist {
        position: static;
        transform: none;
        display: inline-block;
        margin-top: 30px;
    }
    
    .btn-specialist:hover {
        transform: translateY(-2px);
    }
}

/* --- Media Queries (CTA Bottom) --- */
@media (max-width: 992px) {
    .cta-bottom {
        margin: 25px 20px;
        padding: 40px 20px;
    }
    
    .cta-bottom h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .cta-bottom {
        margin: 20px 15px;
        padding: 35px 15px;
        border-radius: 15px;
    }
    
    .cta-bottom h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-bottom .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* --- Media Queries (FAQ) --- */
@media (max-width: 992px) {
    .faq {
        padding: 100px 0 80px;
    }
    
    .faq-container {
        padding: 40px 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0 70px;
    }
    
    .faq-container {
        padding: 30px 20px;
    }
    
    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px 20px;
        font-size: 0.9rem;
    }
}

/* === Efeito de hover nas imagens === */
.dashboard-image img,
.tab-image {
    transition: transform 0.3s ease;
    will-change: transform;
}

.dashboard-image:hover img,
.tab-content:hover .tab-image {
    transform: scale(1.02);
}

/* Garantindo que pequenos ícones não tenham esse efeito */
.badge-icon:hover,
.feature-icon:hover,
.social-icons img:hover,
.pc-image:hover,
.performance-image:hover .pc-image,
.performance-image:hover img,
.logos-image:hover,
.brand-logos img:hover {
    transform: none !important;
}

/* === Limpar seções duplicadas === */
/* Remover todas as seções duplicadas abaixo */

/* Ajustes específicos para alguns botões */
.hero-form .btn-primary {
    width: 100%;
    margin-top: 5px;
    border-radius: 6px;
}

.cta-bottom .btn-secondary {
    margin-top: 20px;
    padding: 15px 35px;
    font-size: 1.05rem;
    background: #ffffff;
    color: #0147E9;
    border: 1px solid rgba(1, 71, 233, 0.2);
}

.antifraud-text .btn-start {
    background: linear-gradient(135deg, #0147E9 0%, #1E68F6 100%);
    color: var(--white);
    padding: 14px 30px;
    font-weight: 500;
    border-radius: 30px;
}

/* === Animações adicionais para botões === */
@keyframes pulseButton {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 62, 253, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(1, 62, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(1, 62, 253, 0);
    }
}

.btn-primary,
.btn-start {
    animation: pulseButton 2s infinite;
}

/* Adiciona um efeito de destaque nos botões principais */
.btn-primary::after,
.btn-start::after {
    content: '';
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
    );
    z-index: -1;
}

.btn-primary:hover::after,
.btn-start:hover::after {
    opacity: 1;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

/* Efeito de ondulação ao clicar */
.btn:active::before,
.btn-primary:active::before,
.btn-secondary:active::before,
.btn-outline:active::before,
.btn-start:active::before,
.btn-specialist-white:active::before {
    opacity: 0.6;
    transform: scale(0);
    transition: 0s;
}

/* Efeito adicional para quando os botões estão visíveis durante o scroll */
.tab-link:not(.active).in-view {
    animation: floatTab 2s infinite alternate ease-in-out;
    box-shadow: 0 6px 15px rgba(0, 61, 191, 0.15);
}

/* Efeito de clique para enfatizar a interação */
.tab-link.clicked {
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.tab-link.clicked::before {
    opacity: 1;
    transform: scale(1.5);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Keyframes para efeito de flutuação */
@keyframes floatTab {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3px);
    }
}

.api-badge {
    position: relative;
    z-index: 3;
}

@media (max-width: 992px) {
    /* Estilos para tablet já existentes */
}

/* Keyframes para efeito de flutuação */
@keyframes floatTab {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3px);
    }
}

/* Classe para o badge API */
.api-badge {
    position: relative;
    z-index: 3;
}

/* Controle de visibilidade das imagens */
.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

/* --- Media Queries (Intelligent Payments) --- */
@media (max-width: 992px) {
    .intelligent-payments h2 {
        font-size: 2rem;
    }
    
    .tab-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .intelligent-payments {
        padding: 60px 0 80px;
    }
    
    .intelligent-payments h2 {
        font-size: 1.8rem;
    }
    
    .intelligent-payments > .container > p {
        font-size: 1rem;
    }
    
    .tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-link {
        width: auto;
        max-width: 30%;
        padding: 10px 12px;
        font-size: 0.85rem;
        flex: 0 0 auto;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
        height: auto;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab-content {
        padding: 0;
    }
    
    /* Alternar visibilidade das imagens */
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
    }
}

@media (max-width: 480px) {
    .tab-link {
        padding: 8px 10px;
        font-size: 0.75rem;
        min-height: 40px;
    }
}

.dashboard-mobile-cta {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 25px;
    animation: fadeIn 0.5s ease-in-out;
}

.dashboard-mobile-cta .btn-start {
    display: inline-flex;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 61, 191, 0.25);
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-weight: 600;
    border-radius: 100px;
    padding: 16px 20px;
}

/* Media queries para a seção dashboard */
@media (max-width: 992px) {
    .dashboard-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .dashboard-text,
    .dashboard-image {
        max-width: 100%;
    }
    
    .dashboard-mobile-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .control-dashboard {
        padding: 40px 0 40px;
        background-color: #f5f7fc;
    }
    
    .dashboard-content {
        flex-direction: column;
        gap: 0;
    }
    
    /* Estilos específicos para mobile - texto alinhado à esquerda */
    .dashboard-text {
        text-align: left;
        order: 1;
        padding: 0 15px;
        margin-bottom: 15px;
    }
    
    .dashboard-text .badge {
        margin-left: 0;
        margin-right: auto;
        justify-content: flex-start;
        margin-bottom: 15px;
    }
    
    .control-dashboard h2 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-left: 0;
        margin-right: auto;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .control-dashboard p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
        margin-bottom: 0;
        color: rgba(0, 0, 0, 0.7);
    }
    
    .dashboard-image {
        order: 2;
        padding: 0;
        margin: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .dashboard-image img {
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        height: auto;
        display: block;
    }
    
    .dashboard-mobile-cta {
        display: block;
        order: 3;
        margin-top: 25px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .dashboard-mobile-cta .btn-start {
        font-size: 0.95rem;
    }
}

@media (min-width: 992px) {
    .dashboard-content {
        flex-direction: row-reverse;
    }
}

html {
    scroll-behavior: smooth;
} 