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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

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

/* Utilitários */
.text-primary {
    color: #3b82f6;
}

.highlight {
    color: #f59e0b;
    font-weight: bold;
    font-size: 1.2em;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
}

.hero-left h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle p {
    font-size: 1.25rem;
    color: #bfdbfe;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 24rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-emoji {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.category-label {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    text-align: center;
}

.btn-hero-cta {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.btn-hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

.hero-security {
    color: #bfdbfe;
    font-size: 0.875rem;
}

/* Pain Points Section */
.pain-points-section {
    padding: 4rem 0;
    background: white;
}

.pain-points-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 3rem;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pain-point {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.2s;
}

.pain-point:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-point h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.pain-point p {
    color: #6b7280;
}

/* What You Get Section */
.what-you-get-section {
    padding: 4rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.main-package {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 48rem;
    margin: 0 auto;
}

.discount-badge {
    background: #ef4444;
    color: white;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    display: inline-block;
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.package-intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-intro p {
    color: #bfdbfe;
    margin-bottom: 1rem;
}

.pricing-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: #fca5a5;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4ade80;
}

.categories-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.category-detailed {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-detailed h4 {
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #f59e0b;
}

.category-detailed p {
    color: #bfdbfe;
    font-size: 0.75rem;
}

.cta-container {
    text-align: center;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    font-weight: bold;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.75rem;
}

.btn-checkout:hover {
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

.security-text {
    color: #bfdbfe;
    font-size: 0.75rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 3rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.testimonial-author strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: #059669;
    color: white;
}

.guarantee-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-badge h3 {
    font-size: 2rem;
    font-weight: bold;
}

.guarantee-content p {
    font-size: 1.25rem;
    color: #d1fae5;
    margin-bottom: 2rem;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    .categories-detailed {
        grid-template-columns: 1fr;
    }
    
    .guarantee-features {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-left h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle p {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .testimonials-section h2,
    .pain-points-section h2 {
        font-size: 2rem;
    }
}