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

:root {
    /* Colors - Light Mode */
    --primary: hsl(328, 100%, 50%);
    --primary-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(0, 0%, 93%);
    --secondary-foreground: hsl(0, 0%, 9%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 9%);
    --muted: hsl(328, 8%, 94%);
    --muted-foreground: hsl(0, 0%, 45%);
    --accent: hsl(328, 15%, 93%);
    --accent-foreground: hsl(328, 80%, 30%);
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 98%);
    --border: hsl(0, 0%, 89%);
    --input: hsl(0, 0%, 80%);
    --ring: hsl(328, 100%, 50%);
    --card: hsl(0, 0%, 98%);
    --card-foreground: hsl(0, 0%, 9%);
    --chart-1: hsl(328, 85%, 45%);
    --chart-2: hsl(45, 85%, 60%);
    --chart-3: hsl(142, 76%, 36%);
    --chart-4: hsl(220, 70%, 50%);
    --chart-5: hsl(280, 65%, 55%);
    
    /* Shadows and effects */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Elevation effects */
    --elevate-1: rgba(0, 0, 0, 0.03);
    --elevate-2: rgba(0, 0, 0, 0.08);
    
    /* Border radius */
    --radius: 0.5rem;
    --radius-sm: 0.1875rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5625rem;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 1rem;
    text-align: center;
}

.hero-badge {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.hero-badge-content {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--primary-foreground);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    word-wrap: break-word;
}

@media (min-width: 640px) {
    .hero-badge-content {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.hero-title-accent {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--chart-2);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

@media (min-width: 640px) {
    .hero-title-main,
    .hero-title-accent {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title-main,
    .hero-title-accent {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    word-wrap: break-word;
}

.hero-subtitle-small {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    word-wrap: break-word;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .hero-subtitle-small {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .hero-subtitle-small {
        font-size: 1.25rem;
    }
}

.hero-features {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.hero-feature {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
    word-wrap: break-word;
    margin-bottom: 1rem;
}

.hero-feature-accent {
    font-size: 0.875rem;
    color: var(--chart-2);
    text-align: center;
    word-wrap: break-word;
    font-weight: 600;
}

@media (min-width: 640px) {
    .hero-feature,
    .hero-feature-accent {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-feature,
    .hero-feature-accent {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-feature,
    .hero-feature-accent {
        font-size: 1.25rem;
    }
}

.highlight-bold {
    font-weight: 900;
    color: var(--chart-2);
}

.highlight-normal {
    font-weight: 700;
}

.hero-price {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.price-label {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    word-wrap: break-word;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--chart-2);
    word-wrap: break-word;
    text-align: center;
}

@media (min-width: 640px) {
    .price-label {
        font-size: 1.5rem;
    }
    .price-value {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .price-label {
        font-size: 1.875rem;
    }
    .price-value {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .price-label {
        font-size: 3rem;
    }
    .price-value {
        font-size: 5rem;
    }
}

.hero-cta {
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.btn-cta {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    background-color: var(--elevate-1);
}

@media (min-width: 640px) {
    .btn-cta {
        font-size: 1.125rem;
        padding: 1rem 2rem;
        width: auto;
    }
}

.hero-signature {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Learning Section */
.learning-section {
    background-color: var(--background);
    padding: 4rem 1rem;
}

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

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.learning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.course-item {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    position: relative;
}

.course-item:hover {
    background-color: var(--elevate-1);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background-color: #22c55e;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.course-item p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
}

/* VSL Section */
.vsl-section {
    text-align: center;
    margin-bottom: 4rem;
}

.headline-box {
    display: inline-block;
    padding: 0.875rem 1.375rem;
    border: 3px solid var(--primary);
    border-radius: 1.25rem;
    text-align: center;
    margin: 1.25rem auto;
    max-width: 95%;
    box-sizing: border-box;
}

.headline-box h2 {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    font-weight: 800;
    color: var(--foreground);
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
}

.video-container {
    max-width: 24rem;
    margin: 0 auto 2rem;
}

.video-wrapper {
    position: relative;
    background-color: #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.user-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.2s ease;
}

.video-overlay:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.play-button {
    background-color: white;
    border-radius: 50%;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 3rem;
    height: 3rem;
    color: black;
    margin-left: 0.25rem;
}

/* Earnings Section */
.earnings-section {
    text-align: center;
    background-color: rgba(var(--accent), 0.2);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 4rem;
}

.earnings-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.earnings-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

/* Bonus Section */
.bonus-section {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .bonus-title {
        font-size: 1.875rem;
    }
}

.bonus-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.bonus-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.bonus-image {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Modules Section */
.modules-section {
    background-color: rgba(var(--accent), 0.1);
    padding: 4rem 1rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.module-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
}

.module-card:hover {
    background-color: var(--elevate-1);
}

.module-icon {
    margin: 0 auto 1rem;
    background-color: rgba(var(--primary), 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.module-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.module-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

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

.cta-message {
    display: inline-block;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.cta-message p {
    font-weight: 700;
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background);
    padding: 4rem 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.testimonial-card:hover {
    background-color: var(--elevate-1);
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.engagement {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.likes, .reply {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.heart-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    fill: var(--primary);
}

.message-icon {
    width: 1rem;
    height: 1rem;
}

/* Pricing Section */
.pricing-section {
    background-color: rgba(var(--accent), 0.1);
    padding: 4rem 1rem;
}

.urgency-banner {
    background-color: var(--destructive);
    color: var(--destructive-foreground);
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.urgency-banner p {
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background-color: #f9fafb;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    min-height: 25rem;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    background-color: var(--elevate-1);
}

.pricing-card.featured {
    border-color: var(--primary);
}

.best-seller-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--chart-2);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-header {
    text-align: center;
    padding-bottom: 1rem;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-title.featured {
    margin-bottom: 1rem;
}

.price-info {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    background-color: rgba(var(--primary), 0.1);
    padding: 0.375rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.feature span {
    font-size: 0.875rem;
    color: var(--foreground);
}

.btn-plan {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1.5rem;
    width: 100%;
}

.btn-plan:hover {
    opacity: 0.9;
}

.guarantee-section {
    text-align: center;
    margin-top: 2rem;
}

.guarantee-badge {
    background-color: var(--chart-2);
    color: black;
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
}

.guarantee-badge p {
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background-color: var(--background);
    padding: 4rem 1rem;
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    color: var(--foreground);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    display: none;
}

.faq-answer.open {
    display: block;
}

.faq-item.open .chevron {
    transform: rotate(180deg);
}

/* Benefits Section */
.benefits-section {
    text-align: center;
    margin-top: 3rem;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.2s ease;
    position: relative;
}

.benefit-card:hover {
    background-color: var(--elevate-1);
}

.benefit-emoji {
    font-size: 1.875rem;
}

.benefit-content {
    text-align: left;
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Instructor Section */
.instructor-section {
    background-color: rgba(var(--accent), 0.1);
    padding: 4rem 1rem;
}

.instructor-card {
    max-width: 64rem;
    margin: 0 auto;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.2s ease;
    position: relative;
}

.instructor-card:hover {
    background-color: var(--elevate-1);
}

.instructor-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .instructor-info {
        grid-template-columns: 1fr 2fr;
    }
}

.instructor-avatar {
    text-align: center;
}

@media (min-width: 768px) {
    .instructor-avatar {
        text-align: left;
    }
}

.instructor-avatar img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.instructor-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .stat {
        justify-content: flex-start;
    }
}

.stat-icon {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.stat span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.instructor-bio h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.bio-text strong {
    color: var(--foreground);
}

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

.mission {
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--muted);
    padding: 3rem 1rem;
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-links span {
    color: var(--muted-foreground);
    display: none;
}

@media (min-width: 640px) {
    .footer-links span {
        display: inline;
    }
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.footer-copyright p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

.btn-whatsapp {
    background-color: var(--chart-3);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background-color: rgba(var(--chart-3), 0.9);
    animation: none;
}

.whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.whatsapp-text {
    display: none;
}

@media (min-width: 640px) {
    .whatsapp-text {
        display: block;
        text-align: left;
    }
}

.whatsapp-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.whatsapp-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Utility Classes */
.hover-elevate {
    position: relative;
    transition: all 0.2s ease;
}

.hover-elevate:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--elevate-1);
    border-radius: inherit;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-section {
        padding: 2rem 0.5rem;
    }
    
    .learning-section,
    .modules-section,
    .testimonials-section,
    .pricing-section,
    .faq-section,
    .instructor-section {
        padding: 2rem 0.5rem;
    }
}

/* Print styles */
@media print {
    .whatsapp-button {
        display: none;
    }
}