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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a0a1f 50%, #000000 100%);
    padding: 100px 20px;
    position: relative;
}

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

/* Hero Centralizado */
.hero-wrapper-centered {
    max-width: 1200px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-title-centered {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-image-centered {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
}

.hacker-img-centered {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.3), 0 0 80px rgba(0, 255, 136, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-subtitle-centered,
.hero-price-centered {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
}

.hero-badge-centered {
    font-size: 1rem;
    color: #00ff88;
    margin-top: 10px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}



.highlight-pink {
    color: #ff0080;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.highlight-green {
    color: #00ff88;
    font-weight: 700;
}

.highlight-red {
    color: #ff3366;
    font-weight: 700;
}

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

.hero-price {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-badge {
    font-size: 1.1rem;
    color: #ffcc00;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #000000;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

/* Section Intro */
.section-intro {
    padding: 100px 20px;
    text-align: center;
    background: #000000;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title-white {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Section Tools */
.section-tools {
    padding: 80px 20px;
    text-align: center;
    background: #000000;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tool-card {
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.card-purple {
    background: linear-gradient(135deg, #6b2d8f 0%, #4a1d63 100%);
}

.card-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.card-red {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
}

.card-green {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

.card-purple-dark {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
}

.card-green-dark {
    background: linear-gradient(135deg, #14532d 0%, #166534 100%);
}

.card-blue-dark {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
}

.card-brown {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tool-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: 40px;
}

/* Section How It Works */
.section-how {
    padding: 100px 20px;
    background: #000000;
    text-align: center;
}

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

.how-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.how-card:hover {
    border-color: #ff0080;
    transform: translateY(-10px);
}

.how-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.how-image {
    width: 100%;
    max-width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.how-card:hover .how-image {
    transform: scale(1.05);
}

.how-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.how-description {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Section Pricing */
.section-pricing {
    padding: 100px 20px;
    background: #000000;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 3px solid transparent;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:first-child {
    border-color: #ff0080;
}

.pricing-card:last-child {
    border-color: #00ff88;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-popular {
    background: linear-gradient(135deg, #ff0080 0%, #cc0066 100%);
    color: #ffffff;
}

.badge-best {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #000000;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 900;
    margin: 30px 0 20px 0;
    text-transform: uppercase;
}

.pricing-title-pink {
    color: #ff0080;
}

.pricing-title-green {
    color: #00ff88;
}

.pricing-old {
    font-size: 1.2rem;
    color: #666666;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.pricing-price {
    margin-bottom: 10px;
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
}

.price-red {
    color: #ff3366;
}

.price-green {
    color: #00ff88;
}

.price-period {
    font-size: 1.3rem;
    color: #cccccc;
}

.pricing-economy {
    font-size: 1.1rem;
    color: #00ff88;
    margin-bottom: 30px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #cccccc;
    border-bottom: 1px solid #333333;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 20px;
}

.btn-pricing:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.pricing-note {
    font-size: 0.95rem;
    color: #ffcc00;
    margin-top: 15px;
}

.pricing-disclaimer {
    margin-top: 50px;
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Reviews */
.section-reviews {
    padding: 100px 20px;
    background: #000000;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.review-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #333333;
    text-align: left;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #ff0080;
    transform: translateY(-5px);
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 3rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff0080 0%, #cc0066 100%);
    border-radius: 50%;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.author-role {
    font-size: 0.95rem;
    color: #999999;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #333333;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Section FAQ */
.section-faq {
    padding: 100px 20px;
    background: #000000;
    text-align: center;
}

.faq-description {
    font-size: 1.3rem;
    color: #cccccc;
    margin: 40px auto;
    max-width: 800px;
    line-height: 1.8;
}

.faq-info {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 25px 0;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: #0d0d0d;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer p {
    color: #666666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-centered {
        font-size: 2rem;
    }
    
    .hero-image-centered {
        max-width: 100%;
    }
    
    .hero-subtitle-centered,
    .hero-price-centered {
        font-size: 1.1rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hacker-img {
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-price {
        font-size: 1.4rem;
    }
    
    .section-title,
    .section-title-white {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .price-value {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}


/* Section: Lista de Ferramentas */
.section-tools-list {
    padding: 80px 20px;
    background: #000000;
    text-align: center;
}

.btn-show-all {
    background: linear-gradient(135deg, #ff0080 0%, #cc0066 100%);
    color: #ffffff;
    border: none;
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-show-all:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #ff0080;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff0080;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.modal-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.modal-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 20px;
    text-align: left;
}

.modal-category ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.modal-category li {
    padding: 10px 0;
    color: #cccccc;
    font-size: 1.1rem;
    border-bottom: 1px solid #333333;
}

.modal-category li:last-child {
    border-bottom: none;
}

.modal-footer {
    text-align: center;
    font-size: 1.3rem;
    color: #00ff88;
    font-weight: 700;
    margin-top: 30px;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 40px 20px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .modal-tools-grid {
        grid-template-columns: 1fr;
    }
}
