/* ═══════════════════════════════════════════════════════════════════
   qPONTUS - PROFESSIONAL STYLESHEET
   Colors from PDF: #2C3E50, #4A90A4, #27AE60, #FFC107, #E74C3C
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --primary: #2C3E50;
    --secondary: #4A90A4;
    --success: #27AE60;
    --warning: #FFC107;
    --danger: #E74C3C;
    --light: #F5F5F5;
    --dark: #34495E;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-600: #6C757D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-q {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
}

.logo-pontus {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--gray-600);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--secondary);
}

.btn-nav-secondary {
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-nav-secondary:hover {
    background: var(--gray-100);
}

.btn-nav-primary {
    padding: 10px 24px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-nav-primary:hover {
    background: var(--dark);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */

.hero {
    margin-top: 80px;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--success);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--gray-300);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: 40px;
    width: 320px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 80px;
    left: 20px;
    width: 280px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-pair {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.card-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.pro {
    background: var(--warning);
    color: var(--primary);
}

.card-badge.free {
    background: var(--success);
    color: var(--white);
}

.card-levels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
}

.level.resistance {
    background: rgba(231, 76, 60, 0.08);
}

.level.support {
    background: rgba(39, 174, 96, 0.08);
}

.level-label {
    font-weight: 700;
    font-size: 14px;
}

.level.resistance .level-label {
    color: var(--danger);
}

.level.support .level-label {
    color: var(--success);
}

.level-price {
    font-weight: 800;
    font-size: 18px;
    color: var(--primary);
}

.level-score {
    font-size: 12px;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════ */

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════════════
   REPORTS GRID
   ═══════════════════════════════════════════════════════════════════ */

.reports-section {
    background: var(--white);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.report-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.report-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(74, 144, 164, 0.15);
}

.report-flag {
    font-size: 48px;
    margin-bottom: 16px;
}

.report-pair {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.report-info {
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.info-label {
    font-size: 14px;
    color: var(--gray-600);
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.update-time {
    color: var(--success);
}

.btn-download {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--success) 0%, #229954 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   METHODOLOGY
   ═══════════════════════════════════════════════════════════════════ */

.methodology-section {
    background: var(--light);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.method-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.method-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.method-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════ */

.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(74, 144, 164, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-600);
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
}

.feature-included {
    color: var(--dark);
}

.feature-excluded {
    color: var(--gray-600);
    opacity: 0.6;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.btn-secondary-outline {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--gray-300);
}

.btn-secondary-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

/* FIX: Logo branco no footer */
.footer-brand .logo .logo-pontus {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--warning);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--warning);
}

.footer-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--warning);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}



/* ═══════════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════════ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    margin: 10% auto;
    padding: 48px;
    border-radius: 24px;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 32px;
    font-weight: 300;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

#emailForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#emailInput {
    padding: 16px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.2s;
}

#emailInput:focus {
    outline: none;
    border-color: var(--secondary);
}

.modal-footer {
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        text-align: left;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   EXNESS BROKER CTA - STEEL BLUE (Sofisticado)
   ═══════════════════════════════════════════════════════════════════ */

.exness-section {
    padding: 60px 0;
    background: var(--light);
}

.exness-card {
    background: linear-gradient(135deg, #5A6C7D, #4A90A4);
    border: none;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transition: all 0.3s;
    box-shadow: 0 12px 32px rgba(90, 108, 125, 0.15);
}

.exness-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(90, 108, 125, 0.25);
}

.exness-content {
    flex: 1;
}

.exness-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.exness-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.exness-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.exness-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.exness-features span {
    font-size: 14px;
    color: var(--warning);
    font-weight: 600;
}

.btn-exness {
    display: inline-flex;
    align-items: center;
    padding: 18px 32px;
    background: var(--warning);
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    transition: all 0.3s;
    border: none;
}

.btn-exness:hover {
    background: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

@media (max-width: 968px) {
    .exness-card {
        flex-direction: column;
        text-align: center;
    }
    
    .exness-features {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   DYNAMIC REPORTS - CATEGORIES
   ═══════════════════════════════════════════════════════════════════ */

.reports-loading {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid #ecf0f1;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.reports-category {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

.category-icon {
    font-size: 32px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    flex-grow: 1;
}

.category-count {
    font-size: 14px;
    font-weight: 600;
    color: #95a5a6;
    background: #ecf0f1;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Mobile Responsiveness for Categories */
@media (max-width: 768px) {
    .category-header {
        flex-wrap: wrap;
    }
    
    .category-icon {
        font-size: 24px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-count {
        font-size: 12px;
        padding: 4px 10px;
    }
}