        :root {
            --primary: #38cab3;
            --secondary: #6c5ffc;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --dark: #1a1a3c;
            --darker: #0e0e23;
        }

        .bg-landing {
            background: linear-gradient(135deg, var(--darker), var(--dark)) !important;
            color: #fff;
        }

        .bg-primary-gradient {
            background: linear-gradient(135deg, var(--primary), #57d7c3) !important;
        }

        .bg-info-gradient {
            background: linear-gradient(135deg, #0dcaf0, #0d6efd);
        }

        .bg-success-gradient {
            background: linear-gradient(135deg, #198754, #20c997);
        }

        .bg-warning-gradient {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
        }

        .bg-dark-light {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .feature-card {
            border: none;
            border-radius: 15px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            border: 1px solid var(--primary);
        }

        .counter-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .counter-card:hover {
            border-color: var(--primary);
            transform: scale(1.02);
        }

        .step-card {
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .step-card:hover {
            transform: scale(1.02);
            border-color: var(--primary);
        }

        .offer-card {
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }

        .offer-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .tech-badge {
            background: rgba(56, 202, 179, 0.1);
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .live-badge {
            background: rgba(220, 53, 69, 0.1);
            border: 1px solid var(--danger);
            color: var(--danger);
            padding: 0.25rem 0.5rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .live-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--danger);
            border-radius: 50%;
            display: inline-block;
            animation: pulse 1.5s infinite;
        }

        /* Estilo dos cards de odds */
        .odds-card {
            background: rgba(26, 26, 60, 0.8);
            border: 1px solid rgba(56, 202, 179, 0.2);
            border-radius: 12px;
            padding: 1rem;
            transition: all 0.3s ease;
        }

        .odds-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .odds-value {
            background: rgba(56, 202, 179, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: bold;
        }

        /* Estatísticas ao vivo */
        .live-stats {
            background: linear-gradient(135deg, rgba(26, 26, 60, 0.9), rgba(14, 14, 35, 0.9));
            border: 1px solid rgba(56, 202, 179, 0.2);
            border-radius: 12px;
            padding: 1rem;
        }

        .stats-item {
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .stats-item:last-child {
            border-right: none;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
            100% { transform: scale(1); opacity: 1; }
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .icon-box::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            top: -50%;
            left: -50%;
            transition: all 0.3s ease;
        }

        .icon-box:hover::after {
            top: 100%;
            left: 100%;
        }

        .stats-box {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 1rem;
            transition: all 0.3s ease;
        }

        .stats-box:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .tech-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .tech-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .chat-bubble {
            position: relative;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .chat-bubble::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 20px;
            border-width: 10px 10px 0;
            border-style: solid;
            border-color: rgba(255,255,255,0.05) transparent transparent;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .icon-box {
                width: 50px;
                height: 50px;
            }
        }
        
        .modal-content {
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            max-width: 500px; /* Limita a largura do modal */
            margin: auto;
        }
        
        .modal-body .form-control {
            background: #171735;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 0.5rem 1rem; /* Ajusta o tamanho dos campos */
        }
        
        .modal-body .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 8px rgba(56, 202, 179, 0.5);
        }
        
        .btn-primary {
            font-size: 1rem; /* Tamanho do texto */
            padding: 0.5rem 1.5rem; /* Ajusta o espaçamento interno */
            width: auto; /* Define a largura como automática */
            min-width: 200px; /* Define uma largura mínima */
            border-radius: 50px; /* Formato arredondado */
            transition: all 0.3s ease; /* Suaviza o hover */
        }
        
        .btn-primary:hover {
            background: #2ca692; /* Cor de hover */
            box-shadow: 0 4px 8px rgba(56, 202, 179, 0.3); /* Efeito de hover */
        }
        
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1020; /* Certifique-se de que está acima de outros elementos */
            background: #171736; /* Fundo do menu */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para destaque */
        }
        body {
            padding-top: 70px; /* Ajuste este valor conforme a altura do menu */
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #38cab3; /* Cor de fundo */
            color: #fff; /* Cor do ícone */
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .scroll-to-top i {
            font-size: 20px;
        }
        
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-body {
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .modal-title {
            font-size: 1.5rem;
        }
        /* Estilos Mobile - Adicione após seus estilos atuais */
@media (max-width: 768px) {
    /* Ajustes Gerais */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Header e Navegação */
    .navbar-brand img {
        height: 30px;
    }

    .navbar .nav-link {
        padding: 0.5rem 0;
    }

    .navbar-collapse {
        background: #171736;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Cards e Features */
    .odds-card, .feature-card, .stats-box {
        margin-bottom: 1rem;
    }

    .live-stats .row {
        flex-direction: column;
    }

    .stats-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem 0;
    }

    .stats-item:last-child {
        border-bottom: none;
    }

    /* ChatFaq Section */
    .chat-container {
        height: 250px;
    }

    /* Sistema de Registro */
    .table-responsive {
        margin: 0 -15px;
        padding: 15px;
        width: calc(100% + 30px);
    }

    .table {
        font-size: 0.8rem;
    }

    /* Calendário */
    .calendar-container {
        overflow-x: auto;
    }

    .calendar-container table {
        min-width: 600px;
    }

    /* Calculadoras */
    .calculator-section .col-md-4 {
        margin-bottom: 1rem;
    }

    /* Modal Ajustes */
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-content {
        border-radius: 10px;
    }

    /* Footer */
    footer {
        text-align: center;
    }

    footer .col-lg-3 {
        margin-bottom: 2rem;
    }

    /* Botões */
    .btn-group-lg > .btn, .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    /* Formulários */
    .form-control {
        font-size: 16px; /* Evita zoom em iOS */
    }

    /* Espaçamentos */
    .section-title {
        font-size: 1.8rem;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Cards de Status */
    .odds-card {
        padding: 1rem;
    }

    .odds-value {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    /* Sistema de Controle IR */
    .feature-card {
        height: auto;
        margin-bottom: 1rem;
    }

    /* Melhorias de Performance */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Fix para rolagem suave em iOS */
    .modal-body {
        -webkit-overflow-scrolling: touch;
    }

    /* Melhorias de Usabilidade */
    .nav-link, .btn {
        min-height: 44px; /* Área de toque mínima recomendada */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Grid System Ajustes */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col-12, .col-md-4, .col-lg-4, .col-lg-6 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Fix para tabelas responsivas */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 375px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .modal-title {
        font-size: 1.2rem;
    }
}

    /* Melhorias de Performance para Dispositivos de Baixo Desempenho */
    @media (max-width: 768px) {
        .feature-card, .stats-box, .odds-card {
            transition: transform 0.2s ease;
        }
    
        .float-animation {
            animation: none;
        }
    }
    
    /* Fix para overflow horizontal em mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    @media (max-width: 768px) {
        /* Corrige o padding dos containers */
        .container {
            padding-left: 15px !important;
            padding-right: 15px !important;
            max-width: 100%;
        }

    /* Corrige as margens negativas que podem causar overflow */
        .row {
            margin-left: -10px;
            margin-right: -10px;
        }
    
        /* Ajusta o padding das colunas */
        [class*="col-"] {
            padding-left: 10px;
            padding-right: 10px;
        }
    
        /* Corrige tabelas responsivas */
        .table-responsive {
            margin: 0;
            width: 100%;
            border-radius: 0;
        }
    
        /* Corrige o padding do body quando o menu fixo está ativo */
        body {
            padding-top: 56px; /* Ajuste este valor conforme a altura do seu menu */
        }
    }

    /* Correção para telas muito pequenas */
        @media (max-width: 375px) {
            .container {
                padding-left: 10px !important;
                padding-right: 10px !important;
            }
        }


    
        .btn-custom-green {
            background-color: #38cab3; /* Substitua por qualquer tom de verde desejado */
            border-color: #00a86b;
            color: white;
        }
        .btn-custom-green:hover {
            background-color: #008f5d; /* Um tom mais escuro para o hover */
            border-color: #008f5d;
        }






@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

#comoFuncionaBtn {
  animation: pulse 1.2s infinite;
  position: relative;
  overflow: visible;
}

#comoFuncionaBtn::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 80px;
  background: rgba(0, 123, 255, 0.3);
  z-index: -1;
  filter: blur(10px);
}

.mockup-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease-in-out;
    max-width: 90%;
    margin: 0 auto;
}

.mockup-image {
    transition: transform 0.3s ease-in-out;
    animation: mockupPulse 2s infinite;
    width: 100%;
    height: auto;
}

@keyframes mockupPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.mockup-container:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.carousel-item {
    min-height: 400px;
}

.cards-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
}

.cards-container::-webkit-scrollbar {
    width: 5px;
}

.cards-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.cards-container::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}



