/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Prevenir zoom em iOS - removido para evitar avisos do console */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0e15 0%, #1a1f2e 50%, #0a0e15 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    /* Melhorar performance em mobile */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevenir seleção de texto em botões */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Permitir seleção em inputs e textareas */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 21, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.logo i {
    color: #00d4ff;
    font-size: 1.8rem;
}

.logo strong {
    color: #00d4ff;
}

.btn-header {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 40px;
    /* Melhorar toque em mobile */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e6ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-green {
    background: linear-gradient(135deg, #00ff9d 0%, #00cc7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #a0a6b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.feature i {
    color: #00d4ff;
    font-size: 1.2rem;
}

/* REMOVIDO - CONFLITANTE */

.btn-primary {
    background: linear-gradient(135deg, #00ff9d 0%, #00cc7a 100%);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.3);
    white-space: nowrap;
    min-height: 48px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 157, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    min-height: 48px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.simulation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sim-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sim-label {
    color: #a0a6b0;
    font-size: 0.9rem;
}

.sim-value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    color: #a0a6b0;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #000000;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-card p {
    color: #a0a6b0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-left h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-left p {
    color: #a0a6b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.urgency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff9d;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.investment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.investment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.75rem;
    color: #00ff9d;
    font-weight: 700;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #00ff9d;
}

.period {
    font-size: 1.75rem;
    color: #00ff9d;
    font-weight: 700;
}

.price-desc {
    color: #a0a6b0;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.benefits-list i {
    color: #00ff9d;
    font-size: 1.1rem;
}

.btn-invest {
    background: linear-gradient(135deg, #00ff9d 0%, #00cc7a 100%);
    color: #000000;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.3);
    margin-bottom: 1rem;
}

.btn-invest:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 157, 0.4);
}

.security-note {
    color: #a0a6b0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-note i {
    color: #00d4ff;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-content p {
    color: #a0a6b0;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #a0a6b0;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-left p {
    color: #a0a6b0;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    color: #000000;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    margin: 1rem 0;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.disclaimer-icon {
    color: #00d4ff;
    font-size: 1.2rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-text p {
    color: #8a8f9a;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a6b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .disclaimer-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .disclaimer-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* REMOVIDO - CONFLITANTE */
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Melhorar navegação mobile */
    .header .container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .btn-header {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Melhorar responsividade da tabela de usuários */
    .table-container {
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
    }
    
    .table-container table {
        min-width: 800px;
    }
    
    .table-container th,
    .table-container td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .btn-small {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        margin: 0.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .investment-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 1.75rem;
    }
    
    /* REMOVIDO - CONFLITANTE */
    
    /* Melhorar botões em telas muito pequenas */
    .btn-primary,
    .btn-secondary,
    .btn-header {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-height: 44px; /* Tamanho mínimo para toque */
        justify-content: center;
        align-items: center;
    }
    
    /* Ajustar espaçamentos */
    .hero-content {
        gap: 1.5rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
    
    .steps {
        gap: 1.5rem;
    }
    
    /* Melhorar legibilidade */
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
}

/* Simulador com Abas */
.simulation-tabs {
    width: 100%;
}

/* Melhorias específicas para iOS Safari */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari específico */
    .btn-primary,
    .btn-secondary,
    .btn-header,
    .btn-change {
        appearance: none;
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    input, textarea, select {
        appearance: none;
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    /* Melhorar scroll em iOS */
    .sidebar {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevenir zoom em inputs */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"] {
        font-size: 16px;
    }
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #00d4ff, #1a1f2e);
    border-color: #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.tab-btn.premium {
    background: linear-gradient(135deg, #00ff9d, #ee5a52);
    border-color: #00ff9d;
    animation: pulse 2s infinite;
}

.tab-btn.premium:hover {
    background: linear-gradient(135deg, #ee5a52, #d63031);
}

.tab-btn.premium.active {
    background: linear-gradient(135deg, #00ff9d, #ee5a52);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.tab-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.compound-note {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00ff9d;
    font-size: 0.9rem;
    font-weight: 600;
}

.compound-note i {
    color: #00ff9d;
}

.money-multiplier-hero {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.multiplier-hero-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.multiplier-hero-title i {
    color: #ffd700;
}

.multiplier-hero-values {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.multiplier-hero-item {
    text-align: center;
    flex: 1;
}

.multiplier-hero-value {
    display: block;
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.multiplier-hero-label {
    display: block;
    color: #b8c5d6;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Seção de Rendimentos e Saques */
.rendimento-details {
    padding: 1rem 0;
}

.rendimento-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rendimento-item:last-child {
    border-bottom: none;
}

.rendimento-item.highlight {
    background: rgba(0, 255, 157, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.5rem 0;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.rendimento-label {
    font-size: 0.9rem;
    color: #b8c5d6;
    font-weight: 500;
}

.rendimento-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.rendimento-value.positive {
    color: #00ff9d;
}

.rendimento-value.zero {
    color: #00ff9d;
}

/* Responsividade para a seção de rendimentos */
@media (max-width: 768px) {
    .rendimento-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rendimento-value {
        font-size: 0.9rem;
    }
}

/* Modal de Rendimentos Passados - Melhorado */
.modal-large {
    max-width: 95vw;
    width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    color: #333333;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.calculation-table-container {
    margin: 1.5rem 0;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.calculation-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 10px;
    border: 1px solid #2196f3;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.summary-item.highlight {
    background: #e8f5e8;
    border-color: #28a745;
}

.summary-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
}

.summary-item.highlight .summary-value {
    color: #28a745;
}

.table-container {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.calculation-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.9rem;
}

.calculation-table th {
    background: #2196f3;
    color: #ffffff;
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #1976d2;
    white-space: nowrap;
}

.calculation-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    color: #333333;
}

.calculation-table tr:hover {
    background: #f8f9fa;
}

.calculation-table tr:nth-child(even) {
    background: #f8f9fa;
}

.calculation-table tr:nth-child(even):hover {
    background: #e9ecef;
}

/* Responsividade para desktop */
@media (min-width: 1024px) {
    .modal-large {
        max-width: 85vw;
        width: 900px;
    }
    
    .calculation-summary {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .calculation-table th,
    .calculation-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .modal-large {
        max-width: 98vw;
        width: 98vw;
        margin: 1vh auto;
        max-height: 98vh;
    }
    
    .calculation-summary {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .table-container {
        font-size: 0.8rem;
    }
    
    .calculation-table th,
    .calculation-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .calculation-table th:nth-child(3),
    .calculation-table th:nth-child(4),
    .calculation-table th:nth-child(5),
    .calculation-table td:nth-child(3),
    .calculation-table td:nth-child(4),
    .calculation-table td:nth-child(5) {
        display: none;
    }
}

/* Melhorar responsividade da tabela principal */
@media (max-width: 1200px) {
    .table-container {
        overflow-x: auto;
    }
    
    /* Estilos de scrollbar customizado - apenas WebKit (Chrome, Safari, Edge) */
    /* Nota: Firefox não suporta estes pseudo-elementos, mas ignora silenciosamente */
    .table-container::-webkit-scrollbar {
        height: 8px;
    }
    
    .table-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .table-container::-webkit-scrollbar-thumb {
        background: #2196f3;
        border-radius: 4px;
    }
    
    /* Hover removido para evitar avisos do console - funcionalidade mantida via JavaScript se necessário */
    /* .table-container::-webkit-scrollbar-thumb:hover {
        background: #1976d2;
    } */
}

/* Estilos específicos para campos do modal */
.modal-large .form-group input,
.modal-large .form-group select {
    background: #ffffff;
    border: 1px solid #ced4da;
    color: #333333;
}

.modal-large .form-group input:focus,
.modal-large .form-group select:focus {
    border-color: #2196f3;
    box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

.modal-large .form-group label {
    color: #495057;
}

.modal-large .info-box {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    color: #0d47a1;
}

.modal-large .info-box h4 {
    color: #1976d2;
}

.modal-large .info-box p {
    color: #0d47a1;
}

/* Modal de Contato */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e15 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #00ff9d;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.form-actions .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.form-actions .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-group input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
} 

/* Melhorar alinhamento dos ícones nos botões */
.btn-primary i,
.btn-secondary i,
.btn-header i {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

/* Garantir que os botões tenham altura consistente */
.btn-primary,
.btn-secondary {
    box-sizing: border-box;
    line-height: 1.2;
} 

/* FORÇAR BOTÕES LADO A LADO - REGRAS ESPECÍFICAS */
.hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Responsividade específica */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        min-width: 180px !important;
        width: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100% !important;
        min-width: auto !important;
    }
}

/* ===== CHECKOUT STYLES ===== */
.checkout-container {
    min-height: auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0a0e15 0%, #1a1f2e 50%, #0a0e15 100%);
}

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.checkout-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.checkout-header .logo i {
    color: #00d4ff;
    font-size: 28px;
}

.header-actions {
    position: absolute;
    top: 0;
    right: 0;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #00ff9d;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(255, 71, 87, 0.2);
    border-color: rgba(255, 71, 87, 0.5);
    color: #00ff9d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.logout-btn i {
    font-size: 16px;
}

.checkout-header h1 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}

.checkout-header p {
    color: #b8c5d6;
    font-size: 18px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.plan-card.selected {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.plan-name {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: capitalize;
}

.plan-name::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #00d4ff;
    margin: 10px auto;
    border-radius: 2px;
}

.plan-card.selected .plan-name::after {
    background: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.plan-price {
    font-size: 2.5em;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.plan-card.selected .plan-price {
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.plan-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.plan-card.selected .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 8px 0;
    color: #b8c5d6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9em;
}

.plan-card.selected .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.plan-features i {
    color: #00d4ff;
    font-size: 1.1em;
}

.plan-card.selected .plan-features i {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.plan-card.selected .btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
}

.plan-card.selected .btn:hover {
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.payment-section {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.payment-section.active {
    display: block;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-header h3 {
    color: #ffffff;
    font-size: 2em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-header p {
    color: #b8c5d6;
    font-size: 1.1em;
}

.payment-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-amount {
    font-size: 3em;
    font-weight: 700;
    color: #00d4ff;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.payment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    text-align: center;
}

.detail-label {
    font-size: 0.9em;
    color: #b8c5d6;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
}

.status-info {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.status-info i {
    font-size: 2em;
    margin-bottom: 10px;
}

.status-info strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.pix-instructions {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.pix-instructions h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pix-instructions ol {
    list-style: none;
    counter-reset: step-counter;
}

.pix-instructions li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    line-height: 1.6;
}

.pix-instructions li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9em;
}

.pix-instructions strong {
    color: #fff;
}

.txid-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-family: monospace;
    font-size: 0.9em;
    color: #b8c5d6;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bitcoin-payment {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid #f39c12;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bitcoin-payment h4 {
    color: #f39c12;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bitcoin-address, .bitcoin-amount {
    margin-bottom: 15px;
}

.bitcoin-address label, .bitcoin-amount label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.address-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.address-input {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.copy-btn {
    padding: 10px 15px;
    background: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #e67e22;
}

.amount-display {
    font-size: 1.2em;
    color: #f39c12;
    font-weight: 700;
}

.qr-code-section {
    text-align: center;
    margin-top: 20px;
}

.qr-code-section h5 {
    margin-bottom: 10px;
    color: #ffffff;
}

.qr-code img {
    max-width: 200px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #00ff9d;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 20px 10px;
    }
    
    .checkout-header h1 {
        font-size: 24px;
    }
    
    .checkout-header p {
        font-size: 16px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card {
        padding: 20px;
    }
    
    .payment-section {
        padding: 20px;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
    }
    
    .header-actions {
        position: static;
        margin-bottom: 20px;
    }
}

 