* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    /* --- ALTERAÇÃO PRINCIPAL AQUI --- */
    background: 
        linear-gradient(135deg, rgba(255, 107, 53,0.5), rgba(247, 147, 30, 0.5)), /* Camada de gradiente semi-transparente */
        url('images/hero.png'); /* Sua imagem de fundo */
    
    background-size: cover; /* Garante que a imagem cubra toda a área */
    background-position: center center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Impede que a imagem se repita */
    
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    min-height: 500px;
}

.hero-text {
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero h1, .hero h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: normal;
}

.benefits-list {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.checkmark {
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .benefits-list {
        align-items: center;
    }
    
    .product-hero-img {
        max-height: 300px;
    }
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.guarantee {
    margin-top: 20px;
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Credibility Section */
.credibility {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.credibility blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 500;
}

.credibility p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ingredients Section */
.ingredients {
    background: #f8f9fa;
    padding: 80px 0;
}

.ingredients h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ingredient-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.ingredient-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ff6b35;
}

.testimonial-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #6c757d;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-author small {
    display: block;
    color: #6c757d;
    margin-top: 5px;
}

/* Bonuses Section */
.bonuses {
    background: #f8f9fa;
    padding: 80px 0;
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.bonus-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.bonus-price {
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 10px;
}

.free-price {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    background: white;
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.best-value {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    transform: scale(1.05);
}

.card-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.value-badge {
    background: #ffc107;
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.best-value .value-badge {
    background: #28a745;
    color: white;
}

.product-image {
    margin: 30px 0;
}

.bottle-placeholder {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-info {
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.price span {
    font-size: 1.2rem;
    color: #6c757d;
}

.total {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.shipping {
    color: #ff6b35;
    font-weight: 500;
}

.shipping.free {
    color: #28a745;
    font-weight: bold;
}

.buy-button {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.buy-button:hover {
    background: linear-gradient(45deg, #e55a2b, #e8841a);
    transform: translateY(-2px);
}

.payment-icons {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.guarantee-badge {
    margin-bottom: 30px;
}

.badge-circle {
    background: #ffc107;
    color: #2c3e50;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 auto;
    border: 5px solid white;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.guarantee-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-cta {
    background: #28a745;
    font-size: 1.4rem;
    padding: 20px 50px;
}

.guarantee-cta:hover {
    background: #218838;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    background: white;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ff6b35;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #6c757d;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.final {
    font-size: 1.5rem;
    padding: 25px 60px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.disclaimer, .medical-disclaimer {
    font-size: 0.8rem;
    color: #bdc3c7;
    margin-bottom: 15px;
    line-height: 1.5;
}

.copyright {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.best-value {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
  /* DENTRO DA SEÇÃO @media (max-width: 768px) */

/* --- INÍCIO DA ALTERAÇÃO FINAL (COM !important) --- */

.ingredients-grid {
    display: block !important; 
}

.ingredient-card {
    margin-bottom: 30px !important; 
}

.supplement-facts-container {
    grid-column: auto !important; 
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.supplement-facts-img {
    max-width: 100% !important; 
    height: auto !important;
}

/* --- FIM DA ALTERAÇÃO FINAL (COM !important) --- */

    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
}




.product-bottle-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ingredient-img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.payment-methods-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}




.bonus-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}




.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ff6b35;
}




.guarantee-seal-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}



.supplement-facts-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 40px;
}

.supplement-facts-img {
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- CORREÇÃO AGRESSIVA PARA O IFRAME DO RUMBLE --- */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important; /* Força a largura */
    height: 100% !important; /* Força a altura */
}
/* ================================================= */
/* --- CÓDIGO FINAL PARA O VÍDEO VIMEO 9:16 --- */
/* ================================================= */

/* 1. O Container Externo (A Janela Vertical) */
.video-mask-container {
    width: 100%;
    max-width: 90%; /* <-- Aumenta o vídeo para 90% da largura do container */
    margin: 20px auto; /* Centraliza o vídeo com margens */
    
    /* Define a proporção 9:16 (altura será 177.78% da largura) */
    padding-top: 160%; /* Ajuste este valor se necessário (ex: 177.78%) */

    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000; /* Fundo preto caso o vídeo demore a carregar */
}

/* 2. O "Ampliador" Interno que segura o iframe */
.video-scaler {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 3. O Iframe do Vimeo em si */
.video-scaler iframe {
    /* Remove o posicionamento absoluto daqui */
    width: 100%;
    height: 100%;
}

/* Ajuste para telas de PC, para não ficar gigante */
@media (min-width: 768px) {
    .video-mask-container {
        max-width: 450px; /* Limita a largura máxima em telas de desktop */
        padding-top: 800px; /* Define uma altura máxima em pixels */
    }
}
