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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 16px rgba(255, 140, 0, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 24px rgba(255, 140, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 16px rgba(255, 140, 0, 0.3);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 16px rgba(0, 200, 81, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 24px rgba(0, 200, 81, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 16px rgba(0, 200, 81, 0.3);
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: #253144;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

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

.alert-bar {
    background-color: #D70000;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.alert-bar p {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.hero {
    background-color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.shield-icon {
    width: 42px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shield-icon svg {
    width: 100%;
    height: 100%;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #253144;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
}

.hero .subtitle {
    font-size: 26px;
    color: #253144;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero .subtitle strong {
    font-weight: 700;
    color: #253144;
}

.product-mockup {
    margin: 40px 0;
    text-align: center;
}

.product-image {
    max-width: 780px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.mockup-container {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.ebook-stack {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.ebook {
    position: relative;
    transition: transform 0.3s;
}

.ebook-left {
    transform: rotate(-8deg) translateY(10px);
}

.ebook-center {
    transform: scale(1.1);
    z-index: 3;
}

.ebook-right {
    transform: rotate(8deg) translateY(10px);
}

.ebook-cover {
    width: 140px;
    height: 200px;
    background: linear-gradient(145deg, #1a2744, #0d1526);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.ebook-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.ebook-cover-main {
    width: 160px;
    height: 220px;
}

.ebook-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
    z-index: 1;
}

.ebook-cover-main .ebook-title {
    font-size: 16px;
}

.ebook-image {
    font-size: 50px;
    z-index: 1;
}

.ebook-cover-main .ebook-image {
    font-size: 60px;
}

.document-pages {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    opacity: 0.2;
    z-index: 1;
}

.mockup-caption {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.cta-button {
    display: block;
    background-color: #00C851;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 22px 43px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 200, 81, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse-green 2s ease-in-out infinite;
    white-space: nowrap;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 200, 81, 0.4);
    animation: none;
}

.cta-button-large {
    font-size: 22px;
    padding: 24px 48px;
    width: 100%;
    max-width: 500px;
}

.pain-section {
    background-color: #fff;
    padding: 60px 20px;
}

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

.pain-emoji-image {
    width: 170px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pain-emoji-header {
        margin-bottom: 20px;
    }
    
    .pain-emoji-image {
        width: 130px;
    }
}

.pain-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.pain-photo {
    flex-shrink: 0;
    margin-right: 10px;
}

.child-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f0f0, #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pain-content {
    flex: 1;
}

.pain-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #253144;
}

.highlight-red {
    color: #D70000;
    font-weight: bold;
}

.pain-list-red {
    list-style: none;
    margin-bottom: 5px;
}

.pain-list-red li {
    font-size: 26px;
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.x-icon {
    color: #D70000;
    font-size: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.same-thing {
    font-size: 26px;
    color: #666;
    margin-bottom: 5px;
}

.worst-part {
    font-size: 26px;
    color: #666;
    margin-bottom: 0;
}

.worst-part strong {
    color: #253144;
    font-weight: 700;
}

.time-to-change {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 30px;
    color: #253144;
}

.guide-description {
    max-width: 1215px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 26px;
    line-height: 1.6;
}

.guide-description p {
    margin-bottom: 15px;
}

.guide-description em {
    font-style: italic;
}

.guide-description strong {
    color: #253144;
    font-weight: 700;
}

.book-icon-text {
    font-weight: 600;
    color: #253144;
}

.numbered-list-blue {
    list-style: none;
    max-width: 1080px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(473px, 1fr));
    gap: 12px;
}

.numbered-list-blue li {
    font-size: 26px;
    padding-left: 40px;
    position: relative;
    color: #666;
}

.number-badge {
    position: absolute;
    left: 0;
    background-color: #4A90E2;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.attack-real,
.response-armored {
    text-align: center;
    font-size: 16px;
    margin: 15px 0;
    color: #666;
}

.attack-real strong,
.response-armored strong {
    color: #253144;
}

.bible-quote {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    border-left: 4px solid #D4AF37;
    background-color: #f9f9f9;
}

.bible-quote p {
    font-style: italic;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.bible-quote cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.cta-with-cross {
    display: block;
    max-width: 400px;
    width: fit-content;
    margin: 30px auto 0;
    text-align: center;
}

.for-who {
    background-color: #F5EAD3;
    padding: 60px 20px;
}

.white-box {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    max-width: 1080px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.white-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.check-list-green li {
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.check-green {
    color: #00C851;
    position: absolute;
    left: 0;
    font-size: 28px;
    font-weight: bold;
}

.for-who-new {
    background: linear-gradient(180deg, #C19A6B 0%, #F5DEB3 50%, #C19A6B 100%);
    padding: 60px 20px;
}

.ebook-showcase {
    text-align: center;
    margin-bottom: 40px;
}

.ebook-display {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

@media (max-width: 400px) {
    .ebook-display {
        gap: 15px;
    }
    
    .ebook-left-tilt,
    .ebook-right-tilt {
        transform: rotate(-8deg) translateY(10px);
    }
    
    .ebook-right-tilt {
        transform: rotate(8deg) translateY(10px);
    }
    
    .ebook-center-main {
        transform: scale(1.05);
    }
}

.ebook-item {
    position: relative;
}

.ebook-left-tilt {
    transform: rotate(-15deg) translateY(20px);
}

.ebook-center-main {
    transform: scale(1.15);
    z-index: 3;
}

.ebook-right-tilt {
    transform: rotate(15deg) translateY(20px);
}

.ebook-mini-cover {
    width: 120px;
    height: 170px;
    background: linear-gradient(145deg, #1a2744, #0d1526);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    position: relative;
    overflow: hidden;
}

.ebook-mini-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.ebook-main {
    width: 140px;
    height: 190px;
    padding: 15px 12px;
}

.ebook-mini-title {
    font-size: 11px;
    font-weight: 800;
    color: #D4AF37;
    text-align: center;
    line-height: 1.1;
    z-index: 1;
}

.ebook-main .ebook-mini-title {
    font-size: 13px;
}

.ebook-mini-subtitle {
    font-size: 6px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    z-index: 1;
    margin-top: 4px;
}

.ebook-main .ebook-mini-subtitle {
    font-size: 7px;
}

.ebook-mini-image {
    font-size: 40px;
    z-index: 1;
    margin: 8px 0;
}

.ebook-main .ebook-mini-image {
    font-size: 50px;
}

.ebook-mini-author {
    font-size: 7px;
    color: #D4AF37;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

.ebook-main .ebook-mini-author {
    font-size: 8px;
}

.document-pages-new {
    font-size: 100px;
    opacity: 0.15;
    margin-top: -30px;
}

.ebook-caption {
    font-size: 11px;
    color: #333;
    font-style: italic;
    margin-top: 8px;
}

.white-box-new {
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    max-width: 878px;
    margin: 0 auto 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.section-title-new {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #253144;
}

.intro-text {
    font-size: 26px;
    color: #253144;
    margin-bottom: 20px;
    font-weight: 500;
}

.check-list-green-new {
    list-style: none;
    text-align: left;
}

.check-list-green-new li {
    font-size: 15px;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #333;
    line-height: 1.5;
}

.check-green-new {
    color: #00C851;
    position: absolute;
    left: 0;
    font-size: 22px;
    font-weight: bold;
}

.what-you-receive {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin: 50px 0 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(338px, 1fr));
    gap: 25px;
    max-width: 1485px;
    margin: 0 auto 40px;
}

.bonus-card-new {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.card-icon-new {
    font-size: 70px;
    margin-bottom: 20px;
}

.audio-icon {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 20px;
}

.whatsapp-icon {
    background: #25D366;
    border-radius: 20px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 20px;
}

.card-title-new {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #253144;
    line-height: 1.3;
    min-height: 60px;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cta-button-new {
    display: block;
    background-color: #00C851;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 22px 43px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 200, 81, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    animation: pulse-green 2s ease-in-out infinite;
    white-space: nowrap;
}

.cta-button-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 200, 81, 0.4);
    animation: none;
}

.bonus-section {
    background-color: #fff;
    padding: 60px 20px;
}

.bonus-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

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

.bonus-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #253144;
}

.bonus-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.testimonials {
    background-color: #fff;
    padding: 60px 20px;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

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

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #253144;
}

.offer {
    background-color: #fff;
    padding: 60px 20px;
}

.offer h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.offer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-mockup-small {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.mockup-placeholder-small {
    display: inline-block;
}

.book-small {
    font-size: 80px;
    display: inline-block;
    margin: 0 -15px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.offer-details {
    flex: 1;
    min-width: 300px;
}

.offer-list {
    list-style: none;
    margin-bottom: 30px;
}

.offer-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

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

.old-price {
    font-size: 24px;
    color: #D70000;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.current-price {
    font-size: 56px;
    font-weight: 800;
    color: #00C851;
}

.testimonials-new {
    background-color: #f5f5f5;
    padding: 60px 20px;
}

.testimonials-title-new {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.4;
    color: #253144;
}

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

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #999;
    border: none;
    width: auto;
    height: auto;
    font-size: 48px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.carousel-btn:hover {
    color: #666;
}

.prev-btn {
    left: -50px;
}

.next-btn {
    right: -50px;
}

@media (max-width: 768px) {
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(338px, 1fr));
    gap: 30px;
    max-width: 1485px;
    margin: 0 auto;
}

.testimonial-new {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.quote-mark {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 40px;
    color: #4A90E2;
    line-height: 1;
}

.quote-mark-end {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 40px;
    color: #4A90E2;
    line-height: 1;
}

.testimonial-photo-new {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ddd, #bbb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 20px auto 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

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

.testimonial-img-contain {
    object-fit: contain;
    object-position: center;
}

.testimonial-text-new {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 100px;
}

.testimonial-name-new {
    font-size: 15px;
    font-weight: 700;
    color: #253144;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #4A90E2;
}

.cta-button-testimonials {
    display: block;
    background-color: #00C851;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 22px 43px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 200, 81, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    animation: pulse-green 2s ease-in-out infinite;
    white-space: nowrap;
}

.cta-button-testimonials:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 200, 81, 0.4);
    animation: none;
}

.offer-new {
    background-color: #3E2723;
    padding: 60px 20px;
}

.offer-title-new {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    white-space: nowrap;
    letter-spacing: 2px;
    margin-left: auto;
    margin-right: auto;
}

.offer-box {
    background-color: #fff;
    max-width: 878px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 36px);
    border-radius: 15px;
    border: 3px dashed #ccc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-box + .offer-box {
    margin-top: 30px;
}

.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.card-mockup-image {
    width: 100%;
    max-width: 325px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.phone-mockup {
    font-size: 120px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.ebook-badge {
    position: absolute;
    background: linear-gradient(145deg, #1a2744, #0d1526);
    border-radius: 8px;
    padding: 10px;
    max-width: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.badge-top {
    font-size: 10px;
    font-weight: 800;
    color: #D4AF37;
    text-align: center;
}

.badge-subtitle {
    font-size: 5px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-top: 3px;
}

.books-mockup {
    display: flex;
    gap: 10px;
}

.book-mini {
    font-size: 60px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.offer-caption {
    font-size: 11px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-bottom: 25px;
}

.offer-list-new {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.offer-list-new li {
    font-size: 26px;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #333;
    line-height: 1.5;
}

.check-new {
    color: #00C851;
    position: absolute;
    left: 0;
    font-size: 22px;
    font-weight: bold;
}

.pricing-new {
    text-align: center;
    margin-bottom: 25px;
}

.old-price-new {
    font-size: 31px;
    color: #D70000;
    margin-bottom: 5px;
    font-weight: bold;
}

.strikethrough {
    text-decoration: line-through;
}

.price-label {
    font-size: 20px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

.current-price-new {
    font-size: 24px;
    font-weight: 700;
    color: #00C851;
    margin-bottom: 0;
}

.price-big {
    font-size: 64px;
    font-weight: 800;
}

.cta-button-offer {
    display: block;
    background-color: #FF8C00 !important;
    color: #fff !important;
    font-size: 32px;
    font-weight: 700;
    padding: 30px 58px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5) !important;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    width: fit-content;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.cta-button-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 140, 0, 0.6) !important;
    animation: none;
}

.payment-info {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

.payment-methods-img {
    display: block;
    max-width: 280px;
    height: auto;
    margin: 15px auto;
}

.urgency-text {
    font-size: 14px;
    font-weight: 700;
    color: #D70000;
    text-align: center;
    margin-top: 5px;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-icon {
    font-size: 32px;
    opacity: 0.7;
}

.approval-text {
    font-size: 12px;
    color: #555;
    text-align: center;
    line-height: 1.5;
}

.approval-text strong {
    color: #D70000;
    font-weight: 700;
}

.guarantee {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.guarantee-badge {
    margin-bottom: 30px;
}

.guarantee-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.badge-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #f0d989);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #253144;
}

.badge-number {
    font-size: 28px;
    font-weight: 800;
}

.badge-subtitle {
    font-size: 12px;
    font-weight: 600;
}

.guarantee h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #253144;
}

.guarantee p {
    font-size: 26px;
    max-width: 600px;
    margin: 10px auto;
    color: #333;
}

.faq {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.faq h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    white-space: nowrap;
    color: #253144;
}

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

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: #00C851;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: #666;
    font-size: 16px;
}

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

.about-publisher {
    background-color: #f0f0f0;
    padding: 60px 20px 40px;
}

.cta-button-top {
    display: block;
    background-color: #00C851;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 22px 43px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 200, 81, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    width: fit-content;
    margin: 0 auto 50px;
    animation: pulse-green 2s ease-in-out infinite;
    white-space: nowrap;
}

.cta-button-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 200, 81, 0.4);
    animation: none;
}

.about-content {
    background-color: #fff;
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    color: #253144;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text {
    font-size: 26px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: #253144;
    font-weight: 600;
}

.cta-button-bottom {
    display: block;
    background-color: #00C851;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 22px 43px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 200, 81, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    width: fit-content;
    margin: 20px auto 0;
    animation: pulse-green 2s ease-in-out infinite;
    white-space: nowrap;
}

.cta-button-bottom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 200, 81, 0.4);
    animation: none;
}

.about-footer {
    max-width: 1080px;
    margin: 40px auto 0;
    text-align: center;
    padding-top: 30px;
}

.footer-links {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

footer {
    background-color: #e0e0e0;
    padding: 30px 20px;
    text-align: center;
}

footer p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .alert-bar {
        height: auto;
        min-height: 45px;
        padding: 8px 15px;
    }
    
    .alert-bar p {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero-title-wrapper {
        margin-bottom: 8px;
        gap: 8px;
    }
    
    .hero h1 {
        font-size: 28px;
        white-space: nowrap;
        line-height: 1.1;
        letter-spacing: 0px;
    }
    
    .shield-icon {
        width: 26px;
        height: 36px;
    }
    
    .hero .subtitle {
        font-size: 21px;
        line-height: 1.4;
        margin-bottom: 30px;
    }
    
    .product-image {
        max-width: 100%;
    }
    
    .ebook-cover {
        width: 100px;
        height: 145px;
    }
    
    .ebook-cover-main {
        width: 115px;
        height: 165px;
    }
    
    .ebook-title {
        font-size: 11px;
    }
    
    .ebook-cover-main .ebook-title {
        font-size: 13px;
    }
    
    .ebook-image {
        font-size: 35px;
    }
    
    .ebook-cover-main .ebook-image {
        font-size: 45px;
    }
    
    .document-pages {
        font-size: 70px;
    }
    
    .pain-section {
        padding-top: 20px;
    }
    
    .pain-section .container {
        padding: 0 10px;
    }
    
    .pain-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .pain-photo {
        display: none;
    }
    
    .child-photo {
        display: none;
    }
    
    .pain-content {
        width: 100%;
    }
    
    .pain-content h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .pain-list-red {
        padding-left: 0;
        text-align: left;
    }
    
    .same-thing,
    .worst-part {
        text-align: left;
    }
    
    .time-to-change {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .numbered-list-blue {
        grid-template-columns: 1fr;
    }
    
    .pain-list-red li,
    .same-thing,
    .worst-part,
    .guide-description,
    .numbered-list-blue li,
    .intro-text,
    .offer-list-new li,
    .guarantee p,
    .about-text {
        font-size: 21px;
    }
    
    .x-icon {
        font-size: 21px;
    }
    
    .cta-button,
    .cta-button-new,
    .cta-button-testimonials,
    .cta-button-top,
    .cta-button-bottom {
        font-size: 22px;
        padding: 19px 32px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .cta-button-offer {
        background-color: #FF8C00 !important;
        box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5) !important;
        font-size: 24px;
        padding: 22px 27px;
        white-space: normal;
        width: auto;
        max-width: 378px;
        box-sizing: border-box;
        line-height: 1.4;
        border-radius: 12px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .current-price {
        font-size: 42px;
    }
    
    .offer-content {
        flex-direction: column;
    }
    
    .offer-title-new {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .pain-content h2 {
        font-size: 26px;
    }
    
    .section-title-new {
        font-size: 26px;
    }
    
    .what-you-receive {
        font-size: 26px;
    }
    
    .guarantee h2 {
        font-size: 26px;
    }
    
    .offer-new {
        padding: 60px 3px;
    }
    
    .offer-box {
        padding: 24px 10px;
        max-width: 99.5%;
    }
    
    .white-box-new {
        max-width: 99.5%;
        padding: 40px 25px;
    }
    
    .bonus-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 3px;
    }
    
    .faq-container {
        max-width: 99.5%;
        padding: 0 3px;
    }
    
    .about-content {
        max-width: 99.5%;
        padding: 50px 30px;
    }
    
    .container {
        padding: 0 6px;
    }
    
    .card-mockup-image {
        max-width: 304px;
        margin-bottom: 16px;
    }
    
    .product-showcase {
        margin-bottom: 12px;
    }
    
    .faq h2 {
        font-size: 26px;
    }
    
    .old-price-new {
        font-size: 31px;
        font-weight: bold;
    }
    
    .payment-info {
        font-weight: bold;
        text-align: center;
    }
    
    .urgency-text {
        font-weight: bold;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .alert-bar {
        min-height: 42px;
        padding: 6px 12px;
    }
    
    .alert-bar p {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .hero {
        padding: 30px 15px;
    }
    
    .hero-title-wrapper {
        margin-bottom: 6px;
        gap: 6px;
    }
    
    .hero h1 {
        font-size: 22px;
        letter-spacing: -0.5px;
        white-space: nowrap;
    }
    
    .shield-icon {
        width: 22px;
        height: 31px;
    }
    
    .hero .subtitle {
        font-size: 18px;
        line-height: 1.35;
        margin-bottom: 25px;
    }
    
    .product-image {
        max-width: 100%;
    }
    
    .pain-section {
        padding-top: 15px;
    }
    
    .pain-section .container {
        padding: 0 3px;
    }
    
    .pain-intro {
        flex-direction: column;
        gap: 0;
    }
    
    .pain-photo {
        display: none;
    }
    
    .child-photo {
        display: none;
    }
    
    .pain-content {
        width: 100%;
    }
    
    .pain-content h2 {
        font-size: 18px;
        text-align: center;
    }
    
    .pain-list-red {
        padding-left: 0;
        text-align: left;
    }
    
    .same-thing,
    .worst-part {
        text-align: left;
    }
    
    .cta-button,
    .cta-button-new,
    .cta-button-testimonials,
    .cta-button-top,
    .cta-button-bottom {
        font-size: 19px;
        padding: 16px 27px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .cta-button-offer {
        background-color: #FF8C00 !important;
        box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5) !important;
        font-size: 22px;
        padding: 19px 24px;
        white-space: normal;
        width: auto;
        max-width: 351px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
        border-radius: 11px;
    }
    
    .offer-title-new {
        font-size: 22px;
        letter-spacing: 0.5px;
    }
    
    .pain-content h2 {
        font-size: 22px;
    }
    
    .section-title-new {
        font-size: 22px;
    }
    
    .what-you-receive {
        font-size: 22px;
    }
    
    .guarantee h2 {
        font-size: 22px;
    }
    
    .pain-list-red li,
    .same-thing,
    .worst-part,
    .guide-description,
    .numbered-list-blue li,
    .intro-text,
    .offer-list-new li,
    .guarantee p,
    .about-text {
        font-size: 18px;
    }
    
    .x-icon {
        font-size: 18px;
    }
    
    .cta-button,
    .cta-button-new,
    .cta-button-testimonials,
    .cta-button-top,
    .cta-button-bottom {
        font-size: 18px;
        padding: 15px 24px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .cta-button-offer {
        background-color: #FF8C00 !important;
        box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5) !important;
        white-space: normal;
        width: auto;
        max-width: 324px;
        padding: 18px 22px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .card-mockup-image {
        max-width: 270px;
        margin-bottom: 12px;
    }
    
    .offer-box {
        padding: 20px 16px;
        max-width: 99.5%;
    }
    
    .white-box-new {
        max-width: 99.5%;
        padding: 40px 20px;
    }
    
    .bonus-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 2px;
    }
    
    .faq-container {
        max-width: 99.5%;
        padding: 0 2px;
    }
    
    .about-content {
        max-width: 99.5%;
        padding: 50px 25px;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .faq h2 {
        font-size: 22px;
    }
    
    .old-price-new {
        font-size: 31px;
        font-weight: bold;
    }
    
    .payment-info {
        font-weight: bold;
        text-align: center;
    }
    
    .urgency-text {
        font-weight: bold;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 20px;
        letter-spacing: -0.8px;
    }
    
    .shield-icon {
        width: 20px;
        height: 28px;
    }
    
    .hero-title-wrapper {
        gap: 5px;
    }
    
    .pain-section .container {
        padding: 0 3px;
    }
    
    .pain-photo {
        display: none;
    }
    
    .child-photo {
        display: none;
    }
    
    .faq h2 {
        font-size: 20px;
    }
    
    .offer-box {
        padding: 18px 12px;
        max-width: 99.8%;
    }
    
    .white-box-new {
        max-width: 99.8%;
        padding: 35px 15px;
    }
    
    .bonus-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 1px;
    }
    
    .faq-container {
        max-width: 99.8%;
        padding: 0 1px;
    }
    
    .about-content {
        max-width: 99.8%;
        padding: 45px 20px;
    }
    
    .container {
        padding: 0 4px;
    }
    
    .cta-button,
    .cta-button-new,
    .cta-button-testimonials,
    .cta-button-top,
    .cta-button-bottom {
        font-size: 16px;
        padding: 14px 22px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .cta-button-offer {
        background-color: #FF8C00 !important;
        box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5) !important;
        white-space: normal;
        width: auto;
        max-width: 297px;
        padding: 16px 19px;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
        font-size: 19px;
        border-radius: 9px;
    }
    
    .offer-title-new {
        font-size: 20px;
        letter-spacing: 0px;
    }
    
    .pain-content h2 {
        font-size: 20px;
    }
    
    .section-title-new {
        font-size: 20px;
    }
    
    .old-price-new {
        font-size: 31px;
        font-weight: bold;
    }
    
    .payment-info {
        font-weight: bold;
        text-align: center;
    }
    
    .urgency-text {
        font-weight: bold;
        text-align: center;
    }
    
    .what-you-receive {
        font-size: 20px;
    }
    
    .guarantee h2 {
        font-size: 20px;
    }
    
    .pain-list-red li,
    .same-thing,
    .worst-part,
    .guide-description,
    .numbered-list-blue li,
    .intro-text,
    .offer-list-new li,
    .guarantee p,
    .about-text {
        font-size: 16px;
    }
    
    .x-icon {
        font-size: 16px;
    }
}

.sale-notification {
    position: fixed;
    top: 70px;
    left: 20px;
    background-color: #00C851;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.4);
    z-index: 9999;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-size: 15px;
    font-weight: 600;
    max-width: 300px;
}

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

.sale-notification .check-icon {
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sale-notification .check-icon svg {
    width: 14px;
    height: 14px;
    fill: #00C851;
}

@media (max-width: 768px) {
    .sale-notification {
        top: 60px;
        left: 10px;
        right: auto;
        max-width: calc(100% - 20px);
        font-size: 14px;
        padding: 10px 15px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 77px;
        height: 77px;
    }
}
