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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: #1e3a8a;
}

h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
}

h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button, .cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button-large {
    font-size: 1.3rem;
    padding: 25px 50px;
    text-align: center;
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button:hover, .cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706, #b45309);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

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

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.hero h2 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 25px;
    font-weight: 600;
}

.subheadline {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-cta {
    margin-top: 30px;
}

.guarantee-small {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f9fafb;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.problem-image img {
    width: 100%;
    border-radius: 15px;
}

.problem-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-text {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.consequences {
    margin-top: 60px;
}

.consequences h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.consequence-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.consequence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

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

.solution-list {
    list-style: none;
    margin: 30px 0;
}

.solution-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.solution-list i {
    color: #10b981;
    margin-right: 15px;
    font-size: 1.3rem;
}

.solution-highlight {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 25px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #065f46;
    text-align: center;
    border-left: 4px solid #10b981;
}

.solution-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Product Section */
.product {
    padding: 80px 0;
    background: #f9fafb;
}

.product-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.situation-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.situation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.situation-item h4 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.total-scripts {
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 30px;
    border-radius: 20px;
    font-size: 1.3rem;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

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

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: #f9fafb;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #1e3a8a;
}

.step-content p {
    margin-bottom: 15px;
    color: #6b7280;
}

.time-tag {
    background: #10b981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.total-time {
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.total-time p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f9fafb;
}

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

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
}

.benefit-card h3 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.benefit-list {
    list-style: none;
    text-align: left;
}

.benefit-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #6b7280;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

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

.testimonial-info h3 {
    color: #1e3a8a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 0;
    background: #f9fafb;
}

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

.module-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-10px);
}

.module-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 25px;
    text-align: center;
}

.module-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
}

.module-header h3 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
}

.module-content {
    padding: 25px;
}

.module-list {
    list-style: none;
    margin-bottom: 20px;
}

.module-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #6b7280;
}

.module-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.module-value {
    text-align: center;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 10px;
}

.module-value p {
    margin: 0;
    font-weight: 600;
    color: #1e3a8a;
}

.module-value span {
    font-size: 1.3rem;
    color: #f59e0b;
}

/* Bonus Section */
.bonus-section {
    margin-top: 60px;
}

.bonus-section h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 40px;
}

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

.bonus-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-card {
    padding: 30px;
    text-align: center;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.bonus-card h4 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.bonus-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.bonus-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #6b7280;
    font-size: 0.95rem;
}

.bonus-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.bonus-value {
    text-align: center;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 10px;
}

.bonus-value p {
    margin: 0;
    font-weight: 600;
    color: #1e3a8a;
}

.bonus-value span {
    font-size: 1.2rem;
    color: #10b981;
}

.total-value {
    text-align: center;
    margin-top: 40px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 30px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.total-value span {
    font-size: 2.5rem;
    color: #fbbf24;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: white;
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.offer-header h2 {
    margin-bottom: 20px;
}

.comparison-table {
    max-width: 600px;
    margin: 0 auto 40px;
    background: #f9fafb;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-header {
    background: #1e3a8a;
    color: white;
    padding: 20px;
    text-align: center;
}

.comparison-header h3 {
    margin: 0;
    color: white;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-left: 4px solid #10b981;
}

.comparison-option p {
    margin: 0;
    font-weight: 500;
}

.comparison-price p {
    margin: 0;
    font-weight: 700;
    color: #1e3a8a;
}

.comparison-item.highlight .comparison-price p {
    color: #065f46;
    font-size: 1.2rem;
}

.offer-benefits {
    text-align: center;
    margin: 40px 0;
}

.offer-benefits-list {
    list-style: none;
    max-width: 400px;
    margin: 20px auto 0;
}

.offer-benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.offer-benefits-list i {
    color: #10b981;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 6px solid #f59e0b;
}

.urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.urgency-header i {
    color: #d97706;
    font-size: 2rem;
    margin-right: 15px;
}

.urgency-header h3 {
    color: #92400e;
    margin: 0;
    text-align: center;
}

.counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.counter {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1;
}

.counter p {
    margin: 0;
    font-weight: 600;
    color: #92400e;
}

.urgency-note {
    text-align: center;
    font-weight: 600;
    color: #92400e;
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

.guarantee-image img {
    width: 120px;
    height: 120px;
}

.guarantee-text h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
}

.guarantee-highlight {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    color: #065f46;
    margin: 15px 0;
    border-left: 4px solid #10b981;
}

.guarantee-conclusion {
    font-weight: 700;
    color: #1e3a8a;
    font-size: 1.1rem;
    margin: 0;
}

/* Main CTA */
.main-cta {
    text-align: center;
    margin: 50px 0;
}

.cta-benefits {
    margin-top: 25px;
}

.cta-benefits p {
    margin: 8px 0;
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-benefits i {
    color: #10b981;
}

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

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #1e3a8a;
    color: white;
    padding: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #1e40af;
}

.faq-question h3 {
    margin: 0;
    color: white;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 25px;
    background: white;
}

.faq-answer p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

/* Final Argument Section */
.final-argument {
    padding: 80px 0;
    background: white;
}

.final-argument-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-argument-content h2 {
    margin-bottom: 30px;
}

.final-argument-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 25px;
    border-radius: 15px;
    font-weight: 700;
    color: #92400e;
    font-size: 1.4rem;
    margin: 30px 0;
    border-left: 4px solid #f59e0b;
}

.question-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 30px 0;
}

.secondary-testimonials {
    margin: 50px 0;
}

.secondary-testimonials h3 {
    margin-bottom: 30px;
}

.secondary-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.secondary-testimonial {
    background: #f9fafb;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.secondary-testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: #374151;
}

.secondary-testimonial span {
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.9rem;
}

.final-cta {
    margin-top: 40px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content h3 {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-content p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #9ca3af;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content,
    .problem-content,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .consequences-grid,
    .situations-grid,
    .benefits-grid,
    .testimonials-grid,
    .modules-container,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button-large {
        font-size: 1.1rem;
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .cta-button,
    .cta-button-large {
        font-size: 1rem;
        padding: 15px 25px;
    }
    
    .step-number,
    .benefit-icon,
    .situation-icon,
    .consequence-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .module-icon,
    .bonus-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility classes */
.text-center {
    text-align: center;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

