/* RESET E VARIÁVEIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 45px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção de planos com largura reduzida para não cobrir botões flutuantes */
.pricing .container {
    max-width: 1000px;
}

/* TIPOGRAFIA */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(1.6rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.5rem); }

/* IMAGENS RESPONSIVAS */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.images-grid-responsive img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,100 Q300,150 600,100 T1200,100 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.navbar {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-btn {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 600;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: white !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-nav {
    background: var(--white);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 40px 0 50px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    animation: fadeInUp 0.8s 0.4s backwards;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat i {
    font-size: 2.5rem;
    color: var(--secondary);
}

.stat h3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* SHOWCASE INTERFACE COMPLETA */
.interface-showcase {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.interface-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

.showcase-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.showcase-image {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.showcase-image:hover img {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.2),
        0 0 40px rgba(99, 102, 241, 0.15);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    animation: fadeInUp 0.8s 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    font-size: 0.95rem;
    animation: fadeInUp 0.8s 0.8s backwards;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges i {
    color: var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

/* FEATURES SECTION */
.features {
    padding: 60px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-badge {
    display: inline-block;
    background: var(--gray-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: 
        "icon header"
        "icon desc"
        "features features";
    gap: 12px 20px;
    align-items: start;
    backdrop-filter: blur(10px);
}

.feature-card .feature-icon {
    grid-area: icon;
    align-self: start;
    flex-shrink: 0;
}

.feature-card h3 {
    grid-area: header;
    margin: 0 0 8px 0;
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.3;
}

.feature-card > p {
    grid-area: desc;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.6;
}

.feature-card .feature-list {
    grid-area: features;
    columns: 2;
    column-gap: 30px;
    margin: 0;
    padding-top: 10px;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02) rotateX(2deg);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
}

.feature-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.4);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.6;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.feature-card.featured .feature-icon {
    background: rgba(255,255,255,0.2);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.feature-list i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.feature-card.featured .feature-list i {
    color: var(--white);
}

/* COMPATIBILITY */
.compatibility {
    padding: 60px 0;
    background: var(--white);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.compat-card {
    background: var(--gray-light);
    color: var(--dark);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.compat-card:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-10px);
}

.compat-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.compat-card:hover i {
    color: var(--white);
}

.compat-card h3 {
    margin-bottom: 10px;
}

/* PRICING */
.pricing {
    padding: 60px 0;
    background: var(--dark);
    color: var(--white);
}

.pricing .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.pricing .section-header h2,
.pricing .section-header p {
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--secondary);
    background: var(--gradient);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin: 15px 0;
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
}

.price-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
}

.discount {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.guarantee {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee i {
    font-size: 3rem;
    color: var(--secondary);
}

.guarantee h3 {
    margin-bottom: 10px;
}

.guarantee p {
    opacity: 0.9;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--gray-light);
    color: var(--dark);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-5px);
}

.faq-item h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.faq-item:hover i {
    color: var(--white);
}

.faq-item p {
    line-height: 1.8;
}

/* CTA FINAL */
.cta-final {
    padding: 60px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.cta-guarantee {
    font-size: 1rem;
    opacity: 0.8;
}

/* CONTACT */
.contact {
    padding: 60px 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card.whatsapp {
    border-top: 4px solid #25d366;
}

.contact-card.whatsapp i {
    color: #25d366;
}

.contact-card.telegram {
    border-top: 4px solid #0088cc;
}

.contact-card.telegram i {
    color: #0088cc;
}

.contact-card.email {
    border-top: 4px solid var(--primary);
}

.contact-card.email i {
    color: var(--primary);
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 10px;
}

.contact-card span {
    font-weight: 600;
    color: var(--dark);
}

/* RESOURCES SECTION */
.resources {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.resources .section-header {
    color: var(--white);
}

.resources .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.resources .section-header h2,
.resources .section-header p {
    color: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.resource-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.resource-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.resource-card.youtube i { color: #FF0000; }
.resource-card.facebook i { color: #1877F2; }
.resource-card.mql5 i { color: #6366f1; }
.resource-card.manual i { color: #10b981; }

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.resource-card p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.resource-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-link {
    transform: translateX(5px);
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin: 20px 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.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: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* WHATSAPP FLOAT - Definido no index.html inline */

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    /* Tablets grandes e laptops pequenos */
    .container {
        padding: 0 25px;
    }
    
    .images-grid-responsive {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    }
}

/* Reserva espaço para botões flutuantes em desktops médios/laptops */
@media (min-width: 969px) and (max-width: 1340px) {
    .container {
        padding-right: 70px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 6px !important;
        width: 100%;
        justify-content: center;
    }
    
    .nav-btn {
        padding: 8px 10px;
        font-size: 0.8em;
        flex: 0 1 auto;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "icon"
            "header"
            "desc"
            "features";
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .feature-card h3 {
        text-align: center;
    }
    
    .feature-card .feature-list {
        columns: 1;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .features-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    /* Cards editoriais devem empilhar antes que o minimo force overflow lateral. */
    .audience-grid,
    .included-grid,
    [style*="grid-template-columns: repeat(auto-fit"],
    [style*="grid-template-columns:repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }

    .audience-grid > *,
    .included-grid > * {
        min-width: 0;
    }
    
    /* Reduzir padding de seções para economizar espaço vertical */
    section {
        padding: 60px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 1.1em !important;
        line-height: 1.6 !important;
    }
    
    /* Otimizar badges e estatísticas */
    .badge {
        font-size: 0.9em !important;
        padding: 8px 15px !important;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-badges span {
        font-size: 0.9em;
    }
    
    /* Melhorar tabelas em mobile */
    .specs-table table {
        font-size: 0.9em;
    }
    
    .specs-table td {
        padding: 15px 10px !important;
        font-size: 1em !important;
        display: block;
        width: 100% !important;
    }
    
    .specs-table td:first-child {
        background: #f8f9fa !important;
        font-weight: bold;
        border-bottom: 1px solid #ddd;
    }
    
    .specs-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    /* NAVBAR MOBILE */
    .navbar .container {
        padding: 0 10px !important;
    }
    
    .logo {
        font-size: 1rem;
        gap: 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .logo i {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 5px !important;
        width: 100%;
    }
    
    .nav-btn {
        padding: 6px 8px;
        font-size: 0.75em;
        border-radius: 6px;
    }
    
    /* CORRIGIR PADDING DO CONTAINER - APROVEITAR LARGURA TOTAL */
    .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Forçar elementos a usarem largura total */
    body {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    section > * {
        max-width: 100% !important;
    }
    
    .hero-text { 
        padding: 0 10px !important; 
    }
    
    /* Sections com padding mínimo */
    section {
        padding: 50px 10px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .trust-badges { 
        flex-direction: column; 
        gap: 12px;
        font-size: 0.85em;
    }
    
    /* Compactar blocos de texto grandes */
    p {
        font-size: 0.95em;
        line-height: 1.5;
    }
    
    ul, ol {
        padding-left: 20px;
    }
    
    li {
        margin-bottom: 8px;
        font-size: 0.9em;
    }
    
    /* Botões mais compactos */
    .btn {
        padding: 12px 20px;
        font-size: 0.95em;
    }

    /* Comparativo vira leitura vertical no celular, sem coluna escondida. */
    #comparativo .comparison-table-wrap {
        overflow: visible !important;
        border: 0 !important;
        border-radius: 0 !important;
    }

    #comparativo .comparison-table,
    #comparativo .comparison-table tbody {
        display: block;
        background: transparent !important;
    }

    #comparativo .comparison-table thead {
        display: none;
    }

    #comparativo .comparison-table tr {
        display: block;
        margin-bottom: 12px;
        background: #0f1117 !important;
        border: 1px solid rgba(102,126,234,0.22) !important;
        border-radius: 10px;
        overflow: hidden;
    }

    #comparativo .comparison-table td {
        display: block;
        width: 100% !important;
        padding: 10px 42px 10px 12px !important;
        line-height: 1.5;
    }

    #comparativo .comparison-table td:first-child {
        color: #fff;
        background: rgba(102,126,234,0.09);
        border-bottom: 1px solid rgba(102,126,234,0.18);
    }

    #comparativo .comparison-table td:nth-child(2)::before,
    #comparativo .comparison-table td:nth-child(3)::before {
        display: block;
        margin-bottom: 4px;
        font-size: 0.76rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    #comparativo .comparison-table td:nth-child(2)::before {
        content: "Operando manual";
        color: #fca5a5;
    }

    #comparativo .comparison-table td:nth-child(3)::before {
        content: "Com MQL PRO TRADER";
        color: #86efac;
    }
}

/* ── COMO RECEBER — grids responsivos ──────────────────────────── */
@media (max-width: 700px) {
    .cr-grid-caminhos,
    .cr-grid-banners {
        grid-template-columns: 1fr !important;
    }
}

/* ── Bloco mobile geral (estava vazando para desktop — encapsulado em 16/05/2026) ── */
@media (max-width: 768px) {
    .btn-lg {
        padding: 15px 30px;
        font-size: 1em;
    }
    
    /* CARDS COM PADDING REDUZIDO MAS LARGURA MÁXIMA */
    .feature-card,
    .pricing-card {
        padding: 15px !important;
        margin: 0 5px 20px 5px !important;
    }
    
    /* CATEGORIAS COM LARGURA MÁXIMA E MELHOR LEGIBILIDADE */
    .button-category {
        padding: 25px 15px !important;
        margin-bottom: 25px !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        background: rgba(255,255,255,0.08) !important;
    }
    
    .button-category h3 {
        font-size: 1.25em !important;
        margin-bottom: 18px !important;
        line-height: 1.3 !important;
    }
    
    .button-category ul {
        margin: 18px 5px 18px 25px !important;
    }
    
    .button-category li {
        font-size: 0.92em !important;
        margin: 10px 0 !important;
        line-height: 1.6 !important;
    }
    
    /* Listas aninhadas mais compactas */
    .button-category li ul {
        margin: 8px 0 8px 15px !important;
    }
    
    .button-category li ul li {
        font-size: 0.88em !important;
        margin: 6px 0 !important;
    }
    
    .button-category p {
        font-size: 0.95em !important;
        margin: 15px 5px !important;
        line-height: 1.6 !important;
    }
    
    .button-category strong {
        color: #ffd700;
        font-size: 1.05em;
    }
    
    /* IMAGENS COM PADDING MÍNIMO */
    .images-grid-responsive {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 5px !important;
    }
    
    .images-grid-responsive > div {
        padding: 12px !important;
        margin: 0 5px !important;
    }
    
    .images-grid-responsive h3 {
        font-size: 1.1em !important;
        margin-bottom: 12px !important;
    }
    
    .images-grid-responsive p {
        font-size: 0.85em !important;
        margin-top: 10px !important;
    }
    
    /* HIGHLIGHT BOXES COM LARGURA MÁXIMA */
    .highlight-box {
        padding: 15px 10px !important;
        margin: 20px 5px !important;
        max-width: calc(100% - 10px) !important;
    }
    
    .highlight-box h3 {
        font-size: 1.3em !important;
        margin-bottom: 10px !important;
    }
    
    .highlight-box p {
        font-size: 0.95em !important;
        line-height: 1.5 !important;
    }
    
    /* TABELAS DE SPECS */
    .specs-table {
        margin: 30px 5px !important;
        padding: 0 5px !important;
    }
    
    /* GRIDS DE COMPATIBILIDADE */
    .compatibility-grid,
    .compat-card {
        padding: 15px 10px !important;
        margin: 10px 5px !important;
    }
    
    /* FAQ ITEMS */
    .faq-item {
        padding: 20px 12px !important;
        margin: 0 5px 15px 5px !important;
    }
    
    /* CONTACT CARDS */
    .contact-card {
        padding: 25px 15px !important;
        margin: 0 5px 15px 5px !important;
    }
    
    /* FOOTER */
    .footer-content {
        padding: 0 10px !important;
    }
    
    .footer-links {
        padding: 20px 10px !important;
    }
}

/* ========================================
   CHAT WIDGET - REMOVIDO (inline no HTML)
   ======================================== */

/* Mobile responsivo */
@media (max-width: 768px) {
    /* Showcase responsivo */
    .interface-showcase {
        padding: 50px 0;
    }
    
    .showcase-header h2 {
        font-size: 1.75rem;
    }
    
    .showcase-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
}

@media (max-width: 480px) {
    .chat-window {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
    }
    
    .chat-header {
        border-radius: 0;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
#lightbox.active {
    display: flex;
}
#lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.7);
}
#lightbox-close {
    position: fixed;
    top: 18px;
    right: 26px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.15s;
    z-index: 10000;
}
#lightbox-close:hover { opacity: 1; }

/* BOTÃO VOLTAR AO TOPO */
#btn-topo {
    position: fixed;
    bottom: 30px;
    right: 6px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
    z-index: 9999;
}
#btn-topo.visivel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#btn-topo:hover {
    background: linear-gradient(135deg, #33ddff 0%, #00bbee 100%);
    box-shadow: 0 6px 22px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .download-paths-grid {
        grid-template-columns: 1fr !important;
    }

    /* Contraste de contornos para cards escuros em telas compactas. */
    #comparativo .comparison-table tr,
    #o-que-recebe .included-card,
    #sobre .creator-profile-card {
        border-color: rgba(96, 165, 250, 0.46) !important;
        box-shadow: inset 0 1px 0 rgba(191, 219, 254, 0.06);
    }

    #comparativo .comparison-table td:first-child {
        border-bottom-color: rgba(96, 165, 250, 0.32) !important;
    }

    .pricing .section-badge {
        color: #facc15 !important;
        background: rgba(250, 204, 21, 0.1) !important;
        border: 1px solid rgba(250, 204, 21, 0.42) !important;
    }

    .pricing-all-included {
        background: rgba(30, 41, 59, 0.7) !important;
        border-color: rgba(96, 165, 250, 0.42) !important;
    }

    .pai-items span {
        background: rgba(148, 163, 184, 0.09) !important;
        border-color: rgba(148, 163, 184, 0.32) !important;
        color: rgba(255, 255, 255, 0.78) !important;
    }

    .pt-version-note {
        border-color: rgba(96, 165, 250, 0.48) !important;
    }

    .pt-version-bullets li {
        border-color: rgba(96, 165, 250, 0.34) !important;
    }

    .pt-launch-note {
        border-color: rgba(52, 211, 153, 0.46) !important;
    }

    .pt-price-lock-note {
        border-color: rgba(250, 204, 21, 0.45) !important;
    }

    #download .install-step {
        background: rgba(15, 23, 42, 0.16) !important;
        border-color: rgba(147, 197, 253, 0.48) !important;
    }

    #download .support-reminder {
        background: rgba(15, 23, 42, 0.2) !important;
        border-color: rgba(96, 165, 250, 0.45) !important;
    }

    #sobre .creator-email-button {
        background: rgba(148, 163, 184, 0.1) !important;
        border-color: rgba(148, 163, 184, 0.42) !important;
    }
}

@media (max-width: 968px) {
    #btn-topo {
        bottom: 10px;
        width: 30px;
        height: 30px;
        font-size: 11px;
        right: 3px;
    }
}
