/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a1f3a;
    --primary-gold: #d4af37;
    --secondary-gold: #f4d03f;
    --accent-blue: #2c3e7e;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --white: #ffffff;
    --red: #e74c3c;
    --green: #27ae60;
    --gradient-dark: linear-gradient(135deg, #1a1f3a 0%, #2c3e7e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--red);
    text-decoration: line-through;
}

.highlight-gold {
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-image {
    position: relative;
}

.ebook-mockup {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.ebook-mockup:hover {
    transform: translateY(-10px) scale(1.02);
}

.image-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 15px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: rotate 20s linear infinite;
}

.image-badge i {
    font-size: 24px;
    margin-bottom: 5px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-cta {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255,255,255,0.2);
}

.price-box {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.old-price span {
    text-decoration: line-through;
    color: var(--red);
}

.current-price {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.current-price span {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
}

.installment {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.savings {
    background: var(--green);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.cta-button i {
    margin-right: 10px;
}

.pulse {
    animation: pulse 2s infinite;
}

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

.guarantee {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.guarantee i {
    color: var(--primary-gold);
    margin-right: 8px;
}

/* Seção Problema */
.problem-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.section-title.white {
    color: var(--white);
}

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

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-red {
    font-size: 2rem;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.problem-text {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
}

.problem-text p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Seção Solução */
.solution-section {
    padding: 80px 20px;
    background: var(--gradient-dark);
    color: var(--text-light);
}

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

.solution-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.icon-gold {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.solution-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.solution-item p {
    opacity: 0.9;
    line-height: 1.7;
}

.story-box {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 50px;
    margin-top: 50px;
}

.story-box h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-gold);
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Sobre os Ensinamentos */
.about-section {
    padding: 80px 20px;
    background: white;
}

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

.about-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.about-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* O Que Você Vai Aprender */
.learn-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 50px;
    font-weight: 600;
}

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

.learn-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-gold);
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-width: 8px;
}

.learn-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.learn-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.learn-card p {
    color: #666;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Para Quem É */
.target-section {
    padding: 80px 20px;
    background: white;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.target-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.target-card:hover {
    transform: scale(1.03);
}

.target-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.target-card p {
    line-height: 1.6;
}

/* Bônus Section */
.bonus-section {
    padding: 80px 20px;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.bonus-header {
    text-align: center;
    margin-bottom: 60px;
}

.bonus-value {
    font-size: 1.8rem;
    margin: 20px 0;
    font-weight: 700;
}

.bonus-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.bonus-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
}

.bonus-card.featured {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.2);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-badge.gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.bonus-icon {
    font-size: 3.5rem;
    margin: 20px 0;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.bonus-card p {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.bonus-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.bonus-price span {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

/* Prova Social */
.social-proof {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

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

.proof-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.proof-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.proof-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-dark);
    color: white;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.testimonial-box i {
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    padding-left: 60px;
}

.testimonial-author {
    text-align: right;
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* Garantia */
.guarantee-section {
    padding: 80px 20px;
    background: var(--gradient-dark);
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 6rem;
    color: var(--primary-gold);
}

.guarantee-content h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.guarantee-subtext {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.guarantee-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: var(--gradient-dark);
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.pricing-breakdown {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.pricing-breakdown h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 3px solid var(--primary-gold);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.pricing-offer {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    text-align: center;
}

.offer-badge {
    background: var(--red);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.pricing-offer h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.offer-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.price-currency {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-top: 10px;
}

.price-value {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.price-cents {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-top: 10px;
}

.offer-installment {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.offer-savings {
    background: var(--green);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 30px;
}

.offer-savings i {
    color: var(--secondary-gold);
}

.cta-button.large {
    width: 100%;
    padding: 25px;
    font-size: 1.1rem;
}

.cta-button.extra-large {
    width: 100%;
    padding: 30px;
    font-size: 1.3rem;
}

.offer-benefits {
    margin: 30px 0;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.benefit i {
    color: var(--green);
    font-size: 1.3rem;
}

.security-badges {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #eee;
    font-size: 0.95rem;
    color: #666;
}

.security-badges i {
    color: var(--green);
    margin: 0 8px;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid var(--red);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: white;
}

.urgency-box i {
    color: var(--red);
    font-size: 1.5rem;
    margin-right: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Final */
.final-cta {
    padding: 80px 20px;
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.final-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.final-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.final-offer-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 50px;
}

.final-offer-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
}

.final-checklist {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.final-checklist li {
    padding: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.final-checklist i {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.final-price-box {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}

.final-old-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: var(--red);
    margin-bottom: 10px;
}

.final-current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.final-installment {
    font-size: 1.2rem;
    opacity: 0.9;
}

.final-guarantee {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.final-guarantee i {
    color: var(--primary-gold);
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.final-guarantee p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.final-warning {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background: rgba(231, 76, 60, 0.2);
    border: 2px solid var(--red);
    border-radius: 15px;
}

.final-warning p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section i {
    color: var(--primary-gold);
    margin-right: 10px;
}

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

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Responsividade */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .ebook-mockup {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .pricing-comparison {
        grid-template-columns: 1fr;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .final-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .image-badge {
        width: 90px;
        height: 90px;
        font-size: 11px;
    }
    
    .testimonial-box {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        padding-left: 40px;
    }
    
    .final-offer-box {
        padding: 30px 20px;
    }
    
    .price-value {
        font-size: 3.5rem;
    }
}