/* Reset e Base */
* {
    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: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Cores Principais */
:root {
    --primary-green: #00D4AA;
    --dark-bg: #000000;
    --light-bg: #f5f5f5;
    --text-white: #ffffff;
    --text-dark: #333333;
    --gradient-bg: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
}

/* Barra de Urgência */
.urgency-bar {
    background-color: var(--dark-bg);
    padding: 15px 0;
    text-align: center;
    position: relative;
    border-bottom: 2px solid var(--primary-green);
}

.urgency-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgency-content p {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-white);
    margin: 0;
}

.progress-bar {
    width: 300px;
    height: 20px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-bg);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-green);
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--primary-green) 100%);
    opacity: 0.1;
    z-index: 1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 32px;
    color: var(--primary-green);
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

.logo-text strong {
    color: var(--primary-green);
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-bg);
    color: var(--text-white);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

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

.cta-button.secondary {
    background: var(--gradient-bg);
}

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

/* Seção Solução Perfeita */
.perfect-solution {
    background: var(--gradient-bg);
    padding: 30px 0;
    text-align: center;
}

.perfect-solution h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
}

/* Seção Tudo que Você Precisa */
.everything-you-need {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

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

.problem-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-white);
}

.highlight {
    color: var(--primary-green);
}

.problem-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.7;
}

.woman-scale {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
}

/* Seção Transformação */
.transformation {
    background-color: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.transformation h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-placeholder {
    background: #1a1a1a;
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Seção Benefícios */
.benefits {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

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

.benefits-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefit-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: hue-rotate(180deg) saturate(2);
}

.benefit-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.product-benefits {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
}

/* Seção Ingredientes */
.ingredients {
    background: var(--gradient-bg);
    padding: 80px 0;
}

.ingredients h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 50px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.ingredient-card {
    background: var(--text-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ingredient-image {
    margin-bottom: 20px;
}

.ingredient-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.ingredient-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.ingredient-card p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.ingredients-footer {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

/* Seção Urgência */
.urgency-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

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

.warning-icon {
    font-size: 60px;
    margin-bottom: 30px;
}

.urgency-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.urgency-section p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.stock-progress {
    margin: 40px 0;
}

.stock-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 20px;
}

/* Seção Produto Natural */
.natural-product {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
    color: var(--text-dark);
}

.natural-product h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.natural-product p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Seção CTA Transformação */
.transformation-cta {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

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

.cta-text {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--primary-green);
}

.cta-text p {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.6;
}

.athletic-woman {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
}

/* Seção Kits */
.kits {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.kits h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.kit-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid #333;
    position: relative;
    transition: all 0.3s ease;
}

.kit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.kit-card.popular {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
}

.kit-image {
    position: relative;
    margin-bottom: 20px;
}

.kit-img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
}

.free-shipping {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-bg);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.kit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.price {
    margin-bottom: 20px;
}

.original-price {
    color: #ff6b6b;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 5px;
}

.installments {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 5px;
}

.price-installment {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.price-cash {
    font-size: 14px;
    color: #cccccc;
}

.buy-button {
    display: block;
    width: 100%;
    background: var(--gradient-bg);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.4);
}

.buy-button.orange {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
}

.buy-button.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.final-cta {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.6;
}

/* Seção Depoimentos com Resultados */
.testimonials-results {
    background-color: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.testimonials-results h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.before-after {
    background: #1a1a1a;
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.before, .after {
    text-align: center;
}

.result-img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.before span, .after span {
    display: block;
    font-weight: 700;
    color: var(--text-white);
}

.result-info {
    text-align: center;
}

.result-text {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
}

.weight-loss {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
}

/* Seção Garantia */
.guarantee {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

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

.guarantee-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.guarantee-text p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.guarantee-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-content {
    background: var(--gradient-bg);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.badge-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.stars {
    font-size: 20px;
}

/* Seção FAQ */
.faq {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item:nth-child(1) { border-color: #3b82f6; }
.faq-item:nth-child(2) { border-color: #ec4899; }
.faq-item:nth-child(3) { border-color: var(--primary-green); }
.faq-item:nth-child(4) { border-color: #f59e0b; }

.faq-item summary {
    background: #1a1a1a;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-content {
    padding: 20px;
    background: #0a0a0a;
}

.faq-content p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-button {
    background: var(--gradient-bg);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-button:hover {
    transform: translateY(-2px);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h3 {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-copyright {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.footer-copyright p {
    color: var(--primary-green);
    font-weight: 600;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

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

.whatsapp-icon {
    font-size: 24px;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content,
    .content-wrapper,
    .benefits-content,
    .cta-content,
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after-images {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .kits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

.kit-card {
    animation: fadeInUp 0.8s ease-out;
}

.kit-card:nth-child(2) { animation-delay: 0.1s; }
.kit-card:nth-child(3) { animation-delay: 0.2s; }
.kit-card:nth-child(4) { animation-delay: 0.3s; }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}



/* Galeria de Depoimentos Atualizada */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

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

.testimonial-result {
    padding: 25px;
    text-align: center;
    background: white;
    color: #333;
}

.testimonial-result h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.testimonial-card .weight-loss {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d4aa;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-img {
        height: 300px;
    }
    
    .testimonial-card .weight-loss {
        font-size: 2rem;
    }
}


/* Seção de Vídeos de Depoimentos */
.video-testimonials {
    margin-bottom: 60px;
}

.video-testimonials h3 {
    text-align: center;
    font-size: 2rem;
    color: #00d4aa;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.video-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #000;
}

.video-caption {
    padding: 20px;
    text-align: center;
    background: white;
    color: #333;
}

.video-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.video-caption p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card video {
        height: 200px;
    }
    
    .video-testimonials h3 {
        font-size: 1.5rem;
        padding: 0 20px;
    }
}


/* Vídeos na Seção de Transformação */
.testimonial-video {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .testimonial-video {
        height: 200px;
    }
}

