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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #00ff41;
}

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

.ascii-logo {
    font-family: 'Orbitron', monospace;
    font-size: 8px;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    line-height: 1;
    margin: 0;
    white-space: pre;
    overflow: hidden;
    max-width: 100%;
}

.tagline {
    color: #00ff41;
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #00ff41;
    text-shadow: 0 0 5px #00ff41;
}

.cta-nav {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ff41;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.urgency-badge {
    background: linear-gradient(45deg, #ff0040, #ff4000);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    color: #00ff41;
    text-shadow: 0 0 20px #00ff41;
}

.glow {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px #00ff41); }
    to { filter: drop-shadow(0 0 30px #00ff41); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: #cccccc;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 15px #00ff41;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 600;
}

/* Optimization Containers Wrapper */
.optimization-containers {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ping Optimization Container */
.ping-optimization {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid #00ff41;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.ping-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff41;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff41;
}

.ping-before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ping-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ping-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 600;
    margin-bottom: 5px;
}

.ping-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
    line-height: 1.2;
}

.ping-value small {
    font-size: 0.6em;
    display: block;
    margin-top: 2px;
    opacity: 0.9;
}

.ping-value.bad {
    background: rgba(255, 0, 64, 0.2);
    color: #ff0040;
    border: 2px solid #ff0040;
    text-shadow: 0 0 10px #ff0040;
}

.ping-value.good {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    border: 2px solid #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

.ping-arrow {
    color: #00ff41;
    font-size: 1.5rem;
    font-weight: 900;
    text-shadow: 0 0 10px #00ff41;
}

.ping-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.ping-description strong {
    color: #00ff41;
    font-weight: 700;
}

.cta-section {
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    color: #000;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00ff41;
}

.cta-text {
    display: block;
    font-size: 1.2rem;
}

.cta-price {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
}

.guarantee {
    margin-top: 20px;
    color: #00ff41;
    font-weight: 600;
}

.countdown {
    background: rgba(255, 0, 64, 0.1);
    border: 2px solid #ff0040;
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
}

.countdown p {
    color: #ff0040;
    font-weight: 700;
    margin-bottom: 10px;
}

.timer {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ff0040;
    text-shadow: 0 0 10px #ff0040;
}

/* Problem Section */
.problem {
    background: #111111;
    padding: 60px 0;
    text-align: center;
}

.problem h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.problem-item {
    background: rgba(255, 0, 64, 0.1);
    border: 2px solid #ff0040;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 64, 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-item h3 {
    color: #ff0040;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.pain-point {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid #00ff41;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pain-point h3 {
    color: #00ff41;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Solution Section */
.solution {
    background: #0a0a0a;
    padding: 60px 0;
    text-align: center;
}

.solution h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.solution-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 60px;
}

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

.feature {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid #00ff41;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    color: #00ff41;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    background: #111111;
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 60px;
}

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

.testimonial {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid #00ff41;
    border-radius: 15px;
    padding: 30px;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.before {
    background: #ff0040;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
}

.after {
    background: #00ff41;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
}

.arrow {
    color: #00ff41;
    font-size: 1.5rem;
    font-weight: 900;
}

.author {
    color: #00ff41;
    font-weight: 700;
    margin-top: 15px;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(45deg, #ff0040, #ff4000);
    padding: 80px 0;
    text-align: center;
}

.urgency h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.urgency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.urgency-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.urgency-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #cccccc;
}

/* Pricing Section */
.pricing {
    background: #0a0a0a;
    padding: 60px 0;
    text-align: center;
}

.pricing h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.plan {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid #00ff41;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.plan:hover {
    transform: scale(1.05);
}

.featured {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff41;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.plan-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00ff41;
}

.price {
    margin-bottom: 10px;
}

.current-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 15px #00ff41;
}

.discount {
    background: #ff0040;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    text-align: center;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.buy-button {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.buy-button:hover {
    box-shadow: 0 0 30px #00ff41;
    transform: translateY(-2px);
    color: #000;
    text-decoration: none;
}

.featured-button {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    animation: pulse 2s infinite;
}

.guarantee-section {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid #00ff41;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-section h3 {
    color: #00ff41;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 2px solid #00ff41;
}

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

.ascii-logo-small {
    font-family: 'Orbitron', monospace;
    font-size: 6px;
    color: #00ff41;
    text-shadow: 0 0 5px #00ff41;
    line-height: 1;
    margin: 0;
}

.footer-logo p {
    color: #00ff41;
    font-size: 10px;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: #cccccc;
    margin-bottom: 5px;
}

/* Prevenir overflow horizontal em mobile */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    body, html {
        overflow-x: hidden;
        width: 100%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat {
        flex: 1;
        min-width: 80px;
    }
    
    .stats {
        gap: 15px;
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .nav {
        display: none;
    }
    
    /* Centralizar logo em dispositivos móveis */
    .header .container {
        justify-content: center;
    }
    
    .logo {
        text-align: center;
    }
    
    .ascii-logo {
        font-size: 6px;
        text-align: center;
        margin: 0 auto;
        white-space: pre;
        overflow: hidden;
        max-width: 100%;
        transform: scale(1);
        transform-origin: center;
    }
    
    .tagline {
        text-align: center;
        margin: 5px auto 0;
        font-size: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .plan {
        margin: 0 10px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-content {
        padding: 0 20px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .features-list li {
        font-size: 14px;
    }
    
    /* Optimization containers responsive */
    .optimization-containers {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    
    /* Ping optimization responsive */
    .ping-optimization {
        margin: 0 10px;
        padding: 20px;
        max-width: none;
    }
    
    .ping-before-after {
        flex-direction: column;
        gap: 15px;
    }
    
    .ping-value {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
    
    .ping-value small {
        font-size: 0.5em;
    }
    
    .ping-header h3 {
        font-size: 1.3rem;
    }
    
    /* Ajustar tamanho dos h2 em mobile */
    .problem h2,
    .solution h2,
    .testimonials h2,
    .urgency h2,
    .pricing h2 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .ascii-logo {
        font-size: 5px;
        transform: scale(0.9);
        transform-origin: center;
        max-width: 100%;
        overflow: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .plan {
        padding: 30px 20px;
    }
    
    .plan-header h3 {
        font-size: 1.5rem;
    }
    
    .features-list li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .buy-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .urgency-badge {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .guarantee-section {
        padding: 30px 20px;
    }
    
    .guarantee-section h3 {
        font-size: 1.5rem;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial .name {
        font-size: 1rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Optimization containers for small screens */
    .optimization-containers {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    /* Ping optimization for small screens */
    .ping-optimization {
        margin: 0 5px;
        padding: 15px;
        max-width: none;
    }
    
    .ping-value {
        font-size: 1.3rem;
        padding: 6px 10px;
    }
    
    .ping-value small {
        font-size: 0.45em;
    }
    
    .ping-header h3 {
        font-size: 1.1rem;
    }
    
    .ping-description {
        font-size: 0.9rem;
    }
    
    /* Ajustar h2 para telas pequenas */
    .problem h2,
    .solution h2,
    .testimonials h2,
    .urgency h2,
    .pricing h2 {
        font-size: 1.6rem;
        line-height: 1.1;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stats {
        gap: 10px;
    }
    
    .stat {
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .old-price {
        font-size: 1.2rem;
    }
    
    /* Ajustar h2 para telas muito pequenas */
    .problem h2,
    .solution h2,
    .testimonials h2,
    .urgency h2,
    .pricing h2 {
        font-size: 1.4rem;
        line-height: 1.1;
        padding: 0 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Touch-friendly buttons for mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .buy-button {
        min-height: 44px;
        padding: 15px 30px;
    }
    
    .nav a {
        min-height: 44px;
        padding: 10px 15px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: row;
        gap: 40px;
    }
}

/* Footer Disclaimer */
.footer .disclaimer {
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid rgba(255, 0, 64, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.footer .disclaimer p {
    color: #ff6b6b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.footer .disclaimer strong {
    color: #ff0040;
    font-weight: 700;
}

/* Footer Disclaimer responsive */
@media (max-width: 768px) {
    .footer .disclaimer {
        margin: 0 20px 30px 20px;
        padding: 15px;
    }
    
    .footer .disclaimer p {
        font-size: 0.8rem;
    }
}