/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: left;
}

.hero-pricing {
    margin: 30px 0;
}

.price-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #28a745;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.per-bottle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
}

.shipping-info i {
    font-size: 1.2em;
}


.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 500px;
    text-align: center;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.placeholder-image {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
}

.cta-button i {
    font-size: 1.2em;
}

.cta-subtext {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

.benefits-cta,
.lifestyle-cta,
.guarantee-cta {
    text-align: center;
    margin-top: 40px;
}

.benefits-cta .cta-subtext {
    color: #555;
}

.lifestyle-cta .cta-subtext {
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-cta .cta-subtext {
    color: #555;
}

/* Pricing Highlight Section */
.pricing-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid #28a745;
    position: relative;
}

.pricing-card::before {
    content: 'LIMITED TIME';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.price-display {
    margin: 30px 0;
}

.price-display .original-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 10px;
}

.price-display .current-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #28a745;
    display: block;
    margin-bottom: 5px;
}

.price-display .per-bottle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.savings {
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}


.pricing-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature i {
    color: #28a745;
    font-size: 1.2em;
}

.feature span {
    font-weight: 500;
    color: #2c3e50;
}

.pricing-btn {
    margin-top: 30px;
    font-size: 1.4rem;
    padding: 20px 40px;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefits-list i {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
}


/* Lifestyle Section */
.lifestyle {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.lifestyle h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

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

.lifestyle-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
}


/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: white;
}

.guarantee h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}


.guarantee p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.company-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #3498db;
}

.company-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.company-info i {
    margin-right: 10px;
    color: #3498db;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.disclaimer p {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        flex: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-img {
        max-width: 350px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-pricing {
        text-align: center;
    }
    
    .price-highlight {
        justify-content: center;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-header h2 {
        font-size: 1.8rem;
    }
    
    .price-display .current-price {
        font-size: 2.8rem;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .lifestyle h2,
    .guarantee h2,
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .hero-img {
        max-width: 300px;
    }
    
    .cta-button.large {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .price-display .current-price {
        font-size: 2.2rem;
    }
    
    .pricing-header h2 {
        font-size: 1.6rem;
    }
}
