@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Montserrat:wght@400;700;900&display=swap');

:root {
    --bg-dark: #0c0010;
    --bg-darker: #060008;
    --accent: #ff1a75;
    --accent-hover: #e60066;
    --secondary: #4b001d;
    --text-white: #ffffff;
    --text-muted: #e0e0e0;
    --success: #28a745;
    --success-hover: #218838;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0c0010;
    /* Fallback */
    background-color: var(--bg-dark);
    color: #ffffff;
    /* Fallback */
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: banner-pulse 2s infinite;
}

.top-banner p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-banner i {
    color: #FFD700;
    margin-right: 8px;
    font-size: 1.1rem;
}

.top-banner strong {
    font-weight: 800;
    text-transform: uppercase;
}

@keyframes banner-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(220, 20, 60, 0.6);
    }
}

@media (max-width: 768px) {
    .top-banner p {
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0c0010;
    /* Fallback */
    background: radial-gradient(circle at center, var(--secondary) 0%, var(--bg-dark) 70%);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    /* Fallback */
    color: var(--text-white);
    line-height: 1.1;
    max-width: 900px;
}

.hero .badge {
    background-color: #ff1a75;
    /* Fallback */
    background-color: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    max-width: 700px;
    color: #e0e0e0;
    /* Fallback */
    color: var(--text-muted);
}

.hero-image {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
    filter: drop-shadow(0 20px 50px rgba(255, 26, 117, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f5f5f5;
    color: #333;
}

.benefits h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 60px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 2rem;
    color: #28a745;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Reasons Section */
.reasons {
    background-color: #ff1a75;
    /* Fallback */
    background-color: var(--accent);
    padding: 100px 0;
}

.reasons h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 60px;
    line-height: 1.2;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: #0c0010;
    /* Fallback */
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
}

.reason-card i {
    font-size: 2.5rem;
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
}

/* Learning Section */
.learning {
    padding: 120px 0;
    background-color: #0c0010;
    /* Fallback */
    background-color: var(--bg-dark);
}

.learning-header {
    text-align: center;
    margin-bottom: 80px;
}

.learning-header h2 span {
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

@media (max-width: 600px) {
    .learning-grid {
        grid-template-columns: 1fr;
    }
}

.learning-card {
    background: rgba(255, 255, 255, 0.05);
    /* Fallback */
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Fallback */
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.learning-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.learning-card-content {
    padding: 30px;
}

.learning-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
}

.learning-card ul {
    list-style: none;
}

.learning-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.learning-card li::before {
    content: "✓";
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
    font-weight: bold;
}

/* Bonus Section */
.bonus {
    padding: 100px 0;
    background-color: #060008;
    /* Fallback */
    background-color: var(--bg-darker);
}

.bonus h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 60px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    /* Fallback */
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Fallback */
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 26, 117, 0.3);
}

.bonus-item img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-content {
    padding: 25px;
    text-align: center;
}

.bonus-content h3 {
    font-size: 1.3rem;
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bonus-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    /* Fallback */
    color: var(--text-muted);
    margin: 0;
}

.price-highlight {
    color: #ff0000;
    text-decoration: line-through;
    font-weight: 600;
}

.free-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    /* Fallback for safe side */
    background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .bonus-content h3 {
        font-size: 1.1rem;
    }

    .bonus-content p {
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #0c0010 0%, #060008 100%);
    /* Fallback */
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
}

.price-box {
    background: rgba(255, 255, 255, 0.05);
    /* Fallback */
    background: var(--glass);
    border: 2px solid #ff1a75;
    /* Fallback */
    border: 2px solid var(--accent);
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.price-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #ff0000;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    /* Fallback */
    color: var(--text-white);
    margin-bottom: 30px;
}

.current-price span {
    font-size: 1.5rem;
    display: block;
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
}

.cta-button {
    display: inline-block;
    background-color: #28a745;
    /* Fallback */
    background-color: var(--success);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.cta-button:hover {
    background-color: #218838;
    /* Fallback */
    background-color: var(--success-hover);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.6);
}

/* Testimonials */
.testimonials {
    background-color: #ff1a75;
    /* Fallback */
    background-color: var(--accent);
    padding: 100px 0;
}

.testimonial-scroll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.testimonial-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-user .name {
    font-weight: 700;
}

.testimonial-content {
    font-size: 1rem;
}

/* Guarantee Section */
.guarantee {
    padding: 50px 0;
    background-color: #060008;
    /* Fallback */
    background-color: var(--bg-darker);
}

.guarantee h2 {
    color: #ffffff;
    /* Fallback */
    color: var(--text-white);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    /* Fallback */
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Fallback */
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.guarantee-image {
    flex: 0 0 200px;
}

.guarantee-image img {
    width: 100%;
    height: auto;
    display: block;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    /* Fallback */
    color: var(--text-muted);
    margin: 0;
}

.guarantee-text strong {
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
    font-weight: 700;
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .guarantee-image {
        flex: 0 0 150px;
    }

    .guarantee-text p {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #0c0010;
    /* Fallback */
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    /* Fallback */
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Fallback */
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff1a75;
    /* Fallback */
    border-color: var(--accent);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #ffffff;
    /* Fallback */
    color: var(--text-white);
    margin: 0;
}

.faq-question i {
    color: #ff1a75;
    /* Fallback */
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #e0e0e0;
    /* Fallback */
    color: var(--text-muted);
    line-height: 1.8;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(40, 167, 69, 0.7);
    }

    100% {
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background-color: #0c0010;
    /* Fallback */
    background-color: var(--bg-dark);
    text-align: center;
}

.urgency img {
    transition: transform 0.3s ease;
}

.urgency img:hover {
    transform: scale(1.02);
}

/* Urgency Vagas Section */
.urgency-vagas {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 3px dashed rgba(255, 255, 255, 0.5);
}

.urgency-icon {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 20px;
    animation: pulse-icon 1.5s infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.urgency-vagas h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.urgency-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.6;
}

.progress-container {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    height: 50px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.progress-bar {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    height: 100%;
    width: 0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    transition: width 2s ease-out;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.progress-bar.active {
    width: 87%;
}

.progress-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B0000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.urgency-warning {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    margin: 20px 0;
    text-transform: uppercase;
}

.urgency-cta {
    font-size: 1rem;
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badges i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .urgency-content {
        padding: 30px 20px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .progress-text {
        font-size: 1.2rem;
    }
}

/* Testimonial Image Container */
.testimonial-image-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile optimization for testimonials */
@media (max-width: 768px) {
    .testimonials .container {
        padding: 0;
        max-width: 100%;
    }

    .testimonials h2 {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .testimonial-image-container {
        max-width: 100%;
        margin: 0;
    }

    .testimonial-image-container img {
        border-radius: 0;
        width: 100%;
        box-shadow: none;
    }
}

.guarantee-box-image {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.guarantee-box-image img {
    max-width: 100%;
    height: auto;
}


footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #e0e0e0;
    /* Fallback */
    color: var(--text-muted);
}
html {
  scroll-behavior: smooth;
}
<script>
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
  anchor.addEventListener('click', function (e) {
    e.preventDefault();
    const target = document.querySelector(this.getAttribute('href'));
    if (target) {
      target.scrollIntoView({
        behavior: 'smooth'
      });
    }
  });
});
</script>