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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2E8B57 0%, #4A90E2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    flex: 1;
    min-width: 200px;
}

.credibility-badge {
    flex-shrink: 0;
}

.credibility-badge .badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E8B57;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #4A90E2;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: translateY(-5px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #2E8B57;
}

/* Outperforms Section */
.outperforms {
    padding: 4rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E8B57, #4A90E2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info strong {
    color: #2E8B57;
    display: block;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Science Section */
.science {
    padding: 4rem 0;
    background: white;
}

.science-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.science-facts {
    margin: 2rem 0;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.fact-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2E8B57;
    min-width: 80px;
}

.fact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.science-conclusion {
    font-weight: 500;
    color: #2E8B57;
    font-size: 1.1rem;
}

.science-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Timeline Section */
.timeline {
    padding: 4rem 0;
    background: #f8f9fa;
}

.timeline-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-header {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    background: linear-gradient(135deg, #2E8B57, #4A90E2);
    color: white;
    font-weight: 600;
}

.timeline-col {
    padding: 1.5rem;
    text-align: center;
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    border-bottom: 1px solid #eee;
}

.timeline-row:last-child {
    border-bottom: none;
}

.timeline-week {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #2E8B57;
    background: #f8f9fa;
}

.timeline-feel,
.timeline-shift {
    padding: 1.5rem;
}

.timeline-feel {
    border-right: 1px solid #eee;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.recommended {
    background: linear-gradient(135deg, #2E8B57, #4A90E2);
    color: white;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2E8B57;
}

.recommended .pricing-header h3 {
    color: white;
}

.pricing-supply {
    color: #666;
    margin-bottom: 1.5rem;
}

.recommended .pricing-supply {
    color: rgba(255,255,255,0.9);
}

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

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2E8B57;
}

.recommended .price-amount {
    color: white;
}

.price-per {
    display: block;
    font-size: 1rem;
    color: #666;
}

.recommended .price-per {
    color: rgba(255,255,255,0.9);
}

.price-savings {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 0.5rem;
}

.recommended .price-savings {
    color: #f39c12;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.feature {
    margin-bottom: 0.5rem;
    color: #555;
}

.recommended .feature {
    color: rgba(255,255,255,0.9);
}

.pricing-cta {
    background: linear-gradient(135deg, #2E8B57, #4A90E2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.pricing-cta:hover {
    transform: translateY(-2px);
}

.recommended .pricing-cta {
    background: white;
    color: #2E8B57;
}

.pricing-recommendation {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}

/* Guarantee Section */
.guarantee {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2E8B57, #4A90E2);
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.guarantee p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E8B57;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Warning Section */
.warning {
    padding: 4rem 0;
    background: white;
}

.warning-header {
    text-align: center;
    margin-bottom: 3rem;
}

.warning-header h2 {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-box {
    background: #fff5f5;
    border: 2px solid #e74c3c;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.warning-box h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.warning-box ul {
    margin-left: 1.5rem;
}

.fake-review {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.fake-review blockquote {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid #e74c3c;
    margin: 1rem 0;
    font-style: italic;
}

.fake-review cite {
    color: #666;
    font-size: 0.9rem;
}

.real-formula {
    background: #f0f8f0;
    border: 2px solid #2E8B57;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.real-formula h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

.real-formula ul {
    margin-left: 1.5rem;
}

.official-benefits {
    margin-bottom: 2rem;
}

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

.benefit {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
}

.comparison-table {
    margin-bottom: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.comparison-table th {
    background: linear-gradient(135deg, #2E8B57, #4A90E2);
    color: white;
    padding: 1rem;
    text-align: center;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.warning-cta {
    text-align: center;
    background: #fff5f5;
    padding: 2rem;
    border-radius: 15px;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2E8B57, #4A90E2);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.urgency-notice {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.cta-button.momentum {
    background: linear-gradient(135deg, #2E8B57, #4A90E2);
}

.cta-button.reshape {
    background: linear-gradient(135deg, #8e44ad, #3498db);
}

/* Footer */
.footer {
    background: white;
    padding: 3rem 0 1rem;
}

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

.footer .disclaimer h3 {
    color: #4A90E2;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.3rem;
        min-width: auto;
        flex: 1;
    }
    
    .credibility-badge .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        white-space: nowrap;
    }
    
    .video-wrapper {
        margin: 20px auto;
        padding-bottom: 56.25%; /* Mantém aspect ratio 16:9 */
    }
    
    .video-description {
        margin: 15px auto 0;
        padding: 15px;
    }
    
    .video-description h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .video-description p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .video-description li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .science-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-header,
    .timeline-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-col,
    .timeline-week,
    .timeline-feel,
    .timeline-shift {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 0 5px;
        gap: 0.3rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .credibility-badge .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-wrapper {
        margin: 15px auto;
        padding-bottom: 56.25%; /* Mantém aspect ratio 16:9 */
    }
    
    .video-description {
        margin: 10px auto 0;
        padding: 10px;
    }
    
    .video-description h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .video-description p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .video-description li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
}
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  max-width: 900px;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.video-description {
  width: 100%;
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
  padding: 20px;
}

/* Discrete CTA Section */
.discrete-cta {
    padding: 2rem 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff; /* Fundo branco */
    color: #333;          /* Texto escuro para contraste */
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #FF9800; /* Borda suave */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-size: 1.2rem;
	font-weight: bold;
	font-style: italic;
    font-weight: 500;
}

.cta-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.discrete-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #2E8B57 0%, #4A90E2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.discrete-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
    text-decoration: none;
    color: white;
}

/* Warning Section Styles */
.warning {
    padding: 4rem 0;
    background: #fff5f5;
    border: 2px solid #fed7d7;
}

.warning-title {
    color: #e53e3e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.warning-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.warning-box {
    background: white;
    border: 2px solid #fed7d7;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.warning-box h3 {
    color: #e53e3e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.warning-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.warning-box li {
    margin-bottom: 0.5rem;
    color: #555;
}

.warning-box h4 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
}

.warning-box blockquote {
    background: #f7fafc;
    border-left: 4px solid #e53e3e;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #555;
}

.authentic-box {
    background: #f0fff4;
    border: 2px solid #9ae6b4;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.authentic-box h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.authentic-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.authentic-box li {
    margin-bottom: 0.5rem;
    color: #555;
}

.benefits-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    color: #2E8B57;
    font-weight: 500;
}

.comparison-table {
    margin: 2rem 0;
}

.comparison-table h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #2E8B57 0%, #4A90E2 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.comparison-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.warning-cta {
    text-align: center;
    margin-top: 2rem;
}

.warning-cta p {
    margin-bottom: 1rem;
    color: #555;
}

.warning-text {
    color: #e53e3e;
    font-weight: 600;
    font-size: 1.1rem;
}

.official-website-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #2E8B57 0%, #4A90E2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
}

.official-website-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .discrete-cta {
        padding: 1.5rem 0;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .discrete-cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .warning-title {
        font-size: 1.5rem;
    }
    
    .warning-box,
    .authentic-box {
        padding: 1.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .official-website-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


/* New Purple Pricing Section */
.new-pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
    color: white;
}

.new-pricing .section-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.new-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.new-pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.new-pricing-card.basic {
    border-color: #F59E0B;
}

.new-pricing-card.best-value {
    border-color: #10B981;
    transform: scale(1.05);
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
}

.new-pricing-card.popular {
    border-color: #3B82F6;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.basic-badge {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: white;
}

.best-value-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.popular-badge {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
}

.package-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.best-value .package-info h3 {
    color: white;
}

.package-info p {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.best-value .package-info p {
    color: rgba(255, 255, 255, 0.9);
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
    min-height: 120px;
}

.product-image img {
    width: 60px;
    height: 80px;
    object-fit: contain;
}

.six-bottles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.six-bottles img {
    width: 45px;
    height: 60px;
}

.price-section {
    margin: 1.5rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #1F2937;
}

.best-value .price {
    color: white;
}

.per-bottle {
    display: block;
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 600;
    margin-top: 0.5rem;
}

.best-value .per-bottle {
    color: rgba(255, 255, 255, 0.9);
}

.savings {
    margin: 1rem 0;
}

.save-text {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}

.best-value .save-text {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #1F2937;
}

.features {
    margin: 1rem 0;
}

.feature-text {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.guarantee {
    margin: 1rem 0;
}

.guarantee-text {
    color: #6B7280;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.guarantee-text:before {
    content: "✓";
    color: #10B981;
    font-weight: 700;
}

.best-value .guarantee-text {
    color: rgba(255, 255, 255, 0.9);
}

.add-to-order {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #1F2937;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin: 1.5rem 0;
}

.add-to-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 1rem 0;
}

.payment-icons img {
    width: 35px;
    height: 22px;
    border-radius: 4px;
}

.total-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px dashed #E5E7EB;
}

.best-value .total-section {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.total-label {
    color: #6B7280;
    font-weight: 600;
}

.best-value .total-label {
    color: rgba(255, 255, 255, 0.9);
}

.total-crossed {
    color: #EF4444;
    text-decoration: line-through;
    font-weight: 600;
    margin-right: 0.5rem;
}

.total-price {
    color: #1F2937;
    font-weight: 800;
    font-size: 1.3rem;
}

.best-value .total-price {
    color: white;
}

.shipping {
    font-size: 0.9rem;
    color: #6B7280;
    margin-top: 0.5rem;
}

.shipping.free {
    color: #10B981;
    font-weight: 700;
}

.best-value .shipping {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-recommendation {
    text-align: center;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Responsive Design for New Pricing */
@media (max-width: 768px) {
    .new-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .new-pricing-card.best-value {
        transform: none;
    }
    
    .new-pricing .section-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .product-image img {
        width: 50px;
        height: 70px;
    }
    
    .six-bottles img {
        width: 35px;
        height: 50px;
    }
    
    .add-to-order {
        padding: 12px 30px;
        font-size: 1rem;
    }
}


/* Melhorias de Design - CTAs mais chamativos */
.cta-button, 
.discrete-cta a,
.pricing-cta,
.add-to-order {
    background: linear-gradient(135deg, #f39c12, #e74c3c) !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4) !important;
    transition: all 0.3s ease !important;
}

.cta-button:hover, 
.discrete-cta a:hover,
.pricing-cta:hover,
.add-to-order:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5) !important;
}

/* Zonas de contraste emocional */
.testimonial-section {
    background-color: #fff5f5 !important; /* Rosa claro */
    border-radius: 15px;
    padding: 3rem 2rem !important;
    margin: 3rem 0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.warning-section {
    background-color: #fff5f5 !important; /* Rosa claro */
    border-radius: 15px;
    padding: 3rem 2rem !important;
    margin: 3rem 0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.science-section {
    background-color: #f0f9ff !important; /* Azul claro */
    border-radius: 15px;
    padding: 3rem 2rem !important;
    margin: 3rem 0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

.timeline-section {
    background-color: #f0fff4 !important; /* Verde claro */
    border-radius: 15px;
    padding: 3rem 2rem !important;
    margin: 3rem 0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Melhor contraste nos textos */
p, li, td, th {
    color: #333 !important;
}

/* Seção Dr. Emma Clark */
.dr-emma-section {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 15px;
}

.dr-emma-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dr-emma-image {
    flex: 0 0 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dr-emma-image img {
    width: 100%;
    height: auto;
    display: block;
}

.dr-emma-content {
    flex: 1;
    min-width: 300px;
}

.dr-emma-content h2 {
    color: #2c7a7b;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.dr-emma-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.dr-emma-content strong {
    color: #2c7a7b;
}

/* Estilo para depoimentos com fotos */
.testimonial-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #4fd1c5;
}

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

.testimonial-content {
    flex: 1;
}

.testimonial-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2c7a7b;
}

.testimonial-content .meta {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
}

.testimonial-content p {
    margin-bottom: 0;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .dr-emma-container {
        flex-direction: column;
        text-align: center;
    }
    
    .dr-emma-image {
        margin: 0 auto;
    }
    
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* Dr. Emma Clark Section */
.dr-emma-section {
    background-color: #f8f4ff;
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dr-emma-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.dr-emma-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.dr-emma-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dr-emma-content {
    flex: 2;
    min-width: 300px;
}

.dr-emma-content h2 {
    color: #6a2c91;
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.dr-emma-content h3 {
    color: #6a2c91;
    font-size: 24px;
    margin: 30px 0 20px;
}

.dr-emma-content p {
    color: #333;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dr-emma-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.dr-emma-content li {
    color: #333;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.dr-emma-content .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff5f00, #e62e00);
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(230, 46, 0, 0.3);
    transition: all 0.3s ease;
}

.dr-emma-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 46, 0, 0.4);
}

/* Improved CTAs */
.cta-button, .add-to-order, .discrete-cta .btn {
    background: linear-gradient(135deg, #ff5f00, #e62e00) !important;
    color: white !important;
    font-weight: bold !important;
    box-shadow: 0 5px 15px rgba(230, 46, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.cta-button:hover, .add-to-order:hover, .discrete-cta .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(230, 46, 0, 0.4) !important;
}

/* Emotional Contrast Zones */
.testimonial-section, .science-section, .timeline-section {
    background-color: #f8f4ff;
    border-radius: 20px;
    padding: 60px 20px;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.warning-section {
    background-color: #fff0f0;
    border-radius: 20px;
    padding: 60px 20px;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Better Text Contrast */
p, li, .meta, .testimonial-content p {
    color: #333 !important;
}

h2, h3, h4, .section-title {
    color: #222 !important;
}

/* Responsive Design for Dr. Emma Section */
@media (max-width: 768px) {
    .dr-emma-container {
        flex-direction: column;
    }
    
    .dr-emma-image {
        margin-bottom: 30px;
    }
    
    .dr-emma-content h2 {
        font-size: 28px;
    }
    
    .dr-emma-content h3 {
        font-size: 22px;
    }
    
    .dr-emma-content p, .dr-emma-content li {
        font-size: 16px;
    }
    
    .dr-emma-content .cta-button {
        font-size: 18px;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
    }
}


/* Updated Guarantee Section */
.guarantee {
    background-color: #5d2e8c;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.guarantee h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #f8c9ff;
}

.guarantee-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.guarantee-seal {
    flex: 0 0 200px;
}

.guarantee-seal img {
    width: 100%;
    height: auto;
}

.guarantee-text {
    flex: 1;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.badge {
    width: 100px;
    height: 100px;
}

.badge img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .guarantee-flex {
        flex-direction: column;
    }
    
    .guarantee-seal {
        flex: 0 0 150px;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .certification-badges {
        flex-wrap: wrap;
    }
    
    .badge {
        width: 80px;
        height: 80px;
    }
}



/* Improved Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 4rem 0;
}

.guarantee-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guarantee-badge {
    display: inline-block;
}

.badge-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E8B57 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.checkmark {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.guarantee-badge h2 {
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.guarantee-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.guarantee-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.guarantee-text {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.guarantee-text h3 {
    color: #2E8B57;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guarantee-points {
    margin: 1.5rem 0;
}

.point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.point-icon {
    font-size: 1.1rem;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.point-text {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
}

.guarantee-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.certification-badges .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certification-badges .badge:hover {
    transform: translateY(-3px);
}

.certification-badges .badge img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Improved Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #2E8B57 0%, #1e5f3f 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
}

.cta-body {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    margin-bottom: 3rem;
}

.cta-text {
    text-align: left;
    margin-bottom: 2rem;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.urgency-box {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #FFC107;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.urgency-icon {
    font-size: 2rem;
}

.urgency-content h3 {
    color: #FFC107;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.urgency-content p {
    margin: 0;
    font-size: 1rem;
}

.main-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    text-align: center;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.button-text {
    display: block;
    font-size: 1.2rem;
}

.button-subtext {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-icon {
    font-size: 1.1rem;
}

/* Scientific References Section */
.scientific-references {
    background: #f8f9fa;
    padding: 4rem 0;
}

.references-content {
    max-width: 900px;
    margin: 0 auto;
}

.references-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.references-list {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reference-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.reference-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ref-number {
    background: #2E8B57;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    min-width: 35px;
    text-align: center;
}

.reference-item p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.references-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.references-note p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

/* Improved Text Contrast */
body {
    color: #333;
}

p {
    color: #444;
}

.hero-description {
    color: #555;
}

/* Improved CTA Buttons */
.discrete-cta-button,
.cta-button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.discrete-cta-button:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

/* Emotional Contrast Zones */
.testimonial-section,
.outperforms,
.dr-emma-section {
    background: linear-gradient(135deg, #f8f4ff 0%, #f0f8ff 100%);
    padding: 4rem 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .guarantee-stats {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .urgency-box {
        flex-direction: column;
        text-align: center;
    }
    
    .main-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .reference-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ref-number {
        align-self: flex-start;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}



/* Mobile Responsiveness for Guarantee Section */
@media (max-width: 768px) {
    .guarantee-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guarantee-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .guarantee-badge h2 {
        font-size: 2rem;
    }
    
    .guarantee-subtitle {
        font-size: 1.1rem;
    }
}

