/* Reset and Base Styles */
:root {
    --primary-bg: #121214;
    --secondary-bg: #202024;
    --green-light: #00E676;
    /* Accent color like original */
    --green-gradient: linear-gradient(90deg, #00C853, #64DD17);
    --text-light: #E1E1E6;
    --text-dark: #FFFFFF;
    --text-muted: #A8A8B3;
    --cta-shadow: rgba(0, 230, 118, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-white {
    color: white !important;
}

.highlight-green {
    color: var(--green-light);
    font-weight: 800;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.bg-dark {
    background-color: #0b0b0b;
}

.bg-green {
    background-image: var(--green-gradient);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0;
    background-image: linear-gradient(rgba(18, 18, 20, 0.85), rgba(18, 18, 20, 0.95)), url('../img/site_1.png');
    /* Fallback pattern */
    background-color: #121214;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #333;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.hero-logo img {
    max-height: 60px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-pricing {
    margin-bottom: 30px;
}

.pricing-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    line-height: 1.2;
}

.pricing-new {
    font-size: 5rem;
    font-weight: 900;
    color: var(--green-light);
    line-height: 1;
    margin: 10px 0;
}

.pricing-cash {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 600;
}

/* Features Right Side in Hero */
.hero-features {
    flex: 0.8;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--green-light);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-image: var(--green-gradient);
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px var(--cta-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.6);
}

.btn-dark {
    background-image: none;
    background-color: #121214;
    color: var(--green-light);
    border: 2px solid var(--green-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-dark:hover {
    background-color: var(--green-light);
    color: #000;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
}

.btn-whatsapp img {
    width: 24px;
}

/* Animations */
.pulsate-fwd {
    animation: pulsate-fwd 1.5s ease-in-out infinite both;
}

@keyframes pulsate-fwd {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Modules Section */
.modules-section {
    padding: 80px 0;
    background-color: #1a1a1e;
}

.badge {
    background-color: var(--green-light);
    color: #000;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 10px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.module-item {
    background-color: var(--secondary-bg);
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    border-left: 3px solid #444;
    transition: all 0.2s ease;
}

.module-item:hover {
    border-left-color: var(--green-light);
    background-color: #2a2a2e;
}

.center-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Target Section */
.target-section {
    padding: 80px 0;
}

.target-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.target-text,
.certificate-box {
    flex: 1;
    min-width: 300px;
}

.certificate-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #333;
}

.legal-text {
    font-size: 0.8rem;
    color: #666;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background-color: #121214;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #333;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--green-light);
}

.bonus-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--green-light);
}

.bonus-card p {
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--green-light);
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Advantages */
.advantages-section {
    padding: 80px 0;
    background-color: #1a1a1e;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.advantage-item img {
    width: 80px;
    margin-bottom: 20px;
}

.advantage-item h3 {
    margin-bottom: 15px;
}

/* Professor Section */
.professor-section {
    padding: 80px 0;
}

.professor-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.professor-img {
    flex: 0.8;
    max-width: 400px;
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(0, 230, 118, 0.2);
}

.professor-text {
    flex: 1;
    min-width: 300px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
}

.guarantee-badge {
    max-width: 200px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--secondary-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background-color: #333;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--green-light);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #1a1a1e;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
    /* Arbitrary large number */
}

/* Footer Section */
.footer {
    background-color: #050505;
    padding: 50px 0;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--green-light);
}

.social-links img {
    width: 30px;
    margin: 0 10px;
    cursor: pointer;
    filter: invert(0.8);
    transition: filter 0.3s;
}

.social-links img:hover {
    filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content,
    .hero-features {
        flex: 100%;
    }

    .btn-primary {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .pricing-new {
        font-size: 3.5rem;
    }
}
/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
