/**
 * PageProd.css - Estilos específicos para páginas de conteúdo
 * Este arquivo é carregado automaticamente em todas as páginas de informação
 */
 
 /* MyFormula Design System - Organic Health & Wellness Theme */
:root {
    /* Colors */
    --background: 0 0% 99%;
    --foreground: 160 8% 15%;
    --card: 0 0% 100%;
    --card-foreground: 160 8% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 160 8% 15%;
    --success: 142 76% 36%;
    --success-light: 142 76% 46%;
    
    /* Primary: Deep organic green */
    --primary: 140 45% 25%;
    --primary-foreground: 0 0% 98%;
    --primary-light: 140 35% 40%;
    
    /* Secondary: Warm earthy green */
    --secondary: 120 25% 88%;
    --secondary-foreground: 160 8% 15%;
    
    /* Accent: Fresh mint green */
    --accent: 150 40% 75%;
    --accent-foreground: 160 8% 15%;
    --accent-dark: 150 50% 30%;
    
    --muted: 120 15% 96%;
    --muted-foreground: 160 8% 45%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 120 15% 90%;
    --input: 120 15% 92%;
    --ring: 140 45% 25%;
    --radius: 0.75rem;
    
    /* Custom design tokens */
    --organic-green: 140 45% 25%;
    --organic-light: 120 25% 88%;
    --organic-mint: 150 40% 75%;
    --organic-dark: 160 8% 15%;
    --organic-neutral: 160 8% 45%;
    
    /* Gradients */
    --gradient-organic: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent-dark)));
    --gradient-hero: linear-gradient(180deg, hsl(var(--muted)) 0%, hsl(var(--background)) 100%);
    --gradient-card: linear-gradient(145deg, hsl(var(--card)) 0%, hsl(var(--muted)) 100%);
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
    
    /* Shadows */
    --shadow-organic: 0 10px 30px -10px hsl(var(--primary) / 0.15);
    --shadow-card-soft: 0 4px 20px -4px hsl(var(--organic-dark) / 0.08);
    --shadow-button-soft: 0 2px 8px -2px hsl(var(--primary) / 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 142 76% 46%;
    --primary-light: 142 76% 56%;
    --primary-foreground: 222.2 84% 4.9%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 142 76% 46%;
    
    --gradient-card: linear-gradient(135deg, hsl(222.2 84% 4.9%) 0%, hsl(217.2 32.6% 17.5%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(142 76% 46% / 0.1) 0%, hsl(142 76% 56% / 0.15) 100%);
}
 
/* Hero Section */
/* Hero Section */
/* Hero Section */

.text-center {
    text-align: center;
    margin-bottom: 20px;
}

.text-foreground {
    color: hsl(var(--foreground));
}

.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

.gradient-organic {
    background: linear-gradient(135deg, #24382b 0%, #42664e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-weight: inherit;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: #FFFFFF;
    overflow: hidden;
    padding: 20px 0;
}

.container-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-weight: 700;
    line-height: 1.1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: left;
    
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-description {
    font-size: 1.4rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    max-width: 60rem;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground));
    background: linear-gradient(135deg, #24382b 0%, #42664e 100%);
    border: none;
    border-radius: calc(var(--radius) * 1.5);
    text-decoration: none;
    box-shadow: var(--shadow-button-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.btn-hero-primary-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: hsl(var(--primary-foreground));
    background: transparent;
    border: 0.3px solid #fff;
    border-radius: calc(var(--radius) * 1.5);
    text-decoration: none;
    box-shadow: var(--shadow-button-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-hero-primary-white:hover {
    color: #476B27 !important;
    background: #ffffff !important;
    border: 0.3px solid #fff !important;
}

a:hover, a:focus{
    color:#ffffff;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-organic);
    color: #FFFFFF;
    background: linear-gradient(135deg, #42664e 0%, #24382b 100%);
    transition: var(--transition-smooth);
    
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding-top: 1rem;
}

.hero-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-star {
    width: 2rem;
    height: 2rem;
    fill: #fbbf24;
    color: #fbbf24;
}

.hero-rating-text {
    color: hsl(var(--foreground));
    font-weight: 600;
}

/* Hero Image */
.hero-image-section {
    position: relative;
}

.hero-image-container {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-organic);
    max-height: 780px;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slideshow-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    padding: 3px;
    border-radius: 10px;
}

.hero-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #42664e;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-dot.active {
    background-color: #42664e;
    border-color: white;
    transform: scale(1.2);
}

/* Floating elements */
.hero-floating-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background-color: hsl(var(--card));
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-card-soft);
}

.hero-badge-content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-gmp-seal {
    width: 80px;
    height: auto;
    border-radius: 0.5rem;
    object-fit: contain;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* Floating CTA - Mobile (aplica sem escopo de body/id) */
.floating-cta {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: calc(100% - 2rem);
    max-width: 640px;
    z-index: 10000;
    display: block;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding-bottom: env(safe-area-inset-bottom);
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.floating-cta .btn-hero-primary {
    width: 100%;
    justify-content: center;
    box-shadow: var(--shadow-organic);
    border-radius: calc(var(--radius) * 2);
}

@media (min-width: 641px) {
    .floating-cta {
        display: none !important;
    }
}

.ingredient-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-section .hero-container {
        padding: 5rem 2rem;
    }
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 5.5rem;
    }
}

@media (min-width: 640px) {

    .hero-description {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .hero-section .hero-container {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px){
        /* Social Proof */
    .hero-social-proof {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding-top: 1rem;
    }
    
    .hero-title {
    font-weight: 700;
    line-height: 1.1;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    text-align: center;
    }
    
    .hero-description {
    font-size: 1.6rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    max-width: 60rem;
    text-align: center;
    }
}


/* Benefits Section */
/* Benefits Section */
/* Benefits Section */

.benefits {
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin: 4rem;
}

.section-header h2 {
    font-weight: 700;
    font-size: 36px;
}

.section-header p {
    color: hsl(var(--muted-foreground));
    max-width: 45rem;
    margin: 0 auto;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    font-weight:200;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .benefits-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.benefit-card {
    background: var(--gradient-card);
    padding: 30px 5px 30px 5px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-card-soft);
    transition: var(--transition-smooth);
    text-align: center;
    border: 0;
}

.benefit-card:hover {
    box-shadow: var(--shadow-organic);
    transform: translateY(-0.5rem);
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 3px;
    color: white;
    box-shadow: var(--shadow-button-soft);
}

.benefit-icon.green-gradient {
    background: linear-gradient(to right, #10b981, #059669);
}

.benefit-icon.blue-gradient {
    background: linear-gradient(to right, #3b82f6, #0891b2);
}

.benefit-icon.purple-gradient {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.benefit-icon.red-gradient {
    background: linear-gradient(to right, #ef4444, #f43f5e);
}

.benefit-icon.yellow-gradient {
    background: linear-gradient(to right, #eab308, #f97316);
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 15px 0;
    line-height: 1.25;
}

.benefit-card p {
    color: hsl(var(--muted-foreground));
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 480px){
        /* Social Proof */
    .benefits
        {
            padding: 2rem 0;
            background-color: #F5F7F5;
        }
    
    .section-header h2 {
            font-weight: 700;
            font-size: 24px;
        }

    .benefits-grid {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            grid-template-columns: repeat(2, 1fr);
        }
    
    .benefit-card {
            background: var(--gradient-card);
            padding: 10px 5px 10px 5px;
            border-radius: calc(var(--radius) * 2);
            box-shadow: var(--shadow-card-soft);
            transition: var(--transition-smooth);
            text-align: center;
            border: 0;
            margin: 0 10px;
        }
    
}

/* Experts Section - Scoped to avoid conflicts */
/* Experts Section - Scoped to avoid conflicts */
/* Experts Section - Scoped to avoid conflicts */

.experts {
    padding: 5rem 0;
    background-color: #ffffff;
}

.experts .experts-header {
    margin-bottom: 4rem;
    text-align: center;
}

.experts .experts-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin: 5rem 0 4rem 0;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

@media (min-width: 640px) {
    .experts .experts-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .experts .experts-title {
        font-size: 36px;
    }
}

.experts .experts-subtitle {
    font-size: 18px;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.experts-grid {
    display: grid;
    gap: 2rem;
    max-width: 110rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .experts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expert-card {
    position: relative;
    overflow: hidden;
    background: var(--gradient-card);
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-card-soft);
    transition: all 0.3s ease;
    border: 0;
}

.expert-card:hover {
    box-shadow: var(--shadow-organic);
    transform: translateY(-0.5rem);
}

.expert-card-content {
    padding: 0;
}

.expert-image-container {
    position: relative;
    height: 30rem;
    overflow: hidden;
}

.expert-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.expert-card:hover .expert-image-photo {
    transform: scale(1.05);
}

.expert-overlay {
    position: absolute;
    inset: 0;
}

.experience-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 500;
    box-shadow: var(--shadow-button-soft);
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.expert-name-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
}

.expert-name {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.expert-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.expert-specialty {
    color: #FFFFFF;
    font-size: 1.3rem;
    line-height: 1.4;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.expert-info {
    display: flex;
    flex-direction: column;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.expert-credentials {
    font-weight: 600;
    color: #24382b;
    margin-bottom: 0.25rem;
    font-size: 14px;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.expert-description {
    color: #24382b;
    font-size: 1.3rem;
    line-height: 1.6;
    padding-top: 10px;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.expert-achievements {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.achievement-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #436426;
    flex-shrink: 0;
}

.achievement-text {
    color: hsl(var(--foreground));
    font-size: 1.3rem;
    font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 4rem;
    text-align: center;
}

.trust-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.6;
}

.trust-text {
    font-size: 12px;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.trust-partners {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.trust-partners span {
    font-size: 12px;
}

@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-partners {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px){
    .experts .experts-title {
        font-size: 24px;
        line-height: 2.25rem;
        font-weight: 700;
        margin: 0 0 4rem 0;
    }
    
    .expert-image-container {
    position: relative;
    height: 18rem;
    overflow: hidden;
    }
    
    .expert-name {
        font-weight: 700;
        font-size: 1.6rem;
        margin-bottom: 0.10rem;
        color: #FFFFFF;
    }
    .expert-details {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }
    .expert-card-content {
        padding: 0;
        border: 0.5px solid #e7e7e7;
        border-radius: 5px;
        box-shadow: var(--shadow-card-soft);
    }
    .expert-specialty {
        margin: 0;
    }
}
/* Pricing Section */
/* Pricing Section */
/* Pricing Section */

/* Pricing Section - Optimized CSS */
.pricing-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-main-title {
    font-weight: 700;
    font-size: 36px;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 18px !important;
    color: hsl(var(--muted-foreground));
    max-width: 65rem !important;
    margin-left: auto;
    margin-right: auto;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 90rem;
    margin: 0 auto;
}
/*
.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}
*/
@media (min-width: 768px) {
    /* .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card-soft);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.pricing-card:hover {
    box-shadow: var(--shadow-organic);
    transform: translateY(-8px);
}

.pricing-card-popular {
    border: 2px solid hsl(var(--primary));
    box-shadow: var(--shadow-organic);
}

.pricing-card-popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), transparent);
    pointer-events: none;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 1rem;
    border-radius: calc(var(--radius) * 0.5);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    z-index: 10;
}

.pricing-card-header {
    text-align: center;
    padding: 2rem 2rem 0;
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.plan-price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3.2rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.plan-period {
    color: hsl(var(--muted-foreground));
    font-size: 1.2rem;
}

.plan-description {
    color: hsl(var(--muted-foreground));
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-check {
    color: hsl(var(--primary));
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-feature span {
    color: hsl(var(--foreground));
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Buttons - OpenCart Compatible */
.pricing-card .hero-actions {
    margin-top: 1.5rem;
}

.pricing-card .btn-hero-primary {
    position: relative;
    overflow: hidden;
    font-size: 1.3rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.2s ease;
}

.pricing-card .btn-hero-primary:hover {
    transform: scale(1.02);
}

.pricing-card .btn-hero-primary:active {
    transform: scale(0.98);
}

.btn-hero-primary .button-arrow-unicode {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
    display: inline-block;
    margin-left: 0.25rem;
}

.pricing-card .btn-hero-primary:hover .button-arrow-unicode {
    transform: translateX(4px);
}

/* Selected Plan Button */
.pricing-card-selected .btn-hero-primary {
    background: linear-gradient(135deg, #3f624b, #079d6d);
    color: white !important;
    cursor: default;
    pointer-events: none;
}

.pricing-card-selected .btn-hero-primary:hover {
    transform: scale(1) !important;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Disabled Popular Plan */
.pricing-card-popular.popular-disabled {
    border: 1px solid hsl(var(--border)) !important;
    box-shadow: var(--shadow-card-soft) !important;
}

.pricing-card-popular.popular-disabled::before {
    opacity: 0.3;
    background: linear-gradient(135deg, hsl(var(--muted) / 0.05), transparent);
}

.pricing-card-popular.popular-disabled .popular-badge {
    opacity: 0.3 !important;
    transform: scale(0.9) !important;
    transition: all 0.3s ease;
}

/* Selected Plan Styles */
.pricing-card-selected {
    border: 2px solid hsl(var(--success)) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 2px hsl(var(--success)) !important;
    transform: translateY(-8px) !important;
    z-index: 10;
}

.pricing-card-selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(var(--success) / 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

.selected-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #3f624b, #079d6d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: calc(var(--radius) * 0.5);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: selectedPulse 2s infinite;
}

@keyframes selectedPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Footer */
.pricing-footer {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-text {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: hsl(var(--muted-foreground));
}

.pricing-benefit {
    white-space: nowrap;
}

.pricing-separator {
    color: hsl(var(--muted-foreground));
}

@media (max-width: 640px) {
    .pricing-benefits {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .pricing-separator {
        display: none;
    }
    
    .pricing-main-title
         {
            font-weight: 700;
            font-size: 28px;
            color: hsl(var(--foreground));
            margin-bottom: 1rem;
        }
}

/* Ingredients Section */
/* Ingredients Section */
/* Ingredients Section */

.ingredients {
    padding: 5rem 0;
    background-color: #f2f2f2;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1440px !important;
}

.ingredients-title{
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

.ingredients-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-decoration: none;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

@media (min-width: 1024px) {
    .ingredients-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ingredients-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ingredients-header {
    margin-bottom: 1.25rem;
}

.ingredients-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

.ingredients-description {
    font-size: 1.5rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.certification-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
}

.certification-card:hover {
    background: linear-gradient(135deg, #24382b 0%, #42664e 100%);
    color: white;
    transform: translateY(-2px);
}

.certification-icon {
    width: 40px;
    margin: 0 auto 0.5rem;
    display: block;
    line-height: 1;
    padding: 10px 0;
    transition: filter 0.3s ease;
}

.certification-card:hover .certification-icon {
    filter: brightness(0) invert(1);
}

.certification-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.certification-card:hover .certification-title {
    color: white;
}

.certification-description {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.certification-card:hover .certification-description {
    color: white;
}


/* Info Section */

/* Product Info Sections - Estilos para as novas seções informativas */
/* Product Info Sections - Estilos para as novas seções informativas */
/* Product Info Sections - Accordion Style */
.product-info-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 2rem 0;
}

.info-section {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-section:hover {
    box-shadow: var(--shadow-card-soft);
}

/* Accordion Header */
.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #24382b 0%, #42664e 100%);
    color: #FFFFFF;
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s ease;
    position: relative;
}

.info-title:hover {
    background: linear-gradient(135deg, #42664e 0%, #24382b 100%);
    color: #FFFFFF;
}

.info-title::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFFFFF;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.info-section.active .info-title::after {
    content: '−';
    transform: rotate(180deg);
}

/* Accordion Content */
.info-list,
.personalization-steps {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 1.5rem;
}

.info-section.active .info-list,
.info-section.active .personalization-steps {
    max-height: 1000px;
    opacity: 1;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

/* Info List Items */
.info-list {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.1rem 0;
}

.info-icon {
    color: hsl(var(--primary));
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-text {
    color: hsl(var(--foreground));
    line-height: 1.7;
    font-size: 1.4rem;
}

/* Personalization Steps */
.personalization-steps {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.step-item {
    display: flex;
    /* align-items: flex-start; */
    gap: 0.5rem 0.5rem;
    padding: 0.2rem 0;
    align-items: center;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step-text {
    color: hsl(var(--foreground));
    line-height: 1.6;
    font-size: 1.4rem;
    padding-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .info-title {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .info-title::after {
        font-size: 1.8rem;
    }
    
    .info-section.active .info-list,
    .info-section.active .personalization-steps {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .info-text,
    .step-text {
        font-size: 1.875rem;
    }
    
    .step-number {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .info-title {
        font-size: 1.4rem;
        padding: 0.875rem 1rem;
    }
    
    .info-section.active .info-list,
    .info-section.active .personalization-steps {
        padding: 1rem 1rem 1rem 1rem;
    }
    
    .info-item,
    .step-item {
        gap: 0.5rem;
    }
    
    .info-text,
    .step-text {
        font-size: 1.4rem;
    }
}


/* ===== FAQ SECTION - REFATORADO ===== */
/* Ingredients FAQs - Independent styling */
.ingredients-faqs {
    margin-top: 1.25rem;
}

.ingredients-faqs-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ingredients-faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ingredients-faq-item {
    background: var(--gradient-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.ingredients-faq-item:hover {
    box-shadow: var(--shadow-organic);
}

.ingredients-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.ingredients-faq-trigger:hover {
    background-color: hsl(var(--muted) / 0.3);
}

.ingredients-faq-trigger:focus {
    outline: none;
    background-color: hsl(var(--muted) / 0.5);
}

.ingredients-faq-question-text {
    font-weight: 500;
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    line-height: 1.4;
    transition: var(--transition-smooth);
    
}

.ingredients-faq-trigger:hover .ingredients-faq-question-text {
    color: hsl(var(--primary));
}

.ingredients-faq-chevron {
    width: 1.4rem;
    height: 1.4rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.ingredients-faq-item[data-state="open"] .ingredients-faq-chevron {
    transform: rotate(180deg);
    color: hsl(var(--primary));
}

.ingredients-faq-content {
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    opacity: 0;
}

.ingredients-faq-item[data-state="open"] .ingredients-faq-content {
    max-height: 300px;
    opacity: 1;
}

.ingredients-faq-content-inner {
    padding: 0 1rem 1rem 1rem;
    animation: ingredientsFadeInUp 0.3s ease-out;
}

.ingredients-faq-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin: 0;
    font-size: 1.2rem;
}

@keyframes ingredientsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for ingredients FAQs */
@media (max-width: 768px) {
    .ingredients-faqs-title {
        font-size: 1.5rem;
    }
    
    .ingredients-faq-trigger {
        padding: 0.875rem;
    }
    
    .ingredients-faq-question-text {
        font-size: 0.9rem;
    }
    
    .ingredients-faq-content-inner {
        padding: 0 0.875rem 0.875rem 0.875rem;
    }
}

/* Right Content - Images */
.ingredients-right {
    display: flex;
    flex-direction: column;
}

.ingredients-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    text-decoration: none;
}

.image-card:hover {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

.image-card img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.accent-overlay {
    background: transparent;
}

.image-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
}

.image-content h4 {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    text-decoration: none;
    text-shadow: 2px 3px 2px #333333;
}

.image-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
    text-decoration: none;
    text-shadow: 2px 3px 2px #333333;
}

.production-card {
    background: linear-gradient(135deg, #24382b 0%, #42664e 100%);
    color: white;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    text-decoration: none;
}

.production-card:hover {
    background: linear-gradient(135deg, #42664e 0%, #24382b 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.3);
}

.production-content {
    padding: 20px 10px;
    text-align: center;
    width: 100%;
    height: 25rem;
    object-fit: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.production-content h4 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.production-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    font-size: 1.5rem;
    text-decoration: none;
}

.production-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.production-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.production-button .button-arrow {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 1023px) {
    .ingredients-grid {
        gap: 3rem;
    }
    
    .ingredients-title {
        font-size: 24px;
        text-align: center;
        
    }
}

@media (max-width: 640px) {
    .ingredients {
        padding: 3rem 0;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .ingredients-description {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .certification-title {
        font-size: 1.6rem;
        
    }
    .certification-description {
        font-size: 1.2rem;
        
    }
}

/* Testimonials */
/* Client Testimonials Section */
.testimonials{
    background-color:#f9f9f9;
    padding: 0; /* Aumentado de 30px para 60px */
}

.testimonials-header {
    text-align: center;
    margin: 4rem auto 5rem auto; /* Aumentado margin-bottom */
    max-width: 800px; /* Adicionado max-width */
}

.testimonials-header h2 {
    font-weight: 700;
    font-size: 42px; /* Aumentado ligeiramente */
    margin-bottom: 1.5rem; /* Adicionado margin-bottom */
}

.testimonials-header p {
    font-size: 1.8rem; /* Aumentado de 1.6rem para 1.8rem */
    color: hsl(var(--muted-foreground));
    max-width: 60rem; /* Aumentado de 52rem para 60rem */
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6; /* Adicionado line-height */
}

.client-testimonials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.client-overall-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(var(--card));
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-card-soft);
    margin: 0 0 30px 0;
}

@media (min-width: 640px) {
    .client-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .client-testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.client-testimonial-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    border: 1px solid #f0f0f0;
}

.client-testimonial-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.client-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.client-testimonial-avatar {
    width: 6rem;
    height: 6rem;
    min-width: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.client-testimonial-info {
    flex: 1;
}

.client-testimonial-info h4 {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 0.25rem 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.client-testimonial-info p {
    font-size: 1.1rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

.client-testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.client-star {
    color: #FFB800;
    font-size: 1.9rem;
    line-height: 1;
}

.client-testimonial-quote-icon {
    color: #e3e3e3;
    font-size: 5rem;
    line-height: 0.8;
    margin-bottom: 0.75rem;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    font-weight: 700;
}

.client-testimonial-text {
    color: #444;
    font-size: 1.4rem;
    line-height: 1.65;
    margin: 0 0 1.25rem 0;
    font-style: italic;
    flex-grow: 1;
}

.client-testimonial-highlight {
    background: linear-gradient(135deg, #24382b 0%, #42664e 100%);
    border-radius: 0.625rem;
    padding: 0.875rem 1rem;
    margin-top: auto;
}

.client-testimonial-highlight p {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.4;
}

/* Overall Rating Section */
.client-overall-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(var(--card));
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-card-soft);
    justify-content: center;
}

.client-rating-stars {
    display: flex;
    gap: 0.375rem;
}

.client-rating-star {
    color: #FFB800;
    font-size: 1.75rem;
    line-height: 1;
}

.client-rating-score {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1a1a1a;
}

.client-rating-count {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .client-testimonial-card {
        min-height: 280px;
        padding: 1.75rem 1.25rem;
    }
    
    .client-testimonial-avatar {
        width: 6rem;
        height: 6rem;
        min-width: 4rem;
    }
    
    .client-testimonial-info h4 {
        font-size: 1.5rem;
    }
    
    .client-testimonial-info p {
        font-size: 1.3rem;
    }
    
    .testimonials-header h2 {
        font-weight: 700;
        font-size: 28px;
    }
    
    .client-testimonial-quote-icon {
        margin-bottom: 0rem;
    }
    .testimonials{
        background-color:#FBFCFB;
        padding: 10px 0;
    }
}

@media (max-width: 639px) {
    .client-testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .client-testimonial-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .client-overall-rating {
        margin: 0;
        padding: 1.5rem 1rem;
    }
    
    .client-rating-star {
        font-size: 1.5rem;
    }
    
    .client-rating-score {
        font-size: 1.25rem;
    }
    
    .client-rating-count {
        font-size: 1rem;
    }
}

.client-testimonial-video {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.client-testimonial-video iframe {
    border-radius: 8px;
    min-height: 180px;
    height: 180px;
}

@media (max-width: 640px) {
    .client-testimonial-video iframe {
        min-height: 180px;
        height: 180px;
    }
}

/* Carrossel de Testemunhos */
/* Carrossel de Testemunhos */
/* Carrossel de Testemunhos */
.testimonials .container {
    max-width: 1600px !important; 
    width: 100% !important;
    padding: 30px 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 1400px; /* Aumentado de 1200px para 1400px */
    margin: 0 auto;
    padding: 0 2rem; /* Adicionado padding lateral */
}

.carousel-container {
    position: relative;
    display: block;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    gap: 2rem; /* Aumentado de 1.5rem para 2rem */
}

.carousel-slide {
    width: calc(25% - 1.5rem); /* Ajustado para o novo gap */
    flex-shrink: 0;
    padding: 0;
}

.carousel-slide .client-testimonial-card {
    margin: 0;
    height: 100%;
    min-height: 350px; /* Aumentado de 320px para 350px */
}

/* Botões de navegação */
.carousel-btn {
    position: absolute; /* Posicionamento absoluto para desktop */
    top: 42%;
    z-index: 10;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
}

.carousel-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Navegação - posições dos botões */
.carousel-prev {
    left: -28px; /* Posicionado à esquerda */
}

.carousel-next {
    right: -28px; /* Posicionado à direita */
}

/* Remove SVG styles since we're usando Unicode */
.carousel-btn svg {
    display: none;
}

/* Indicadores - removidos já que mostramos todos */
.carousel-indicators {
    display: none;
}

/* Responsivo */
@media (max-width: 1400px) {
    .testimonials-carousel {
        max-width: 1200px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .testimonials-carousel {
        padding: 0 1rem;
    }
    
    .carousel-container {
        gap: 1rem;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }
    
    .carousel-slide {
        width: calc(25% - 1.125rem);
    }
}

@media (max-width: 768px) {
    .carousel-container {
        gap: 0.5rem;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .carousel-slide {
        width: calc(50% - 0.5rem); /* 2 cards por linha no tablet */
    }
    
    .carousel-slide .client-testimonial-card {
        min-height: 320px;
    }
    
    /* Esconde as setas do carrossel no mobile */
    .carousel-btn {
        display: none !important;
    }


}

@media (max-width: 480px) {
    .testimonials-carousel {
        padding: 1rem 0.5rem;
    }
    
    .carousel-container {
        flex-direction: column; /* Coluna para colocar botões abaixo */
        display: flex; /* Volta para flex no mobile */
        gap: 1rem;
        align-items: center;
    }
    
    .carousel-wrapper {
        order: 1; /* Carrossel primeiro */
        overflow: hidden;
        width: 100%;
        border-radius: 12px;
    }
    
    .carousel-track {
        display: flex;
        flex-direction: row;
        width: calc(100% * 4); /* 4 slides total */
        gap: 0;
        transition: transform 0.4s ease-in-out;
    }
    
    .carousel-slide {
        width: 25%; /* Cada slide ocupa 25% do track */
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 0.5rem; /* Padding para centralização */
    }
    
    .carousel-slide .client-testimonial-card {
        width: 100%;
        max-width: none;
        min-height: 400px; /* Aumentado para ocupar mais espaço */
        margin: 0;
        padding: 2rem 1.5rem; /* Padding generoso */
        font-size: 1.1rem; /* Texto ligeiramente maior */
    }
    
    .carousel-slide .client-testimonial-text {
        font-size: 1.6rem; /* Texto do depoimento maior */
        line-height: 1.6;
    }
    
    .carousel-slide .client-testimonial-info h4 {
        font-size: 1.4rem; /* Nome maior */
    }
    
    .carousel-slide .client-testimonial-info p {
        font-size: 1.1rem; /* Subtítulo maior */
    }
    
    /* Container dos botões abaixo dos cards */
    .carousel-controls {
        order: 2; /* Botões depois */
        display: flex;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    
    /* Botões maiores e mais visíveis no mobile */
    .carousel-btn {
        position: static; /* Remove posicionamento absoluto */
        transform: none; /* Remove transform */
        width: 50px;
        height: 50px;
        font-size: 24px;
        flex-shrink: 0;
        z-index: 10;
        background: #ffffff;
        border: 2px solid #e5e7eb;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .carousel-prev {
        left: auto; /* Reset left */
    }
    
    .carousel-next {
        right: auto; /* Reset right */
    }
    
    .carousel-btn:hover {
        background: #f9fafb;
        border-color: #d1d5db;
        transform: scale(1.05);
    }
    
    .carousel-btn:active {
        transform: scale(0.95);
    }
}


.testmonials-text-center {
    text-align: center;
    margin: 20px;
}





/* Final FAQ */
.final-faq {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.final-faq .container {
    max-width: 100rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-header p {
    color: hsl(var(--muted-foreground));
    max-width: 60rem;
    margin: 0 auto;
    line-height: 1.6;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.faq-card {
    background: var(--gradient-card);
    border: 0;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-card-soft);
    overflow: hidden;
}

.faq-accordion {
    padding: 2rem;
}

.faq-item {
    border-bottom: 1px solid hsl(var(--border) / 0.5);

}

.faq-item:last-child {
    border-bottom: none;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
    text-decoration:none;
}

.faq-trigger:hover {
    color: hsl(var(--primary));
}

.faq-trigger:focus {
    outline: none;
    color: hsl(var(--primary));
}

.faq-question-text {
    font-weight: 600;
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    line-height: 1.5;
    transition: var(--transition-smooth);
}

.faq-trigger:hover .faq-question-text,
.faq-trigger:focus .faq-question-text {
    color: hsl(var(--primary));
}

.faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[data-state="open"] .faq-chevron {
    transform: rotate(180deg);
    color: hsl(var(--primary));
}

.faq-content {
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    opacity: 0;
}

.faq-item[data-state="open"] .faq-content {
    max-height: 500px;
    opacity: 1;
}

.faq-content-inner {
    padding-bottom: 1.5rem;
    animation: fadeInUp 0.3s ease-out;
}

.faq-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
    margin: 0;
    font-size: 1.4rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
}

.faq-contact p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1rem;
    font-size: 1.3rem;
    font-weight:700;
    padding-top:10px;
}

.contact-options a {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.contact-options a:hover {
    color: hsl(var(--primary-light));
}

.contact-options span {
    color: hsl(var(--muted-foreground));
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .final-faq {
        padding: 3rem 0;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-accordion {
        padding: 1.5rem;
    }
    
    .faq-trigger {
        padding: 1rem 0;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-options span {
        display: none;
    }
    .faq-header h2 {
        font-size: 28px;
    }
}

/* newsletter */

.newsletter-section {
    padding: 10rem 0;
    width: 100%;
    border-radius: 10px;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.newsletter-text h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #FFFFFF;
}

.newsletter-text > p {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    color:  #436426;
    max-width: 55rem;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.newsletter-signup h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #436426;
    max-width: 50rem;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.newsletter-signup > p {
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 24rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-button {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.newsletter-image {
    position: relative;
    overflow: hidden;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .newsletter-content
     {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        padding: 0 10px;
    }
    .newsletter-section {
        width: 100%;
    }
    .newsletter-text > p {
        text-align: center;
    }
    .newsletter-signup h4 {
        text-align: center;
    }
}

/* Benefits HOME Section */
/* Benefits HOME Section */
/* Benefits HOME Section */

.benefits-home {
    padding: 8rem 0;
    background-color: #F5F7F5;
}

.section-header {
    text-align: center;
    margin: 4rem;
}

.section-header h2 {
    font-weight: 700;
    font-size: 36px;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.section-header p {
    color: hsl(var(--muted-foreground));
    max-width: 65rem;
    margin: 0 auto;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    font-weight:200;
}

.benefits-grid-home {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
    .benefits-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .benefits-grid-home {
        grid-template-columns: repeat(5, 1fr);
    }
}

.benefit-card-home {
    background: var(--gradient-card);
    padding: 30px 5px 15px 5px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-card-soft);
    transition: var(--transition-smooth);
    text-align: center;
    border: 0;
    /* Adicionando suporte para imagem de fundo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* Overlay para melhorar legibilidade do texto sobre a imagem */
.benefit-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Garantir que o conteúdo fique acima do overlay */
.benefit-card-home > * {
    position: relative;
    z-index: 2;
}

        .benefit-card-home:nth-child(1) {
            background-image: url('/image/catalog/formulas/peso.jpg');
            text-decoration:none;
        }

        .benefit-card-home:nth-child(2) {
            background-image: url('/image/catalog/formulas/longevidade.jpg');
            text-decoration:none;
        }

        .benefit-card-home:nth-child(3) {
            background-image: url('/image/catalog/formulas/menopausa.jpg');
            text-decoration:none;
        }

        .benefit-card-home:nth-child(4) {
            background-image: url('/image/catalog/formulas/energia.jpg');
            text-decoration:none;
        }

        .benefit-card-home:nth-child(5) {
            background-image: url('/image/catalog/formulas/pele3.jpg');
            text-decoration:none;
        }

.benefit-card-home:hover {
    box-shadow: var(--shadow-organic);
    transform: translateY(-0.5rem);
}


.benefit-card-home h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    line-height: 1.25;
    /* Melhorar contraste sobre imagem de fundo */
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.benefit-card-home p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

@media (max-width: 480px){
    .benefits-home {
        padding: 2rem 0;
        background-color: #F5F7F5;
    }

    .section-header h2 {
        font-weight: 700;
        font-size: 24px;
    }

    .benefits-grid-home {
        display: grid;
        flex-direction: column;
        gap: 0.8rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card-home {
        min-height: 220px;
        padding: 15px 5px 15px 5px;
        margin: 0;
    }
    
    #benefit-05 {
        display: none;
    }
    
    .benefit-card-home h3 {
        font-size: 14px;
        margin: 10px 0 10px 0;
    }
    
    .benefit-card-home p {
        font-size: 12px;
    }
}


/* Plans or Formulas */
/* Plans or Formulas */
/* Plans or Formulas */

.benefits-plans {
    padding: 0;
    background-color: #FFFFFF;
}

.section-header {
    text-align: center;
    margin: 4rem;
}

.section-header h2 {
    font-weight: 700;
    font-size: 36px;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.section-header p {
    color: hsl(var(--muted-foreground));
    max-width: 65rem;
    margin: 0 auto;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    font-weight:200;
}

.benefits-grid-plans {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}



@media (min-width: 1024px) {
    .benefits-grid-plans {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .benefits-grid-plans {
        grid-template-columns: repeat(5, 1fr);
    }
}

.benefit-card-plans {
    background: var(--gradient-card);
    padding: 30px 5px 15px 5px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-card-soft);
    transition: var(--transition-smooth);
    text-align: center;
    border: 0;
    /* Adicionando suporte para imagem de fundo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* Overlay para melhorar legibilidade do texto sobre a imagem */
.benefit-card-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Garantir que o conteúdo fique acima do overlay */
.benefit-card-plans > * {
    position: relative;
    z-index: 2;
}

        .benefit-card-plans:nth-child(1) {
            background-image: url('/image/catalog/formulas/peso.jpg');
            text-decoration:none;
        }

        .benefit-card-plans:nth-child(2) {
            background-image: url('/image/catalog/formulas/longevidade.jpg');
            text-decoration:none;
        }

        .benefit-card-plans:nth-child(3) {
            background-image: url('/image/catalog/formulas/menopausa.jpg');
            text-decoration:none;
        }

        .benefit-card-plans:nth-child(4) {
            background-image: url('/image/catalog/formulas/energia.jpg');
            text-decoration:none;
        }

        .benefit-card-plans:nth-child(5) {
            background-image: url('/image/catalog/formulas/pele3.jpg');
            text-decoration:none;
        }
        
        .benefit-card-plans:nth-child(6) {
            background-image: url('/image/catalog/formulas/circulacao.jpg');
            text-decoration:none;
        }

        .benefit-card-plans:nth-child(7) {
            background-image: url('/image/catalog/formulas/saudesexual.jpg');
            text-decoration:none;
        }

        .benefit-card-plans:nth-child(8) {
            background-image: url('/image/catalog/formulas/digestivos.jpg');
            text-decoration:none;
        }

        .benefit-card-plans:nth-child(9) {
            background-image: url('/image/catalog/formulas/ossos.jpg');
            text-decoration:none;
        }

        .benefit-card-plans:nth-child(10) {
            background-image: url('/image/catalog/formulas/sono.jpg');
            text-decoration:none;
        }

.benefit-card-plans:hover {
    box-shadow: var(--shadow-organic);
    transform: translateY(-0.5rem);
}


.benefit-card-plans h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    line-height: 1.25;
    /* Melhorar contraste sobre imagem de fundo */
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.benefit-card-plans p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    text-decoration: none;
}

@media (max-width: 480px){
    .benefits-plans {
        padding: 2rem 0;
        background-color: #FFFFFF;
    }

    .section-header h2 {
        font-weight: 700;
        font-size: 24px;
    }

    .benefits-grid-plans {
        display: grid;
        flex-direction: column;
        gap: 0.8rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card-plans {
        min-height: 220px;
        padding: 15px 5px 15px 5px;
        margin: 0;
    }
    
    .benefit-card-plans h3 {
        font-size: 14px;
        margin: 10px 0 10px 0;
    }
    
    .benefit-card-plans p {
        font-size: 12px;
    }
}

/* Floating CTA - Mobile (todas as páginas de produto) */
.floating-cta {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 92%;
    max-width: 420px;
    z-index: 10000;
    display: flex;
    pointer-events: none;
    transition: var(--transition-smooth);
    padding-bottom: env(safe-area-inset-bottom);
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.floating-cta .btn-hero-primary {
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    justify-content: center;
    box-shadow: var(--shadow-organic);
    border-radius: calc(var(--radius) * 2);
}

@media (min-width: 641px) {
    .floating-cta {
        display: none !important;
    }
}

.quemsomos-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
}

.quemsomos-card:hover {
    background: linear-gradient(135deg, #24382b 0%, #42664e 100%);
    color: white;
    transform: translateY(-2px);
}

.quemsomos-icon {
    width: 40px;
    margin: 0 auto 0.5rem;
    display: block;
    line-height: 1;
    padding: 10px 0;
    transition: filter 0.3s ease;
}

.quemsomos-card:hover .quemsomos-icon {
    filter: brightness(0) invert(1);
}

.quemsomos-title {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quemsomos-card:hover .quemsomos-title {
    color: white;
}

.quemsomos-description {
    font-size: 1.3rem;
    color: #666666;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quemsomos-card:hover .quemsomos-description {
    color: white;
}

/* Precisao Section */
/* Precisao Section */
/* Precisao Section */

.precisao-plans {
    padding: 0;
    background-color: #FFFFFF;
}

.section-header {
    text-align: center;
    margin: 4rem;
}

.section-header h2 {
    font-weight: 700;
    font-size: 36px;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.section-header p {
    color: hsl(var(--muted-foreground));
    max-width: 100rem;
    margin: 0 auto;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    font-weight:200;
}

.precisao-grid-plans {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}



@media (min-width: 1024px) {
    .precisao-grid-plans {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .precisao-grid-plans {
        grid-template-columns: repeat(3, 1fr);
    }
}

.precisao-card-plans {
    background: var(--gradient-card);
    padding: 30px 5px 15px 5px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-card-soft);
    transition: var(--transition-smooth);
    text-align: center;
    border: 0;
    /* Adicionando suporte para imagem de fundo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* Overlay para melhorar legibilidade do texto sobre a imagem */
.precisao-card-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Garantir que o conteúdo fique acima do overlay */
.precisao-card-plans > * {
    position: relative;
    z-index: 2;
}

        .precisao-card-plans:nth-child(1) {
            background-image: url('/image/catalog/maisprecisao/planos/perdadepeso.jpg');
            text-decoration:none;
        }

        .precisao-card-plans:nth-child(2) {
            background-image: url('/image/catalog/maisprecisao/planos/menopausa.jpg');
            text-decoration:none;
        }

        .precisao-card-plans:nth-child(3) {
            background-image: url('/image/catalog/maisprecisao/planos/longevidade.jpg');
            text-decoration:none;
        }

        .precisao-card-plans:nth-child(4) {
            background-image: url('/image/catalog/formulas/longevidade.jpg');
            text-decoration:none;
        }

        .precisao-card-plans:nth-child(5) {
            background-image: url('/image/catalog/formulas/longevidade.jpg');
            text-decoration:none;
        }
        
        .precisao-card-plans:nth-child(6) {
            background-image: url('/image/catalog/formulas/menopausa.jpg');
            text-decoration:none;
        }

        .precisao-card-plans:nth-child(7) {
            background-image: url('/image/catalog/formulas/menopausa.jpg');
            text-decoration:none;
        }

        .precisao-card-plans:nth-child(8) {
            background-image: url('/image/catalog/formulas/digestivos.jpg');
            text-decoration:none;
        }

        .precisao-card-plans:nth-child(9) {
            background-image: url('/image/catalog/formulas/ossos.jpg');
            text-decoration:none;
        }

        .precisao-card-plans:nth-child(10) {
            background-image: url('/image/catalog/formulas/sono.jpg');
            text-decoration:none;
        }

.precisao-card-plans:hover {
    box-shadow: var(--shadow-organic);
    transform: translateY(-0.5rem);
}


.precisao-card-plans h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    line-height: 1.25;
    /* Melhorar contraste sobre imagem de fundo */
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    text-decoration: none;
}

.precisao-card-plans p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    text-decoration: none;
}

@media (max-width: 480px){
    .precisao-plans {
        padding: 2rem 0;
        background-color: #FFFFFF;
    }

    .section-header h2 {
        font-weight: 700;
        font-size: 24px;
    }

    .precisao-grid-plans {
        display: grid;
        flex-direction: column;
        gap: 0.8rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .precisao-card-plans {
        min-height: 220px;
        padding: 15px 5px 15px 5px;
        margin: 0;
    }
    
    .precisao-card-plans h3 {
        font-size: 14px;
        margin: 10px 0 10px 0;
    }
    
    .precisao-card-plans p {
        font-size: 12px;
    }
}


/* Pricing Precision Section */
/* Pricing Precision Section */
/* Pricing Precision Section */

/* Pricing Section - Optimized CSS */
.precision-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.precision-header {
    text-align: center;
    margin-bottom: 4rem;
}

.precision-main-title {
    font-weight: 700;
    font-size: 36px;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.precision-description {
    font-size: 18px !important;
    color: hsl(var(--muted-foreground));
    max-width: 65rem !important;
    margin-left: auto;
    margin-right: auto;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.precision-grid {
    display: grid;
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}
/*
.precision-grid {
    display: grid;
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
}
*/
@media (min-width: 768px) {
    /* .precision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    */
    .precision-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Pricing Cards */
.precision-card {
    position: relative;
    background: hsl(var(--card));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card-soft);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.precision-card:hover {
    box-shadow: var(--shadow-organic);
    transform: translateY(-8px);
}

.precision-card-popular {
    border: 2px solid hsl(var(--primary));
    box-shadow: var(--shadow-organic);
}

.precision-card-popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05), transparent);
    pointer-events: none;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 1rem;
    border-radius: calc(var(--radius) * 0.5);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    z-index: 10;
}

.precision-card-header {
    text-align: center;
    padding: 2rem 2rem 0;
}

.plan-precision-name {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.plan-precision-price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.plan-precision-price {
    font-size: 3.2rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.plan-precision-period {
    color: hsl(var(--muted-foreground));
    font-size: 1.2rem;
}

.plan-precision-description {
    color: hsl(var(--muted-foreground));
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.precision-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-precision-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-precision-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-check {
    color: hsl(var(--primary));
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-precision-feature span {
    color: hsl(var(--foreground));
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Buttons - OpenCart Compatible */
.precision-card .hero-actions {
    margin-top: 1.5rem;
}

.precision-card .btn-hero-primary {
    position: relative;
    overflow: hidden;
    font-size: 1.3rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.2s ease;
}

.precision-card .btn-hero-primary:hover {
    transform: scale(1.02);
}

.precision-card .btn-hero-primary:active {
    transform: scale(0.98);
}

.btn-hero-primary .button-arrow-unicode {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
    display: inline-block;
    margin-left: 0.25rem;
}

.precision-card .btn-hero-primary:hover .button-arrow-unicode {
    transform: translateX(4px);
}

/* Selected Plan Button */
.precision-card-selected .btn-hero-primary {
    background: linear-gradient(135deg, #3f624b, #079d6d);
    color: white !important;
    cursor: default;
    pointer-events: none;
}

.precision-card-selected .btn-hero-primary:hover {
    transform: scale(1) !important;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Disabled Popular Plan */
.precision-card-popular.popular-disabled {
    border: 1px solid hsl(var(--border)) !important;
    box-shadow: var(--shadow-card-soft) !important;
}

.precision-card-popular.popular-disabled::before {
    opacity: 0.3;
    background: linear-gradient(135deg, hsl(var(--muted) / 0.05), transparent);
}

.precision-card-popular.popular-disabled .popular-badge {
    opacity: 0.3 !important;
    transform: scale(0.9) !important;
    transition: all 0.3s ease;
}

/* Selected Plan Styles */
.precision-card-selected {
    border: 2px solid hsl(var(--success)) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 2px hsl(var(--success)) !important;
    transform: translateY(-8px) !important;
    z-index: 10;
}

.precision-card-selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(var(--success) / 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

.selected-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #3f624b, #079d6d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: calc(var(--radius) * 0.5);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: selectedPulse 2s infinite;
}

@keyframes selectedPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Footer */
.precision-footer {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-text {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.precision-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: hsl(var(--muted-foreground));
}

.precision-benefit {
    white-space: nowrap;
}

.precision-separator {
    color: hsl(var(--muted-foreground));
}

@media (max-width: 640px) {
    .precision-benefits {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .precision-separator {
        display: none;
    }
    
    .precision-main-title
         {
            font-weight: 700;
            font-size: 28px;
            color: hsl(var(--foreground));
            margin-bottom: 1rem;
        }
}



/* Cards dos ingredientes */
      .vit-grid { 
        display: grid; 
        gap: 16px; 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
      .vit-card { 
        background: #fff; 
        border-radius: 12px; 
        padding: 16px; 
        box-shadow: 0 2px 6px rgba(0,0,0,0.06); 
        border: 1px solid rgba(0,0,0,0.06);
      }
      .vit-card-top { 
        display:flex; 
        align-items:center; 
        justify-content: space-between; 
        margin-bottom: 10px;
      }
      .vit-icon { width: 24px; height: 24px; }
      .vit-badge { 
        font-size: 12px; 
        color: #555; 
        background: #f3f3f3; 
        border: 1px solid rgba(0,0,0,0.06);
        padding: 4px 10px; 
        border-radius: 999px;
      }
      .vit-title { 
        margin: 0 0 8px; 
        font-size: 16px; 
        line-height: 24px; 
        color: #060606; 
        font-weight: 600;
      }
      .vit-desc { 
        margin: 0; 
        color: #401E15; 
        font-size: 14px; 
        line-height: 24px;
      }
      
      .vitaminas .vit-grid {
          display: grid;
          gap: 16px;
          grid-template-columns: repeat(4, minmax(0, 1fr));
        }
        @media (max-width: 1200px) {
          .vitaminas .vit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        @media (max-width: 900px) {
          .vitaminas .vit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (max-width: 600px) {
          .vitaminas .vit-grid { grid-template-columns: 1fr; }
        }
        
        
    
    
    

