*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif;line-height:1.6;color:#333;background:#fff}img{max-width:100%;height:auto;display:block}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    transition: padding 0.3s ease;
}

.header.scrolled .header-content {
    padding: 8px 0;
}

.logo h2 {
    color: #8b5cf6;
    font-size: 24px;
    font-weight: 700;
}

.header.scrolled .logo h2 {
    font-size: 20px;
}

.header-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.btn-cta {
    background: #22c55e;
    color: white;
    font-size: 18px;
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-cta:hover, .btn-cta:focus {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-large {
    font-size: 20px;
    padding: 24px 48px;
    border-radius: 24px;
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-outline:hover, .btn-outline:focus {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
    padding: 80px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1f2937;
}

.highlight {
    color: #22c55e;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-course-image {
    margin: 32px 0;
    text-align: center;
}

.hero-course-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Desktop version - larger and centered image */
@media (min-width: 769px) {
    .hero-course-image {
        margin: 40px auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-course-image img {
        max-width: 550px;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
}


.price-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px auto;
    padding: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.price-from {
    font-size: 18px;
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 500;
}

.price-arrow {
    font-size: 24px;
    color: #22c55e;
    font-weight: bold;
}

.price-current {
    font-size: 36px;
    color: #22c55e;
    font-weight: 800;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
}

.badge {
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}


/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f9fafb;
}

.gallery h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 48px;
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 280px;
    margin-right: 24px;
    text-align: center;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.carousel-slide p {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #8b5cf6;
    transform: scale(1.2);
}

/* Learn Section */
.learn-section {
    padding: 80px 0;
    background: white;
}

.learn-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 48px;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.learn-item:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.learn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.learn-item span {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
}

/* Inspiration Section */
.inspiration {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.inspiration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.inspiration h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.inspiration p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

.inspiration-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Business Section */
.business {
    padding: 80px 0;
    background: white;
}

.business h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.business-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 48px;
}

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

.business-item {
    text-align: center;
    padding: 24px 16px;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.business-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.business-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.business-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.business-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 0 16px;
    min-width: 350px;
}

.testimonial-rating {
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

.rating-summary {
    text-align: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.rating-summary strong {
    color: #1f2937;
    font-size: 18px;
    margin-right: 16px;
}

.rating-summary span {
    color: #6b7280;
    font-size: 16px;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.bonus-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 20px;
    background: #f59e0b;
    color: white;
    border-radius: 20px;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.bonus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.bonus-grid .bonus-card {
    flex: 0 1 280px;
    max-width: 280px;
}

.bonus-grid .bonus-card:nth-child(4),
.bonus-grid .bonus-card:nth-child(5) {
    margin-top: 20px;
}

.bonus-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.bonus-price {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 16px;
}

.bonus-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 32px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.bonus-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.bonus-free {
    background: #22c55e;
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: white;
}

.plans h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 80px;
    padding-top: 20px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

/* Force Master plan to appear first */
.plan-card.plan-featured {
    order: -1;
}

.plan-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

.plan-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* This rule is replaced by enhanced styling below */

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 8px 24px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
}

.plan-rating {
    font-size: 20px;
    margin: 12px 0;
    text-align: center;
    color: #fbbf24;
    display: block;
    z-index: 10;
    position: relative;
    padding: 4px 0;
}

.plan-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.plan-timer {
    background: #ef4444;
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.plan-image {
    margin: 16px 0;
    border-radius: 12px;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.plan-price {
    margin-bottom: 32px;
}

/* Reduz espaçamentos no pacote básico */
.plan-card:not(.plan-featured) .plan-price {
    margin-bottom: 20px;
}

.plan-card:not(.plan-featured) .plan-features {
    margin-bottom: 20px;
}

.plan-card:not(.plan-featured) .bonus-checklist {
    margin-bottom: 20px;
}

.plan-card:not(.plan-featured) {
    padding: 24px;
}

.plan-price .price-from {
    display: block;
    color: #ef4444;
    text-decoration: line-through;
    font-size: 16px;
    margin-bottom: 8px;
}

.plan-price .price-text {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
}

.plan-price .price-current {
    font-size: 48px;
    font-weight: 800;
    color: #22c55e;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.price-installment {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.price-cash {
    font-size: 16px;
    color: #6b7280;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    font-size: 16px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Bonus Checklist Styling */
.bonus-checklist {
    margin-bottom: 32px;
    text-align: left;
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.bonus-checklist h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.bonus-checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bonus-checklist li {
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
}

.bonus-checklist li:last-child {
    border-bottom: none;
}

/* Enhanced Master Plan Styling */
.plan-featured {
    border-color: #8b5cf6;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    transform: scale(1.08);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-width: 3px;
    will-change: transform;
    margin-top: 40px;
}

.plan-featured:hover {
    transform: scale(1.08) translateY(-6px);
    box-shadow: 0 25px 80px rgba(139, 92, 246, 0.4);
}

/* Desktop optimization for plans */
@media (min-width: 769px) {
    .plan-card .btn {
        align-self: center;
        width: fit-content;
        max-width: calc(100% - 20px);
        margin: 0 auto;
        display: inline-block;
        word-wrap: break-word;
        text-align: center;
        box-sizing: border-box;
        padding: 20px 24px;
        font-size: 16px;
        white-space: normal;
        line-height: 1.2;
    }
    
    .plan-card {
        justify-content: space-between;
        min-height: 600px;
    }
    
    .plan-featured {
        min-height: 650px;
    }
    
    .plans-grid {
        gap: 40px;
        padding: 0 20px;
    }
    
    /* Bonus cards desktop styling */
    .bonus-card {
        border-radius: 32px;
    }
    
    .bonus-grid .bonus-card img {
        border-radius: 20px !important;
        -webkit-border-radius: 20px !important;
        -moz-border-radius: 20px !important;
        overflow: hidden !important;
        clip-path: inset(0% round 20px) !important;
    }
}

/* Mobile responsiveness for plans */
@media (max-width: 480px) {
    .plan-featured {
        transform: scale(1.02);
        margin-top: 20px;
    }
    
    .plan-featured:hover {
        transform: scale(1.02) translateY(-4px);
    }
    
    .plans-grid {
        gap: 20px;
    }
}

.plan-featured .plan-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    font-size: 15px;
    padding: 10px 28px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.plan-featured h3 {
    color: #7c3aed;
    font-size: 28px;
}

.plan-featured .bonus-checklist {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #8b5cf6;
}

.plan-featured .bonus-checklist h4 {
    color: #7c3aed;
    font-size: 18px;
}

.plans-footer {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 60px;
    padding: 20px;
    background: #f0f9ff;
    border-radius: 16px;
}

.plans-footer p {
    color: #1e40af;
    font-weight: 600;
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background: #f0fdf4;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.guarantee h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.guarantee p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f9fafb;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer.open {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Instructor Section */
.instructor {
    padding: 80px 0;
    background: white;
}

.instructor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.instructor-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.instructor h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.instructor h3 {
    font-size: 24px;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 24px;
}

.instructor p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

.instructor .btn {
    margin-top: 24px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #1f2937;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 4px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}


/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        padding: 12px 0;
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .header-cta .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero {
        padding: 60px 0 40px;
        min-height: 70vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .price-block {
        justify-content: center;
        width: 100%;
    }
    
    .security-badges {
        justify-content: center;
    }
    
    .btn-large {
        font-size: 18px;
        padding: 20px 32px;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    .carousel-slide {
        min-width: 250px;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .inspiration-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        margin: 0 8px;
        min-width: 280px;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .bonus-card img {
        height: auto;
        object-fit: contain;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .plan-featured {
        transform: none;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 24px;
    }
}

/* Sales Notifications */
.sales-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.sales-notification {
    background: white;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px;
    margin-bottom: 12px;
    min-width: 280px;
    max-width: 320px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sales-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.sales-notification.hide {
    transform: translateX(100%);
    opacity: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.notification-content {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

.notification-name {
    font-weight: 500;
    color: #1f2937;
}

.notification-package {
    font-weight: 500;
    color: #22c55e;
}

@media (max-width: 768px) {
    .sales-notifications {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .sales-notification {
        max-width: none;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .price-current {
        font-size: 28px;
    }
    
    .btn-cta {
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .btn-large {
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .carousel-slide {
        min-width: 200px;
        margin-right: 16px;
    }
    
    .testimonial-card {
        min-width: 250px;
        padding: 24px 20px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card img {
        height: auto;
        object-fit: contain;
    }
    
    .plan-card {
        padding: 24px 20px;
    }
}

/* Desktop bonus images rounded corners - FORCE APPLY */
@media (min-width: 769px) {
    section.bonus .bonus-grid .bonus-card img {
        border-radius: 20px !important;
        -webkit-border-radius: 20px !important;
        -moz-border-radius: 20px !important;
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
        border-bottom-left-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
        overflow: hidden !important;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.faq-question:focus,
.whatsapp-float:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* Smooth animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}