/* Font Declarations */
@font-face {
    font-family: 'Montserrat';
    src: url('assets/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('assets/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* General Styles */
:root {
    --primary-color: #e75d82;
    --primary-light: #f7a1b6;
    --primary-dark: #c23c5e;
    --secondary-color: #8b3a58;
    --accent-color: #ffd6e1;
    --text-color: #333333;
    --light-text: #ffffff;
    --bg-color: #fff9fa;
    --light-bg: #ffffff;
    --dark-bg: #f8e6ea;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --highlight-red: #e74c3c;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, #f9d423 0%, #e65c00 100%);
    --mobile-spacing: 1rem;
    --mobile-btn-size: 3.5rem;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat !important;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved Tap Target Sizes for Mobile */
a, button, input[type="submit"], input[type="button"], .faq-question {
    touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
}

h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    content-visibility: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.highlight {
    color: var(--primary-color);
}

/* Header */
header {
    padding: 1rem 0;
    background-color: var(--light-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Section */
.hero {
    background-color: var(--accent-color);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 5rem;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 214, 225, 0.92) 0%, rgba(231, 93, 130, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.limited-offer-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(230, 92, 0, 0.3);
    animation: pulseBadge 2s infinite;
}

.limited-offer-badge i {
    margin-right: 8px;
    animation: flameFlicker 1.5s infinite;
}

.hero h1 {
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 3.2rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-number {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.7rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.book-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin-top: 2rem;
    position: relative;
    border: 1px solid rgba(231, 93, 130, 0.2);
}

.book-visual {
    position: relative;
    margin-bottom: 2rem;
}

.book-cover {
    max-width: 100%;
}

.book-cover:hover {
    transform: scale(1.03) rotate(1deg);
}

.book-ribbon {
    position: absolute;
    top: 30px;
    right: -10px;
    background: var(--highlight-red);
    color: white;
    padding: 5px 15px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    font-size: 1rem;
}

.book-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: transparent rgba(0, 0, 0, 0.3) transparent transparent;
}

.book-info {
    text-align: center;
    max-width: 600px;
}

.emotional-hook {
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.highlight-red {
    color: var(--highlight-red);
    font-weight: 700;
}

.promise {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.bold-text {
    font-weight: 700;
}

.quick-benefits {
    background-color: rgba(231, 93, 130, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.benefit-item {
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-primary {
    margin-top: 1.5rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px dashed var(--primary-light);
}

.countdown-mini {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

#countdown-mini {
    color: var(--highlight-red);
    font-weight: 700;
}

.price-tag {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.price-tag .original {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #999;
    position: relative;
}

.price-tag .original::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 2px;
    background-color: var(--highlight-red);
    left: -5%;
    top: 50%;
    transform: rotate(-8deg);
}

.price-tag .current {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pulse-button {
    animation: pulseButton 2s infinite;
}

.guarantee-mini, .secure-payment {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-mini i, .secure-payment i {
    margin-right: 6px;
    color: var(--primary-color);
}

.secure-payment {
    margin-top: 0.5rem;
}

.social-proof {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ratings {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonial-mini {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes flameFlicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(231, 93, 130, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Maintain the responsiveness for the hero section */
@media (min-width: 768px) {
    .book-preview {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
    }

    .book-visual {
        margin-right: 2.5rem;
        margin-bottom: 0;
    }

    .book-info {
        text-align: left;
    }

    .emotional-hook, .quick-benefits, .cta-primary {
        text-align: left;
    }

    .price-tag, .guarantee-mini, .secure-payment {
        justify-content: flex-start;
    }
}

.current-price {
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: -0.5px;
}

#cor-fundo{
    box-shadow: 0 10px 30px rgb(0 0 0 / 27%);
}

@media (max-width: 767px) {
    header {
        padding: 0.8rem 0;
    }
    
    .logo {
        max-width: 120px;
    }
    
    /* Mobile Hero Section Improvements */
    .hero {
        padding: 1.5rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    
    .limited-offer-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    /* Mobile Book Preview */
    .book-preview {
        padding: 1.5rem 1.2rem;
        margin-top: 1.5rem;
        flex-direction: column;
    }
    
    
    .book-ribbon {
        font-size: 0.85rem;
        padding: 4px 12px;
        top: 20px;
        right: -8px;
    }
    
    .book-info {
        text-align: center;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .promise {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .quick-benefits {
        background-color: rgba(231, 93, 130, 0.08);
        padding: 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 8px;
    }
    
    .benefit-item {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    
    .cta-primary {
        padding: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .price-tag {
        margin-bottom: 1rem;
    }
    
    .price-tag .original {
        font-size: 1.2rem;
    }
    
    .price-tag .current {
        font-size: 2.2rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .social-proof {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .stars {
        font-size: 1.3rem;
    }
    
    .testimonial-mini {
        font-size: 0.95rem;
    }
    
    /* Mobile Benefits Section */
    section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
        padding-bottom: 12px;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
    }
    
    .benefits-grid {
        gap: 1.2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        transform: none !important; /* Prevent hover animations on mobile */
    }
    
    .benefit-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    /* Mobile Pain Points */
    .pain-point {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .pain-point p {
        font-size: 0.95rem;
    }
    
    .solution h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    /* Mobile Chapters */
    .chapters {
        gap: 1.2rem;
    }
    
    .chapter {
        transform: none !important; /* Prevent hover animations on mobile */
    }
    
    .chapter-number {
        min-width: 60px;
        font-size: 1.5rem;
    }
    
    .chapter-content {
        padding: 1.2rem;
    }
    
    .chapter-content h3 {
        font-size: 1.1rem;
    }
    
    .chapter-content p {
        font-size: 0.9rem;
    }
    
    /* Mobile Testimonials */
    .testimonials-slider {
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .testimonial::before {
        font-size: 4rem;
        top: -5px;
        left: 10px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-img {
        width: 50px;
        height: 50px;
    }
    
    /* Mobile Pricing */
    .price-header {
        padding: 1.5rem;
    }
    
    .price-header h3 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .price-content {
        padding: 2rem 1.5rem;
    }
    
    .original-price {
        font-size: 1.3rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    /* Mobile FAQ */
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.95rem;
    }
    
    /* Mobile Final CTA */
    .countdown p {
        font-size: 1.1rem;
    }
    
    .timer {
        gap: 0.7rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-block {
        min-width: 65px;
        padding: 0.8rem;
    }
    
    .time-block span:first-child {
        font-size: 1.7rem;
    }
    
    /* Mobile Footer */
    footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        max-width: 100px;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a {
        margin-bottom: 0.6rem;
    }
    
    /* Mobile Modal */
    .modal-content {
        margin: 3% auto;
        padding: 1.5rem;
        width: 90%;
    }
    
    .close {
        top: 0.8rem;
        right: 1.2rem;
    }
    
    .modal h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input {
        padding: 12px;
        font-size: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .summary {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
}

/* Small Phone Optimization */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .book-preview {
        padding: 1.2rem 1rem;
    }

    
    .tagline {
        font-size: 1.2rem;
    }
    
    .price-tag .current {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

/* Improved Touch Elements - Fixed CTA for Mobile */
@media (max-width: 767px) {
    /* Add sticky CTA button at bottom of screen */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 10px 15px;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
        text-align: center;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .mobile-sticky-cta.visible {
        transform: translateY(0);
    }
    
    .mobile-sticky-cta .btn {
        width: 100%;
        padding: 12px 20px;
        margin-bottom: 0;
        font-size: 1rem;
    }
    
    .mobile-sticky-cta .quick-price {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 8px;
    }
    
    .mobile-sticky-cta .quick-price .original {
        font-size: 0.9rem;
        text-decoration: line-through;
        color: #999;
        margin-right: 8px;
    }
    
    .mobile-sticky-cta .quick-price .current {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-dark);
    }
    
    /* Add space at the bottom to prevent content from being hidden behind the fixed CTA */
    body {
        padding-bottom: 70px;
    }
    
    /* Enlarge touch targets for better mobile usability */
    .btn, 
    .faq-question,
    .footer-links a,
    .footer-social a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-links a,
    .form-group label {
        min-height: 32px;
        display: flex;
        align-items: center;
    }
    
    /* Optimize spacing between sections */
    section + section {
        padding-top: 2rem;
    }
    
    /* Better spacing for content */
    .container {
        width: 92%;
        padding: 0 10px;
    }
}

/* Animation Optimization for Mobile */
@media (max-width: 767px) {
    /* Optimize animations for mobile - reduce motion for better performance */
    @media (prefers-reduced-motion: no-preference) {
        .pulse-button {
            animation: pulseButtonMobile 2s infinite;
        }
        
        @keyframes pulseButtonMobile {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.03);
            }
            100% {
                transform: scale(1);
            }
        }
    }
}

/* New thumb scroll for image galleries on mobile */
.mobile-thumb-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 15px;
}

.mobile-thumb-scroll::-webkit-scrollbar {
    display: none;
}

@media (max-width: 767px) {
    .testimonials-slider {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        padding-bottom: 20px;
        margin-bottom: -20px;
    }
    
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial {
        flex: 0 0 85%;
        white-space: normal;
        margin-right: 15px;
    }
    
    /* Add indicator dots for scrollable content */
    .scroll-indicator {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--primary-light);
        margin: 0 4px;
        opacity: 0.5;
    }
    
    .scroll-dot.active {
        opacity: 1;
        background-color: var(--primary-color);
    }
}

/* Enhanced Loading Performance */
img {
    max-width: 100%;
    height: auto;
    content-visibility: auto;
}

/* Better form interaction on mobile */
@media (max-width: 767px) {
    .form-group input {
        -webkit-appearance: none;
        border-radius: 8px;
        font-size: 16px; /* Prevent iOS zoom on focus */
    }
    
    .form-group input:focus {
        box-shadow: 0 0 0 2px rgba(231, 93, 130, 0.3);
    }
}

/* New CSS for accordion animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

@media (max-width: 767px) {
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
}

/* Benefits Section */
.benefits {
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* Pain Points Section */
.pain-points {
    background-color: var(--dark-bg);
    background-image: url('assets/pattern.png');
    background-size: 200px;
    background-repeat: repeat;
    position: relative;
}

.pain-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.pain-points .container {
    position: relative;
    z-index: 2;
}

.pain-points-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pain-point {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.pain-point i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.solution {
    text-align: center;
    margin-top: 3rem;
}

.solution h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Book Content Section */
.book-content {
    background-color: var(--light-bg);
}

.chapters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.chapter {
    display: flex;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.chapter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.chapter-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.chapter-content {
    padding: 1.5rem;
}

.chapter-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--accent-color);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 214, 225, 0.4) 0%, rgba(231, 93, 130, 0.3) 100%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    max-width: 350px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-light);
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-bg);
}

.price-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 2rem;
    text-align: center;
}

.price-header h3 {
    color: var(--light-text);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.price-content {
    padding: 3rem 2rem;
}

.price-info {
    text-align: center;
    margin-bottom: 2rem;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.savings {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--light-text);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-container {
    text-align: center;
}

.guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.guarantee i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq {
    background-color: var(--dark-bg);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--accent-color);
    position: relative;
    background-image: url('assets/cta-bg.png');
    background-size: cover;
    background-position: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 93, 130, 0.9) 0%, rgba(139, 58, 88, 0.9) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-text);
}

.cta-content h2 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.countdown {
    margin: 2.5rem 0;
}

.countdown p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.time-block {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    min-width: 80px;
    border-radius: 8px;
}

.time-block span {
    display: block;
    text-align: center;
}

.time-block span:first-child {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 93, 130, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(231, 93, 130, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 93, 130, 0);
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 120px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--light-text);
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--light-bg);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

.modal h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 93, 130, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.half {
    flex: 1;
}

.summary {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.summary-item, .summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-total {
    font-weight: 700;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    font-size: 1.2rem;
}

/* Form Validation Errors */
.form-group input.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.success-message {
    text-align: center;
    padding: 2rem 1rem;
}

.success-message i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .book-preview {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
    }

    .book-cover {
        margin-right: 2.5rem;
        margin-bottom: 0;
    }

    .book-info {
        text-align: left;
    }
}

@media (max-width: 767px) {
    section {
        padding: 3rem 0;
    }

    .benefit-card, .chapter, .testimonial {
        margin-bottom: 1.5rem;
    }

    .timer {
        flex-wrap: wrap;
    }

    .time-block {
        min-width: 70px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-links {
        align-items: center;
    }

    .form-row {
        flex-direction: column;
    }
}

/* Touch Feedback for Mobile */
.touch-active {
    transform: scale(0.98) !important;
    opacity: 0.9;
    transition: transform 0.1s, opacity 0.1s !important;
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .modal {
        height: -webkit-fill-available;
    }
    
    body {
        min-height: -webkit-fill-available;
    }
}

/* Safari input styling fixes */
@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        input[type="text"],
        input[type="email"],
        input[type="number"] {
            -webkit-appearance: none;
            border-radius: 8px;
        }
    }
}

/* Improve form security visual indicators */
.secure-payment i,
.guarantee-mini i {
    animation: securePulse 2s infinite;
}

@keyframes securePulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Add visual marker for required fields */
.form-group label::after {
    content: " *";
    color: var(--highlight-red);
} 