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

html {
    scroll-behavior: smooth;
    /* Prevenir zoom em iOS */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0e15 0%, #1a1f2e 50%, #0f1419 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: 120px 0 80px;
    min-height: 100vh;
    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: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    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.25rem;
    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: 2.5rem;
    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.25rem;
    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: 2.5rem;
    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: #ff6b6b;
    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: 2rem;
    color: #00ff9d;
    font-weight: 700;
}

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

.period {
    font-size: 2rem;
    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: 2rem;
    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);
}

.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: 2.5rem;
    }
    
    /* 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: 2rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .investment-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    /* 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 {
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    input, textarea, select {
        -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, #0099cc);
    border-color: #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

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

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

.tab-btn.premium.active {
    background: linear-gradient(135deg, #ff6b6b, #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: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 600;
}

.compound-note i {
    color: #ff6b6b;
}

.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: #ff6b6b;
}

/* 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;
    }
    
    .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;
    }
    
    .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%, #0f1419 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: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #ff6b6b;
    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;
    }
} 

 