/* Base Styles */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --secondary-color: #FF9800;
    --secondary-dark: #F57C00;
    --secondary-light: #FFE0B2;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --light-bg: #F9F9F9;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 15px;
}

/* Utility Classes */
.centered {
    text-align: center;
}

.highlight {
    font-weight: 600;
    color: var(--primary-dark);
}

.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-medium);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 20px;
    border-radius: var(--border-radius-lg);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-dark);
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 600;
}

.nav-list a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.main-headline {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.subheadline {
    font-size: 20px;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-group {
    margin-bottom: 20px;
}

.price-tag {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: var(--text-medium);
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.badge {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-medium);
}

.badge i {
    margin-right: 5px;
    color: var(--primary-color);
}

.ebook-mockup {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Problem & Solution */
.problem-solution {
    padding: 80px 0;
    background-color: var(--white);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.benefit-description {
    font-size: 16px;
    color: var(--text-medium);
}

/* About Author */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.author-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.author-name {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.credential {
    display: flex;
    align-items: center;
    background-color: var(--primary-light);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
}

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

/* What You'll Get */
.what-you-get {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.guide-preview {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.product-title {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.product-format {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.product-features li {
    display: flex;
    margin-bottom: 20px;
}

.product-features i {
    color: var(--success-color);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.product-features strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.product-features p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.transformation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
}

.results-disclaimer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-light);
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.bonus-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.bonus-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.bonus-title {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.bonus-description {
    flex-grow: 1;
    color: var(--text-medium);
}

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

.total-value {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.value-text {
    font-size: 18px;
    margin-bottom: 5px;
}

.value-amount {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 24px;
}

.included-text {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
    background-color: var(--white);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--primary-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

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

.guarantee-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-medium);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background-color: var(--primary-light);
}

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

.cta-headline {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.value-proposition {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.value-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.value-item:last-child {
    border-bottom: none;
}

.value-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.value-price {
    font-size: 20px;
    font-weight: 700;
}

.value-free {
    background-color: var(--success-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    margin-left: 10px;
}

.total-item {
    padding-top: 15px;
}

.total-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.today-price {
    font-size: 18px;
}

.final-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.final-buttons {
    margin-bottom: 30px;
}

.payment-methods {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-icon {
    height: 30px;
    margin: 0 5px;
}

.hotmart-payment {
    max-width: 300px;
    margin-bottom: 15px;
}

.hotmart-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f8f8;
    padding: 8px 15px;
    border-radius: var(--border-radius-md);
    margin-top: 10px;
}

.hotmart-logo {
    height: 20px;
}

.guarantee-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 600;
}

.urgency-message {
    font-style: italic;
    color: var(--text-medium);
}

/* Email Capture */
.email-capture {
    padding: 60px 0;
    background-color: var(--white);
}

.capture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.capture-headline {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.capture-description {
    color: var(--text-medium);
}

.capture-form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 15px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.footer-nav {
    display: flex;
    list-style: none;
    margin: 0;
}

.footer-nav li {
    margin: 0 15px;
}

.footer-nav a {
    color: var(--white);
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer-policies {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-policies a {
    font-size: 14px;
    color: var(--text-light);
}

.footer-policies a:hover {
    color: var(--primary-light);
}

.hotmart-footer {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.hotmart-footer a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 28px;
    }
    
    .main-headline {
        font-size: 36px;
    }
    
    .hero-content,
    .section-content,
    .about-content,
    .product-showcase,
    .capture-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        margin: 15px 0;
    }
    
    .nav-list li {
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .main-headline {
        font-size: 30px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list li {
        margin: 5px 10px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-headline {
        font-size: 26px;
    }
    
    .btn-xl {
        padding: 16px 32px;
        font-size: 18px;
    }
}
