/* ================================================
   BOLETA VIP PREMIUM - Estilo DevFlow
   Glassmorphism + Bordas Gradientes + Neon Glow
   VERSÃO CORRIGIDA COM AVATARES
   ================================================ */

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === REGRA GLOBAL DE IMAGENS === */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Exceção para avatares - manter tamanho fixo */
img.author-avatar-img {
    max-width: 48px;
    height: 48px;
}

/* === ANIMATED BACKGROUND === */
.animated-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a0e2e 50%, #0a1a1e 100%);
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7000ff 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00f0ff 0%, transparent 70%);
    top: 50%;
    right: -250px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00ff88 0%, transparent 70%);
    bottom: -175px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* === PARTICLES === */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* === CONTENT WRAPPER === */
.content-wrapper {
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #8892ab;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: #00f0ff;
}

.btn-header {
    padding: 10px 24px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    color: #ffffff !important;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    transition: all 0.3s;
}

.btn-header:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === BADGE LIVE === */
.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

/* === HERO TITLE === */
.hero-title {
    font-size: 56px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text-animated {
    background: linear-gradient(90deg, #00f0ff 0%, #7000ff 50%, #ff006e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-description {
    font-size: 18px;
    color: #8892ab;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* === STATS MINI === */
.stats-mini {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-mini-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
}

.stat-mini-number {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-mini-label {
    font-size: 12px;
    color: #8892ab;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === PRICE CARD PREMIUM === */
.price-card-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 14, 26, 0.8), rgba(10, 14, 26, 0.8)),
        linear-gradient(135deg, #00f0ff 0%, #7000ff 50%, #ff006e 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: visible;
    animation: border-glow 3s linear infinite;
}

@keyframes border-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(112, 0, 255, 0.6));
    }
}

.price-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ff006e 0%, #ff6b00 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.6);
    z-index: 10;
    animation: tag-pulse 2s ease-in-out infinite;
}

@keyframes tag-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.05);
    }
}

.price-content {
    margin-bottom: 30px;
}

.price-old {
    font-size: 16px;
    color: #8892ab;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: #00f0ff;
}

.amount {
    font-size: 72px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-installments {
    font-size: 14px;
    color: #8892ab;
}

/* === BTN PRIMARY GLOW === */
.btn-primary-glow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 
        0 0 30px rgba(0, 240, 255, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 50px rgba(0, 240, 255, 0.7),
        0 15px 50px rgba(0, 0, 0, 0.4);
}

.price-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: #8892ab;
}

.price-guarantee svg {
    color: #00ff88;
}

/* === HERO RIGHT - CHART === */
.hero-right {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chart-container-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.9)),
        linear-gradient(135deg, #00f0ff 0%, #00ff88 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: chart-glow 4s ease-in-out infinite;
}

@keyframes chart-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 60px rgba(0, 255, 136, 0.4);
    }
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-symbol {
    display: flex;
    align-items: center;
    gap: 10px;
}

.symbol-name {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
}

.symbol-timeframe {
    padding: 4px 10px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #00f0ff;
}

.chart-price {
    text-align: right;
}

.price-value {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.price-change {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

.price-change.positive {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.price-change.negative {
    background: rgba(255, 0, 110, 0.1);
    color: #ff006e;
}

#tradingChart {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
}

.chart-indicators {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8892ab;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: indicator-blink 2s ease-in-out infinite;
}

@keyframes indicator-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.indicator-dot.green {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.indicator-dot.blue {
    background: #00f0ff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.indicator-dot.yellow {
    background: #ffd600;
    box-shadow: 0 0 10px rgba(255, 214, 0, 0.5);
}

/* === SECTIONS PREMIUM === */
section {
    padding: 100px 0;
    position: relative;
}

.section-header-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #00f0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #8892ab;
    line-height: 1.7;
}

/* === INTERFACE SECTION === */
.interface-section {
    background: rgba(21, 26, 46, 0.3);
    backdrop-filter: blur(10px);
}

.interface-image-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 14, 26, 0.8), rgba(10, 14, 26, 0.8)),
        linear-gradient(135deg, #7000ff 0%, #ff006e 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.interface-image-premium img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* === BENEFITS PREMIUM === */
.benefits-premium {
    background: rgba(30, 37, 56, 0.3);
    backdrop-filter: blur(10px);
}

.benefits-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.9)),
        linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card-premium:hover::before {
    opacity: 1;
}

.benefit-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.benefit-icon-premium {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
    color: #ffffff;
}

.benefit-icon-premium.green {
    background: linear-gradient(135deg, #00ff88 0%, #00b359 100%);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.benefit-icon-premium.pink {
    background: linear-gradient(135deg, #ff006e 0%, #d6005c 100%);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.benefit-card-premium h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.benefit-card-premium p {
    font-size: 15px;
    color: #8892ab;
    line-height: 1.7;
}

/* === TESTIMONIALS PREMIUM === */
.testimonials-premium {
    background: rgba(21, 26, 46, 0.3);
    backdrop-filter: blur(10px);
}

.testimonials-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.9)),
        linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: #8892ab;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* === AVATAR COM INICIAIS (fallback) === */
.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

/* === AVATAR COM IMAGEM REAL - CORRIGIDO === */
.author-avatar-img {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    border-radius: 50% !important;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
    display: block;
}

.testimonial-card-premium:hover .author-avatar-img {
    border-color: rgba(0, 240, 255, 0.8);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-role {
    font-size: 13px;
    color: #8892ab;
}

/* === FAQ PREMIUM === */
.faq-premium {
    background: rgba(30, 37, 56, 0.3);
    backdrop-filter: blur(10px);
}

.faq-container-premium {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.9)),
        linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item-premium:hover {
    background-image: 
        linear-gradient(rgba(10, 14, 26, 0.9), rgba(10, 14, 26, 0.9)),
        linear-gradient(135deg, #00f0ff 0%, #00ff88 100%);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.faq-question-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    gap: 20px;
}

.faq-question-premium h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.faq-icon-premium {
    width: 36px;
    height: 36px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-icon-premium svg {
    color: #00f0ff;
    transition: transform 0.3s;
}

.faq-item-premium.active .faq-icon-premium {
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    transform: rotate(45deg);
}

.faq-item-premium.active .faq-icon-premium svg {
    color: #ffffff;
}

.faq-answer-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item-premium.active .faq-answer-premium {
    max-height: 600px;
}

.faq-answer-premium p {
    padding: 0 30px 30px;
    font-size: 15px;
    color: #8892ab;
    line-height: 1.8;
    margin: 0;
}

/* === CTA PREMIUM === */
.cta-premium {
    background: rgba(21, 26, 46, 0.5);
    backdrop-filter: blur(10px);
    padding: 120px 0;
}

.cta-box-premium {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 14, 26, 0.8), rgba(10, 14, 26, 0.8)),
        linear-gradient(135deg, #ff006e 0%, #00f0ff 50%, #7000ff 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: cta-glow 4s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% {
        box-shadow: 0 0 50px rgba(0, 240, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 100px rgba(255, 0, 110, 0.5);
    }
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: #8892ab;
    margin-bottom: 50px;
}

.cta-price-premium {
    margin-bottom: 40px;
}

.cta-price-old {
    font-size: 20px;
    color: #8892ab;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.cta-price-now {
    font-size: 80px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.cta-price-installment {
    font-size: 16px;
    color: #8892ab;
}

.btn-primary-glow.large {
    padding: 24px 60px;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 16px;
    color: #ff006e;
    font-size: 14px;
    font-weight: 600;
}

/* === FOOTER PREMIUM === */
.footer-premium {
    background: rgba(30, 37, 56, 0.8);
    backdrop-filter: blur(20px);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: #8892ab;
    line-height: 1.6;
}

.footer-links-group,
.footer-legal {
    display: flex;
    flex-direction: column;
}

.footer-links-group h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-links-group a,
.footer-legal a,
.footer-contact a {
    display: block;
    font-size: 14px;
    color: #8892ab;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links-group a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
    color: #00f0ff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #8892ab;
    margin-bottom: 10px;
}

.footer-warning {
    font-size: 13px;
    color: #ff006e;
}

/* === FLOATING BUTTONS === */
.scroll-top-premium,
.whatsapp-premium {
    position: fixed;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    color: #ffffff;
}

.scroll-top-premium {
    bottom: 110px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-premium.show,
.scroll-top-premium.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.6);
}

.whatsapp-premium {
    bottom: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 99;
    text-decoration: none;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(37, 211, 102, 0.7);
        transform: scale(1.05);
    }
}

.whatsapp-premium:hover {
    transform: scale(1.1);
}

/* === MENU HAMBURGER === */
.menu-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-hamburger span {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.menu-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
    z-index: 999;
}

.mobile-menu.active {
    max-height: 500px;
    opacity: 1;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    gap: 10px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    text-align: center;
}

.mobile-nav-link:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    transform: translateX(5px);
}

.mobile-nav-link.btn-mobile {
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    border: none;
    color: #ffffff;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.mobile-nav-link.btn-mobile:hover {
    transform: translateX(0) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .benefits-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .testimonials-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-hamburger {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stats-mini {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-mini-item {
        width: 100%;
        justify-content: center;
    }
    
    .amount {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .benefits-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .faq-question-premium {
        padding: 20px;
    }
    
    .faq-question-premium h3 {
        font-size: 16px;
    }
    
    .faq-answer-premium p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .cta-box-premium {
        padding: 60px 30px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-price-now {
        font-size: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .scroll-top-premium,
    .whatsapp-premium {
        width: 50px;
        height: 50px;
        right: 20px;
    }
    
    .scroll-top-premium {
        bottom: 100px;
    }
    
    .whatsapp-premium {
        bottom: 20px;
    }
    
    .price-tag {
        top: -12px;
        right: 20px;
        font-size: 10px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .badge-live {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .price-card-premium {
        padding: 30px 20px;
    }
    
    .currency {
        font-size: 28px;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .benefit-card-premium,
    .testimonial-card-premium {
        padding: 20px;
    }
    
    .cta-box-premium {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-price-now {
        font-size: 48px;
    }
    
    .scroll-top-premium,
    .whatsapp-premium {
        width: 45px;
        height: 45px;
        right: 15px;
    }
    
    .scroll-top-premium {
        bottom: 90px;
    }
    
    .whatsapp-premium {
        bottom: 15px;
    }
    
    .price-tag {
        top: -10px;
        right: 15px;
        font-size: 9px;
        padding: 5px 14px;
    }
}

@media (min-width: 769px) {
    .mobile-menu,
    .menu-hamburger {
        display: none !important;
    }
}