/* Cookies Lucrativos 4 em 1 - Custom Styles */

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --light-brown: #D2B48C;
    --beige: #F5F5DC;
    --gold: #DAA520;
    --light-gold: #FFD700;
    --white: #FFFFFF;
    --cream: #FFFDD0;
    --dark-text: #2C1810;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --warning-yellow: #ffc107;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--cream);
    scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--primary-brown);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.btn-cta {
    background: linear-gradient(45deg, var(--primary-brown), var(--secondary-brown));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: linear-gradient(45deg, var(--secondary-brown), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
    color: var(--white);
}

.btn-purchase {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    font-size: 1.2rem;
    padding: 18px 35px;
}

.btn-final {
    background: linear-gradient(45deg, var(--primary-brown), var(--gold));
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(218, 165, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0);
    }
}

/* ===== SECTIONS ===== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
    padding: 40px 0;
}

.hero-headline {
    font-size: 3rem;
    color: var(--primary-brown);
    font-weight: 700;
    line-height: 1.2;
}

.hero-headline .highlight {
    color: var(--gold);
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.3rem;
    color: var(--dark-text);
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    margin: 2rem 0;
}

.hero-main-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.hero-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.3);
}

.cookies-logo-container {
    text-align: center;
}

.cookies-4x1-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
    transition: all 0.3s ease;
}

.cookies-4x1-logo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.25);
}

/* Legacy styles for fallback - kept for compatibility */
.hero-icon {
    font-size: 8rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.cookie-stack {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.cookie-stack i {
    font-size: 2rem;
    color: var(--gold);
}

/* Problem Section */
.problem-section {
    background-color: var(--white);
}

.pain-points {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.pain-point {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.pain-point .fa-clock {
    color: #FFA500 !important; /* Orange for clock */
}

.pain-point .fa-money-bill-wave {
    color: #28a745 !important; /* Green for money */
}

.pain-point .fa-heart-broken {
    color: #dc3545 !important; /* Red for heart */
}

.solution-hint {
    font-size: 1.2rem;
    color: var(--primary-brown);
    font-weight: 600;
}

/* Agitation Section */
.agitation-section {
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--beige) 100%);
}

.questions .question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.warning-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--danger-red);
}

.opportunity-text {
    font-size: 1.3rem;
    color: var(--primary-brown);
}

/* Solution Section */
.solution-section {
    background-color: var(--white);
}

.benefit-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    border: 2px solid var(--primary-brown);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
    border-color: var(--gold);
}

.benefit-card i {
    font-size: 2rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    border: 2px solid var(--primary-brown);
    transition: all 0.3s ease;
}

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

.testimonial-avatar {
    display: flex;
    justify-content: center;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.testimonial-photo:hover {
    transform: scale(1.1);
    border-color: var(--light-gold);
    box-shadow: 0 6px 18px rgba(139, 69, 19, 0.3);
}

.testimonial-name {
    margin-top: 15px;
    color: var(--primary-brown);
    font-size: 0.9rem;
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: var(--gold);
}

.stars {
    color: var(--gold);
}

.stars i {
    font-size: 1.2rem;
}


/* New Pricing Cards Section */
.pricing-section {
    background: linear-gradient(135deg, #F5F5DC 0%, #FAF0E6 100%);
    padding: 4rem 0;
}

.pricing-section .section-title {
    color: var(--primary-brown);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.pricing-cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    border: 2px solid #E8E8E8;
    flex: 1;
    max-width: 400px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
}

.pricing-card.premium {
    border: 3px solid #D4AF37;
    background: linear-gradient(135deg, #FFFEF7 0%, #FFF8DC 100%);
    transform: scale(1.05);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-title.premium {
    color: #B8860B;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
    display: block;
}

.new-price {
    color: var(--primary-brown);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
}

.new-price.premium {
    color: #B8860B;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #28a745;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pricing-features .bonus i {
    color: #FF6B35;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pricing-btn.basic {
    background: linear-gradient(135deg, #D2B48C 0%, #BC9A6A 100%);
    color: white;
}

.pricing-btn.basic:hover {
    background: linear-gradient(135deg, #BC9A6A 0%, #D2B48C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(188, 154, 106, 0.4);
}

.pricing-btn.premium {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
}

.pricing-btn.premium:hover {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.social-proof {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.guarantee-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.guarantee-info i {
    color: #28a745;
}

@media (max-width: 768px) {
    .pricing-cards-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .pricing-card.premium {
        transform: none;
    }
    
    .pricing-card.premium:hover {
        transform: translateY(-8px);
    }
    
    .pricing-section .section-title {
        font-size: 2rem;
    }
}

/* Testimonials Images Section */
.testimonials-images-section {
    background-color: var(--cream);
}

.testimonials-images-section .section-title {
    color: var(--primary-brown);
}

.testimonial-image-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid var(--primary-brown);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.testimonial-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--secondary-brown);
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-brown);
}

@media (max-width: 768px) {
    .testimonial-image-card {
        margin-bottom: 2rem;
    }
}

/* Decision Section */
.decision-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.decision-section .section-title {
    color: var(--primary-brown);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.decision-cards-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.decision-card {
    flex: 1;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.decision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.decision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.decision-card-negative {
    background-color: #ffe5e5;
    border-color: #cc0000;
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.1);
}

.decision-card-negative:hover {
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.2);
}

.decision-card-positive {
    background-color: #e6fff2;
    border-color: #1e8449;
    box-shadow: 0 8px 25px rgba(30, 132, 73, 0.1);
}

.decision-card-positive:hover {
    box-shadow: 0 15px 40px rgba(30, 132, 73, 0.2);
}

.decision-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-brown);
}

.decision-card-negative .decision-card-title {
    color: #cc0000;
}

.decision-card-positive .decision-card-title {
    color: #1e8449;
}

.decision-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.decision-cta {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.decision-cta:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    color: white;
}

.decision-cta:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .decision-cards-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .decision-card {
        padding: 2rem;
    }
    
    .decision-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .decision-card-title {
        font-size: 1.2rem;
    }
    
    .decision-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Content Section */
.content-section {
    background-color: var(--white);
}

.content-module {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-brown);
}

.content-module:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.module-icon {
    background: linear-gradient(45deg, var(--primary-brown), var(--gold));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.module-icon i {
    font-size: 2rem;
    color: var(--white);
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.bonus-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    border: 2px solid var(--light-brown);
    transition: all 0.3s ease;
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
    border-color: var(--gold);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.bonus-title {
    color: var(--primary-brown);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.bonus-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    color: var(--white);
}

.offer-card {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.offer-title {
    color: var(--white);
    font-size: 2.2rem;
}

.offer-list li, .bonus-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.4;
}

.price-anchor {
    margin: 2rem 0;
}

.old-price {
    text-decoration: line-through;
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 600;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
}

.new-price {
    font-size: 5rem;
    font-weight: 700;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-green {
    background: #2ecc71;
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-green:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
    color: white;
    text-decoration: none;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: var(--cream);
}

.guarantee {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    color: var(--cream);
}

/* FAQ Section */
.faq-section {
    background-color: var(--cream);
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid var(--light-brown);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--beige);
    color: var(--primary-brown);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-brown);
    color: var(--primary-brown);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(139, 69, 19, 0.25);
}

.accordion-body {
    background-color: var(--white);
    color: var(--dark-text);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--white);
}

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

.final-cta-section .lead {
    color: var(--cream);
}

/* Footer */
.footer {
    background-color: var(--primary-brown);
    color: var(--cream);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile First Approach */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-main-image {
        max-width: 300px;
    }
    
    .cookies-4x1-logo {
        max-width: 280px;
    }
    
    .hero-icon {
        font-size: 6rem;
    }
    
    .cookie-stack {
        gap: 1rem;
    }
    
    .cookie-stack i {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .offer-card {
        padding: 2rem;
    }
    
    .content-module,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-photo {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .hero-main-image {
        max-width: 250px;
    }
    
    .cookies-4x1-logo {
        max-width: 220px;
    }
    
    .hero-icon {
        font-size: 4rem;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn-cta:focus,
.accordion-button:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Loading animation for better UX */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
