.elementor-4470 .elementor-element.elementor-element-d8b99b7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4470 .elementor-element.elementor-element-3e9cfb6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-d8b99b7 *//* ===== METAMORPHX™ STYLES ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    max-height: 50px;
    width: auto;
}

.nav-desktop {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6b35;
}

.btn-order-nav {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-order-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px 17px;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-headlines {
    text-align: center;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ff6b35;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* VSL Styles */
.vsl-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vsl-wrapper {
    margin-bottom: 20px;
}

.vsl-text {
    text-align: center;
}

.watch-now {
    font-size: 1.1rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.watch-description {
    color: #666;
    line-height: 1.6;
}

/* Product Container */
.product-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-image {
    margin-bottom: 25px;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-description h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.product-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.product-benefits li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
}

.product-rating {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.stars {
    margin-bottom: 10px;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

/* ===== QUALITY SECTION ===== */
.quality-section {
    padding: 60px 0;
    background: white;
}

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

.badge {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.badge img {
    margin-bottom: 15px;
}

.badge h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.badge p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.work-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.work-icon {
    margin-bottom: 20px;
}

.work-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.work-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== INGREDIENTS SECTION ===== */
.ingredients-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ingredients-section .section-header h2 {
    color: #2c3e50;
}

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

.ingredient-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-5px);
}

.ingredient-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.ingredient-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 10px;
}

.ingredient-item p {
    color: #666;
    line-height: 1.6;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.reviews-section .section-header h2 {
    color: #2c3e50;
}

.reviews-desktop {
    display: block;
    margin-bottom: 50px;
}

.reviews-mobile {
    display: none;
}

.review-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
}

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

.testimonial-content {
    flex: 1;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.verified {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== BONUSES SECTION ===== */
.bonuses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.bonuses-section .section-header h2 {
    color: #2c3e50;
}

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

.bonus-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-10px);
}

.bonus-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
}

.bonus-content {
    padding: 30px;
}

.bonus-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.bonus-value {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.bonus-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-delivery {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

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

.guarantee-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.guarantee-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guarantee-highlight {
    color: #ffd700;
    font-weight: 600;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* ===== CHECKOUT SECTION ===== */
.checkout-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.checkout-section .section-header h2 {
    color: white;
}

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

.checkout-desktop {
    display: block;
}

.checkout-mobile {
    display: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: end;
}

.pricing-item {
    position: relative;
}

.pricing-item.featured {
    transform: scale(1.05);
}

.most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.pricing-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* DIMINUIR IMAGENS DO CHECKOUT - DESKTOP */
.pricing-image img {
    max-width: 350px; /* 🔥 LIMITA LARGURA DA IMAGEM */
    height: auto; /* 🔥 MANTÉM PROPORÇÃO */
    margin: 0 auto; /* 🔥 CENTRALIZA */
    display: block;
}

/* Alternativa se as imagens estão em outra classe */
.checkout-section img,
.pricing-grid img {
    max-width: 350px; /* 🔥 TAMANHO CONTROLADO */
    height: auto;
    margin: 0 auto;
    display: block;
}

.checkout-link {
    display: block;
    text-decoration: none;
}

.pricing-mobile-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.pricing-mobile-item {
    position: relative;
    max-width: 350px;
    width: 100%;
}

.pricing-mobile-item.featured {
    order: -1;
}

.most-popular-mobile {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

/* ===== SHIPPING SECTION ===== */
.shipping-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.shipping-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
}

.shipping-note {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.shipping-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.shipping-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.checkmark {
    color: #28a745;
    font-size: 1.2rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section .section-header h2 {
    color: #2c3e50;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

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

.faq-question:hover {
    color: #ff6b35;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* ===== REFERENCES SECTION ===== */
.references-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.references-section .section-header h2 {
    color: #2c3e50;
}

.references-main {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px; /* Limita a largura máxima */
    margin: 0 auto 40px auto; /* Centraliza */
}

.references-main img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* REFERÊNCIAS CIENTÍFICAS (texto/estudos) - AUMENTAR NO MOBILE */
@media (max-width: 768px) {
    .references-main {
        max-width: 100%; /* 🔥 OCUPA QUASE TODA TELA NO MOBILE */
        margin: 0 auto 30px auto;
        padding: 0 10px;
    }
    
    .references-main img {
        max-width: 100%;
        height: auto;
        transform: scale(1.1); /* 🔥 AUMENTA 10% NO MOBILE */
        border-radius: 8px;
    }
}

/* SE OS LOGOS ESTÃO EM UMA CLASSE ESPECÍFICA, USE ESTE: */
@media (max-width: 350px) {
    .institutions-logos img,
    .scientific-logos img {
        max-width: 250px;
        transform: scale(0.5);
        margin: 10px auto;
    }
}


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

.reference-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.research-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.feature-item {
    text-align: center;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.price-highlight {
    margin-bottom: 30px;
}

.regular-price {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.crossed {
    text-decoration: line-through;
    opacity: 0.7;
}

.special-price {
    font-size: 2rem;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #ff6b35;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.urgency-text {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.separator {
    margin: 0 15px;
    opacity: 0.5;
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact a {
    color: #ff6b35;
    text-decoration: none;
}

.disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.disclaimer h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.disclaimer p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.9;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-item.featured {
        transform: none;
        order: -1;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    /* Hero Mobile */
    .hero-section {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .vsl-container,
    .product-container {
        padding: 20px;
    }

    /* Reviews Mobile */
    .reviews-desktop {
        display: none;
    }

    .reviews-mobile {
        display: block;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }

    /* Checkout Mobile */
    .checkout-desktop {
        display: none;
    }

    .checkout-mobile {
        display: block;
    }

    /* Bonuses Mobile */
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .bonus-item {
        margin-bottom: 20px;
    }

    /* Ingredients Mobile */
    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    /* Quality Mobile */
    .quality-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* How it works Mobile */
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Final CTA Mobile */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .special-price {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .quality-badges {
        grid-template-columns: 1fr;
    }

    .shipping-benefits {
        grid-template-columns: 1fr;
    }

    .guarantee-badges {
        gap: 15px;
    }

    .guarantee-badges img {
        width: 80px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .checkout-section,
    .final-cta-section {
        display: none;
    }
}/* End custom CSS */