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

:root {
    --primary-color: #333;
    --secondary-color: #ffc107;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #777;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --success-color: #28a745;
    --border-color: #e6e6e6;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --dark-blue-bg: #263a4d;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0;
}

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

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

.headline {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ddd;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ddd;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin-top: 10px;
}

.section-title.centered {
    text-align: center;
}

.section-title.centered:after {
    margin: 10px auto 0;
}

p {
    margin-bottom: 1.5rem;
}

/* Layout Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

/* Header / Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(51, 0, 0, 0.8), 0%, rgba(0, 0, 0,0.98) 100%),
                url('/homem-de-negocios-de-terno-com-chicote-de-couro-esta-sentado-em-uma-cadeira-enquanto-uma-pessoa-submissa-o-abraca_118086-3586.avif') center/cover no-repeat;
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-mockup {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.ebook-mockup:hover {
    transform: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(255,255,255,1) 100%);
    z-index: -1;
}

/* CTA Buttons */
.cta-button-container {
    margin: 2rem 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(51, 51, 51, 0.3);
}

.cta-button.large {
    padding: 18px 36px;
    font-size: 1.3rem;
}

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

.cta-button-container.centered {
    text-align: center;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 20px rgba(255, 193, 7, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
    }
}

.urgency-text {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Introduction Section */
.intro .container {
    background: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-placeholder {
    background: var(--primary-color);
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.video-placeholder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23333"/><path d="M30,20 L80,50 L30,80 Z" fill="white"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.play-button i {
    font-size: 30px;
    color: var(--primary-color);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-text {
    max-width: 80%;
    text-align: center;
    font-weight: 500;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.intro-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.intro-list li i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(51, 51, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-icon i {
    font-size: 30px;
}

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

/* Bonus Section */
.bonus {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
                url('homem-de-negocios-de-terno-com-chicote-de-couro-esta-sentado-em-uma-cadeira-enquanto-uma-pessoa-submissa-o-abraca_118086-3586.avif') center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding: 80px 40px;
}

.bonus-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.bonus-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Bonus Cards */
.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: var(--transition);
}

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

.bonus-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.bonus-icon i {
    font-size: 25px;
}

.bonus-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.bonus-value {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 15px;
    font-size: 1.1rem;
}

.bonus-header .section-title {
    color: white;
}

/* For Who Section */
.for-who.container {
    /* Specific styling for the container inside the for-who section if needed */
}

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

.persona {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.persona:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.persona-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(51, 51, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.persona-icon i {
    font-size: 25px;
}

.persona h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.98)),
                url('/homem-de-negocios-de-terno-com-chicote-de-couro-esta-sentado-em-uma-cadeira-enquanto-uma-pessoa-submissa-o-abraca_118086-3586.avif') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    color: #fff;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0,0,0.6);
    z-index:-1;
}

.testimonials .section-title, 
.trust-badge, 
.testimonial-card, 
.social-proof {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.trust-badge {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.trust-badge span {
    color: white;
    margin-left: 10px;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.testimonial-content {
    color: #333;
}

.testimonial-content h3 {
    color: #333;
}

/* Author Section */
.author-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.author-image {
    flex: 0 0 200px;
}

.author-content {
    flex: 1;
}

.author-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--secondary-color);
    color: var(--primary-color);
}

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

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

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
                url('/10002431.jpg') center/cover no-repeat;
    color: white;
}

.guarantee-box {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 30px;
    border: 2px dashed var(--secondary-color);
}

.guarantee-icon {
    font-size: 60px;
    color: var(--secondary-color);
}

.guarantee-content h2 {
    color: var(--primary-color);
}

.guarantee-content p {
    color: #333;
}

/* Pricing Section */
.pricing-box {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-content {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.pricing-value {
    margin-bottom: 20px;
}

.original-price {
    display: block;
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.current-price {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.installments {
    display: block;
    font-size: 1rem;
    color: var(--light-text);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--success-color);
}

.pricing-timer {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.pricing-timer h4 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 70px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
    color: var(--light-text);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    color: var(--light-text);
    font-size: 1.5rem;
}

/* Last Call Section */
.last-call {
    background: linear-gradient(135deg, #444 0%, #222 100%);
    color: white;
}

.last-call .section-title {
    color: white;
}

.last-call-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Social Proof Badges */
.social-proof {
    margin-top: 30px;
}

.social-badge-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.social-badge-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-badge {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    font-weight: 600;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-badge i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.social-badge .badge-text {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Header adjustments */
    .hero {
        background-position: left center;
        padding: 80px 0 60px;
    }

    .hero .container {
      flex-direction: column;
      text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-image {
        order: -1;
    }

    section {
        padding: 60px 0;
        text-align: center;
    }

    .headline {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .subheadline {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title:after {
        margin: 10px auto 0;
    }

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

    .pricing-box {
        padding: 30px 20px;
        margin: 0 auto;
    }

    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .pricing-content {
        flex-direction: column;
    }

    .benefits-grid,
    .personas,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        justify-content: center;
    }

    .guarantee-box {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }

    .guarantee-icon {
        margin-bottom: 20px;
    }

    .ebook-mockup {
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .social-badge-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }

    .headline {
        font-size: 1.6rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .bonus-cards {
        flex-direction: column;
    }

    .countdown-item {
         min-width: 50px;
         padding: 8px;
    }

    .countdown-number {
        font-size: 1.3rem;
    }
}