/* Reset e Variáveis CSS */
:root {
    --primary-purple: #7B3FF2;
    --neon-green: #00FF00;
    --dark-blue: #0A0E27;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    --red: #E74C3C;
    --green: #27AE60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="200" cy="200" r="3" fill="%23ffffff" opacity="0.3"/><circle cx="800" cy="400" r="2" fill="%23ffffff" opacity="0.4"/><circle cx="400" cy="600" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="1000" cy="200" r="3" fill="%23ffffff" opacity="0.5"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-left {
    color: var(--white);
}

.badge {
    background: var(--primary-purple);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(123, 63, 242, 0.5);
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-purple);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6), 0 10px 30px rgba(123, 63, 242, 0.4);
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-purple), transparent);
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.element-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

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

/* Services Section */
.services {
    background: var(--light-gray);
    padding: 80px 20px;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(123, 63, 242, 0.2);
}

.service-icon {
    font-size: 48px;
    color: #4A90E2;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.4;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Problems Section */
.problems {
    background: var(--dark-blue);
    padding: 80px 20px;
    color: var(--white);
}

.problems h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--red);
}

.problem-icon {
    position: relative;
    font-size: 80px;
    color: var(--red);
    margin-bottom: 20px;
    display: inline-block;
}

.x-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--white);
    font-weight: 700;
}

.problem-card p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.problem-text {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.problem-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-top: 40px;
}

/* Solution Section */
.solution {
    background: var(--dark-blue);
    padding: 80px 20px;
    color: var(--white);
}

.solution h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.solution-intro {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--green);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3);
}

.benefit-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-text {
    padding: 25px;
    text-align: center;
}

.benefit-text i {
    font-size: 30px;
    color: var(--green);
    margin-bottom: 15px;
}

.benefit-text p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

/* Target Audience Section */
.target-audience {
    background: var(--light-gray);
    padding: 80px 20px;
}

.target-audience h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-purple);
}

.target-intro {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.target-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(123, 63, 242, 0.2);
}

.target-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.target-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.target-card p {
    padding: 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
}

.target-audience h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin: 40px 0 20px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.target-outro {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Differentials Section */
.differentials {
    background: var(--light-gray);
    padding: 80px 20px;
}

.differentials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: var(--primary-purple);
    color: var(--white);
}

.comparison-table th {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.comparison-table tbody tr:hover {
    background: #f0f0f0;
}

.differentials-footer {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    max-width: 800px;
    margin: 40px auto;
    color: var(--dark-blue);
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
    padding: 80px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(123, 63, 242, 0.2);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-blue);
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
}

/* Rifas Online Section */
.rifas-online {
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 100%);
    padding: 80px 20px;
    color: var(--white);
}

.rifas-online h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.rifas-intro {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.rifas-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.rifas-feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(123, 63, 242, 0.3);
    transition: all 0.3s ease;
}

.rifas-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-purple);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(123, 63, 242, 0.3);
}

.rifas-icon {
    font-size: 60px;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.rifas-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.rifas-feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.rifas-benefits {
    background: rgba(123, 63, 242, 0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    border: 2px solid var(--primary-purple);
}

.rifas-benefits h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
}

.rifas-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rifas-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
}

.rifas-benefit-item i {
    font-size: 24px;
    color: var(--neon-green);
}

.rifas-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-purple), #9b5ff5);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(123, 63, 242, 0.4);
}

.rifas-cta h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.rifas-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Final CTA Section */
.final-cta {
    background: url('../images/space-bg.jpg') center/cover no-repeat;
    padding: 100px 20px;
    position: relative;
    color: var(--white);
    text-align: center;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.8);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer p {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .services-grid,
    .problems-grid,
    .benefits-grid,
    .target-grid,
    .testimonials-grid,
    .rifas-features,
    .rifas-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .rifas-online h2 {
        font-size: 28px;
    }
    
    .rifas-cta h3 {
        font-size: 24px;
    }
    
    .services h2,
    .problems h2,
    .solution h2,
    .target-audience h2,
    .differentials h2,
    .testimonials h2 {
        font-size: 28px;
    }
    
    .final-cta h2 {
        font-size: 32px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .badge {
        font-size: 10px;
        padding: 12px 20px;
    }
    
    .services,
    .problems,
    .solution,
    .target-audience,
    .differentials,
    .testimonials,
    .rifas-online {
        padding: 60px 20px;
    }
    
    .final-cta {
        padding: 80px 20px;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
    
    .final-cta p {
        font-size: 16px;
    }
}

