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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Barra de Urgência */
.urgency-bar {
    background: #00d4aa;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.urgency-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-weight: bold;
    font-size: 14px;
}

.urgency-content span {
    margin-right: 50px;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.logo h1 {
    font-size: 2.5rem;
    color: #00d4aa;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: white;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 30px 0;
    line-height: 1.2;
}

.highlight {
    color: #00d4aa;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00d4aa;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.cta-button:hover {
    background: #00b894;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    position: relative;
    z-index: 2;
}

.product-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 170, 0.3));
}

.energy-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.woman-image {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 250px;
    height: auto;
    z-index: 1;
}

/* Seção de Problemas */
.problems-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.problems-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.problems-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

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

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

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #00d4aa;
}

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

.problem-card h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
}

.connection-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção Solução */
.solution-section {
    background: white;
    padding: 80px 0;
}

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

.solution-title {
    font-size: 2.5rem;
    color: #00d4aa;
    margin-bottom: 30px;
    font-weight: bold;
}

.solution-left p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.transformation-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Seção Ingredientes */
.ingredients-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.ingredients-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.ingredients-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

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

.ingredient-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #00d4aa;
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 212, 170, 0.1);
}

.ingredient-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00d4aa;
}

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

.ingredient-card h3 {
    font-size: 1.4rem;
    color: #00d4aa;
    margin-bottom: 15px;
    font-weight: bold;
}

.ingredient-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Seção Oportunidade */
.opportunity-section {
    background: #00d4aa;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.opportunity-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.opportunity-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.opportunity-section .cta-button {
    background: white;
    color: #00d4aa;
    margin-top: 30px;
}

.opportunity-section .cta-button:hover {
    background: #f8f9fa;
}

/* Seção Bônus */
.bonus-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.bonus-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.bonus-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

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

.bonus-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #00d4aa;
}

.bonus-header {
    background: #00d4aa;
    color: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bonus-card h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.bonus-price {
    margin-top: 20px;
}

.old-price {
    display: block;
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
}

.new-price {
    display: block;
    color: #00d4aa;
    font-size: 1.2rem;
    font-weight: bold;
}

.bonus-conclusion {
    font-size: 1.3rem;
    color: #333;
    font-weight: bold;
}

/* Seção Para Quem É */
.target-section {
    background: white;
    padding: 80px 0;
}

.target-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

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

.target-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.target-card.positive {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: white;
}

.target-card.negative {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.target-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.target-card ul {
    list-style: none;
}

.target-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.target-card li:before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 10px;
}

.target-card.negative li:before {
    content: "✗ ";
}

/* Seção de Kits */
.kits-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.kits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.kits-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

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

.kit-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00d4aa;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.kit-card:hover {
    transform: translateY(-5px);
}

.kit-card.popular {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.kit-header h3 {
    font-size: 1.4rem;
    color: #00d4aa;
    margin-bottom: 20px;
    font-weight: bold;
}

.kit-image {
    margin: 20px 0;
}

.kit-image img {
    max-width: 150px;
    height: auto;
}

.kit-pricing {
    margin: 20px 0;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
    display: block;
}

.new-price {
    color: #00d4aa;
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
    margin: 10px 0;
}

.installments {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 10px 0;
}

.cash-price {
    font-size: 1.2rem;
    color: #00d4aa;
    margin: 10px 0;
}

.free-shipping {
    background: #00d4aa;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.shipping-fee {
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.buy-button {
    background: #00d4aa;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: #00b894;
    transform: translateY(-2px);
}

/* Seção Garantia */
.guarantee-section {
    background: #00d4aa;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.guarantee-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-highlight {
    font-size: 1.4rem;
    font-weight: bold;
}

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

.faq-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-section h3 {
    font-size: 2rem;
    color: #00d4aa;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #00d4aa;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.faq-conclusion {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .woman-image {
        position: static;
        transform: none;
        margin-top: 30px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .kits-grid {
        grid-template-columns: 1fr;
    }
}

