/* LinearNotion-Inspired Direct Response Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #191919;
    background-color: #FFFFFF;
    font-weight: 400;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 10px;
}

/* Typography */
h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #000;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    text-align: center;
}

p {
    margin-bottom: 15px;
}

.subtitle {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    background-color: #000000;
    padding: 15px 0;
    margin-bottom: 0;
}

.logo {
    color: #ffffff;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 1px;
    text-align: center;
}

.logo span {
    color: #ff0000;
}

/* Subheader */
.subheader {
    background-color: #f7f7f7;
    text-align: center;
    padding: 8px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.subheader-text {
    font-size: 13px;
    font-weight: 500;
    color: #484848;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 15px 10px;
    background-color: #ffffff;
    margin-bottom: 0;
}

/* Divider line */
.divider {
    height: 1px;
    background: #eee;
    margin: 15px auto;
    width: 80%;
    max-width: 400px;
}

/* Product image */
.product-single {
    text-align: center;
    margin: 0 auto 20px;
    padding: 10px;
    background: transparent;
    border-radius: 0;
}

.product-image {
    position: relative;
}

.product-image img {
    max-width: 140px;
    height: auto;
    margin: 10px auto 20px;
    display: block;
    box-shadow: none;
}

.product-base {
    width: 80px;
    height: 8px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 80%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    filter: blur(2px);
}

/* Product CTA button */
.product-cta {
    text-align: center;
    margin: 10px auto 30px;
}

.product-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.product-button:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.product-button i {
    color: #fff;
    margin-left: 6px;
}

/* Benefits section */
.benefits-container {
    background-color: #ffffff;
    padding: 20px 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.benefits-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    transition: none;
}

.benefit-item:hover {
    transform: none;
}

.check-icon {
    color: #000000;
    font-size: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 2px;
}

.check-icon i {
    font-size: 10px;
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
}

/* Key features */
.key-features-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.key-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0;
    padding: 0;
}

.feature {
    text-align: center;
    padding: 15px;
    background-color: transparent;
    border-radius: 0;
    transition: none;
}

.feature:hover {
    transform: none;
}

.feature-icon {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000000;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* CTA section */
.cta {
    text-align: center;
    background-color: transparent;
    padding: 30px 20px;
    border-radius: 0;
    margin-top: 40px;
    margin-bottom: 40px;
}

.cta-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-subtitle {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 50px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin: 0 auto 40px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    margin-left: 8px;
    font-size: 14px;
}

.cta-button:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #555555;
    margin-bottom: 10px;
}

.badge i {
    margin-right: 5px;
    color: #000000;
    font-size: 10px;
}

/* Payment methods */
.payment-methods {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 30px 20px;
}

.payment-methods-title {
    margin-bottom: 25px;
    font-weight: 600;
}

.payment-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 15px;
}

.payment-img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 30px 0;
    text-align: center;
    color: #ffffff;
    margin-top: 50px;
}

.footer-links {
    margin-bottom: 15px;
    font-size: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.copyright {
    font-size: 11px;
    color: #999;
    margin-top: 15px;
}

/* Legal disclaimer */
.legal-disclaimer {
    margin-top: 40px;
    padding: 20px 15px;
    border-top: 1px solid #eee;
}

.disclaimer-content {
    font-size: 10px;
    color: #777;
    line-height: 1.6;
    text-align: justify;
}

.disclaimer-content p {
    margin-bottom: 12px;
}

/* Media query para ajustar a versão mobile observada na imagem */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    h1 {
        font-size: 24px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .hero {
        padding: 10px;
    }
    
    .divider {
        margin: 10px auto;
    }
    
    .product-single {
        margin: 0 auto 15px;
        padding: 5px;
    }
    
    .product-image img {
        max-width: 180px;
        margin: 5px auto;
    }
    
    section {
        padding: 10px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .feature {
        padding: 8px 0;
    }
    
    .benefits {
        gap: 15px;
    }
    
    .cta-button {
        font-size: 13px;
        height: 45px;
        margin-bottom: 30px;
    }
    
    .trust-badges {
        margin-top: 30px;
    }
    
    .legal-disclaimer {
        margin-top: 30px;
        padding: 15px 10px;
    }
    
    .disclaimer-content {
        font-size: 9px;
        line-height: 1.5;
    }
    
    .product-cta {
        margin: 5px auto 25px;
    }
    
    .product-button {
        font-size: 14px;
        padding: 10px 24px;
    }
} 