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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #34495E;
    background: #ffffff;
}

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

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, #C0392B, #D35400);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.2);
}

.urgency-banner i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2C3E50 0%, #3498DB 50%, #85C1E9 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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 100 100"><defs><radialGradient id="g"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)"/></svg>') center/200px;
    opacity: 0.3;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #85C1E9, #AED6F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #AED6F1;
}

/* Video Container */
.video-container {
    margin: 50px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #2980B9 0%, #2C3E50 100%);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.2);
}

.video-placeholder:hover {
    transform: translateY(-3px);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}

.video-placeholder p {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
}

/* CTA Buttons */
.cta-container {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.primary {
    background: linear-gradient(45deg, #1ABC9C, #2ECC71);
    color: white;
}

.cta-button.secondary {
    background: linear-gradient(45deg, #3498DB, #2980B9);
    color: white;
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.3rem;
}

.sound-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    border: 3px solid #1ABC9C;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sound-button:hover {
    background: #1ABC9C;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 20px 40px rgba(26, 188, 156, 0.3);
}

.sound-button.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    margin-right: 10px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.payment-methods i {
    font-size: 2rem;
    color: #BDC3C7;
}

/* Credibility Section */
.credibility {
    background: linear-gradient(45deg, #2980B9, #2C3E50);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.credibility h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works Section */
.how-it-works {
    background: #F8F8F8;
    padding: 100px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C3E50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    color: #7F8C8D;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #ECF0F1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1ABC9C, #2ECC71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2C3E50;
}

.benefit-card p {
    color: #7F8C8D;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Course Content Section */
.course-content {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 100px 0;
}

.course-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.content-grid {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.content-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.content-item.bonus {
    background: linear-gradient(45deg, rgba(26, 188, 156, 0.15), rgba(46, 204, 113, 0.15));
    border: 1px solid rgba(26, 188, 156, 0.2);
}

.content-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1ABC9C, #2ECC71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-icon i {
    font-size: 1.5rem;
    color: white;
}

.audio-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #AED6F1;
    color: #2C3E50;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.content-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #AED6F1;
}

.content-details p {
    color: #D5DBDB;
    line-height: 1.6;
}

.affirmations {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 3px solid #1ABC9C;
}

.affirmations p {
    color: #AED6F1;
    font-style: italic;
    margin-bottom: 5px;
}

/* Target Audience Section */
.target-audience {
    background: white;
    padding: 100px 0;
}

.target-audience h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2C3E50;
}

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

.audience-card {
    background: #F8F8F8;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #ECF0F1;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.12);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498DB, #2980B9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.audience-icon i {
    font-size: 1.5rem;
    color: white;
}

.audience-card p {
    font-size: 1.1rem;
    color: #34495E;
    font-weight: 500;
    line-height: 1.6;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #2980B9 0%, #2C3E50 100%);
    color: white;
    padding: 100px 0;
}

.offer h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.price-header {
    margin-bottom: 40px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
}

.current-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
}

.cents {
    font-size: 2rem;
    font-weight: 600;
}

.payment-info {
    font-size: 1.1rem;
    opacity: 0.9;
}

.offer-benefits {
    text-align: left;
    margin-bottom: 40px;
}

.offer-benefits h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.offer-benefits ul {
    list-style: none;
}

.offer-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.offer-benefits i {
    color: #1ABC9C;
    margin-top: 5px;
}

.security-info {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.security-info i {
    margin-right: 5px;
}

/* FAQ Section */
.faq {
    background: #F8F8F8;
    padding: 100px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2C3E50;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.08);
    border: 1px solid #ECF0F1;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #F8F8F8;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C3E50;
}

.faq-question i {
    color: #3498DB;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #7F8C8D;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .content-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .current-price .amount {
        font-size: 3rem;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 20px 35px;
        font-size: 1.1rem;
    }
    
    .video-placeholder {
        padding: 60px 20px;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .benefit-card,
    .audience-card {
        padding: 30px 20px;
    }
    
    .content-item {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .urgency-banner {
        font-size: 12px;
        padding: 10px 15px;
    }
}

