/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
}

.highlight {
    color: #FF6B00;
    font-weight: 900;
}

.section-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

/* Header e Menu de Navegação */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-small {
    height: 40px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #FF6B00;
    background-color: rgba(255, 107, 0, 0.1);
}

.cta-nav {
    background-color: #FF6B00;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}

.cta-nav:hover {
    background-color: #e65100;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 0 0 0 100%;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.headline-container {
    margin-bottom: 30px;
    position: relative;
}

.hero-badge {
    background-color: #FF6B00;
    color: white;
    font-weight: 900;
    font-size: 18px;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #222;
    text-transform: uppercase;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Container */
.video-container {
    max-width: 700px;
    margin: 0 auto 30px;
    width: 100%;
}

.video-placeholder {
    background-color: #000;
    border-radius: 8px;
    padding: 150px 20px;
    color: white;
    text-align: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

.video-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    color: #FF6B00;
}

.video-placeholder p {
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

/* CTA Primário */
.cta-primary {
    margin: 30px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #FF6B00;
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: #e65100;
    transform: translateY(-2px);
    color: white;
}

.cta-note {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Market Stats */
.market-stats {
    padding: 80px 0;
    background-color: #fff;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #FF6B00;
    margin-bottom: 10px;
}

.stat-item p {
    color: #555;
    font-size: 16px;
}

/* About Course */
.about-course {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.course-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
}

.about-highlights {
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.highlight-item i {
    color: #FF6B00;
    margin-right: 10px;
    font-size: 18px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.benefit-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 36px;
    color: #FF6B00;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    font-size: 15px;
}

/* Modules */
.modules {
    padding: 80px 0;
    background-color: #fff;
}

.modules-container {
    max-width: 800px;
    margin: 0 auto;
}

.module-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.module-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    position: relative;
}

.module-number {
    background-color: #FF6B00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.module-header h3 {
    flex: 1;
    font-size: 18px;
    color: #222;
}

.module-toggle {
    margin-left: 15px;
    color: #666;
    transition: transform 0.3s;
}

.module-item.active .module-toggle {
    transform: rotate(180deg);
}

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.module-item.active .module-content {
    max-height: 500px;
}

.module-list {
    padding: 20px;
    list-style-position: inside;
}

.module-list li {
    margin-bottom: 10px;
    color: #555;
}

/* Instructor */
.instructor {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.instructor-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.instructor-image {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.instructor-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.instructor-content {
    flex: 2;
    min-width: 300px;
}

.instructor-content h3 {
    font-size: 20px;
    color: #FF6B00;
    margin-bottom: 15px;
}

.instructor-content p {
    color: #555;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

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

.testimonial-content {
    padding: 20px;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #222;
}

/* Testimonial Video */
.testimonial-video {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-video h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 20px;
}

.video-testimonial-container {
    width: 100%;
}

.video-testimonial-placeholder {
    background-color: #000;
    border-radius: 8px;
    padding: 120px 20px;
    color: white;
    text-align: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

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

.video-testimonial-placeholder i {
    font-size: 50px;
    margin-bottom: 10px;
    color: #FF6B00;
}

/* Bonus */
.bonus {
    padding: 80px 0;
    background-color: #fff9f5;
}

.bonus-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.bonus-icon {
    font-size: 40px;
    color: #FF6B00;
    min-width: 60px;
    text-align: center;
}

.bonus-content h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
}

.bonus-content p {
    color: #555;
    margin-bottom: 10px;
    font-size: 15px;
}

.bonus-value {
    font-weight: 700;
    color: #FF6B00;
}

.bonus-total {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.bonus-total span {
    color: #FF6B00;
    font-size: 24px;
}

/* Guarantee */
.guarantee {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.guarantee-icon {
    font-size: 60px;
    color: #4682b4;
    min-width: 80px;
    text-align: center;
}

.guarantee-text h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
}

.guarantee-text p {
    color: #555;
    margin-bottom: 10px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background-color: #FF6B00;
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header .section-title {
    color: white;
}

.pricing-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.price-regular, .price-special {
    padding: 20px;
}

.price-regular p:first-child, .price-special p:first-child {
    margin-bottom: 10px;
}

.price-crossed {
    text-decoration: line-through;
    font-size: 24px;
    opacity: 0.7;
}

.price-highlight {
    font-size: 36px;
    font-weight: 900;
    margin: 10px 0;
}

/* Countdown */
.countdown-container {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    color: white;
    margin: 30px auto;
    max-width: 600px;
    text-align: center;
}

.countdown-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 5px;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 28px;
    font-weight: 700;
}

.countdown-item span:last-child {
    font-size: 14px;
    text-transform: uppercase;
}

/* Spots Container */
.spots-container {
    max-width: 500px;
    margin: 30px auto;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.spots-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.spots-number {
    font-size: 24px;
    color: #FFD700;
}

.progress-bar {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #FFD700;
    border-radius: 10px;
}

/* Enrollment */
.enrollment-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.form-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

/* Form Styles */
.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #FF6B00;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

.submit-btn {
    background-color: #FF6B00;
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.submit-btn:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: #777;
    font-size: 14px;
}

/* Payment Methods */
.payment-methods {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
}

.payment-methods p {
    margin-bottom: 15px;
    font-size: 18px;
}

.payment-icons {
    font-size: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    margin-top: 20px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    color: #222;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background-color: #fff;
}

.faq-answer p {
    color: #555;
    padding-bottom: 20px;
}

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

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background-color: #FF6B00;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav-list a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav-list a:hover {
    color: #FF6B00;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-contact, .footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4, .footer-social h4 {
    color: #FF6B00;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ddd;
}

.footer-contact i {
    margin-right: 10px;
    color: #FF6B00;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ddd;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #FF6B00;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF6B00;
}

.copyright {
    color: #777;
    font-size: 14px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.floating-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FF6B00;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-button:hover {
    background-color: #e65100;
    transform: translateY(-5px);
    color: white;
}

.floating-button i {
    font-size: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.close-button:hover {
    color: #333;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 20px;
}

.modal p {
    margin-bottom: 20px;
    color: #555;
}

.modal-highlight {
    background-color: #fff9f5;
    padding: 15px;
    border-left: 4px solid #FF6B00;
    text-align: left;
    margin: 20px 0;
}

.modal-button {
    background-color: #FF6B00;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-button:hover {
    background-color: #e65100;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Highlight Form */
.highlight-form {
    animation: highlight-pulse 2s;
}

@keyframes highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-list {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 8px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: relative;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: white;
        width: 200px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .pricing-comparison {
        flex-direction: column;
        gap: 15px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top, .footer-middle {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-nav-list {
        justify-content: center;
    }
    
    .floating-button span {
        display: none;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .video-placeholder {
        padding: 100px 20px;
    }
    
    .video-placeholder i {
        font-size: 40px;
    }
    
    .benefit-card, .module-item, .testimonial, .bonus-item, .faq-item {
        margin-bottom: 15px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
}
