.elementor-41 .elementor-element.elementor-element-d127b89{--display:flex;}.elementor-41 .elementor-element.elementor-element-d127b89.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-41 .elementor-element.elementor-element-d127b89{--width:97.129%;}}/* Start custom CSS for html, class: .elementor-element-fb2ffa1 *//* Estilos gerais */
:root {
    --primary-color: #b75a9c;
    --primary-dark: #9a4683;
    --primary-light: #d687bc;
    --secondary-color: #4a4a4a;
    --accent-color: #f8c9e6;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #777777;
    --white: #ffffff;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #f8e1f0 0%, #f0d4e6 100%);
    padding: 20px 0 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.stars {
    color: #ffc107;
}

/* Introduction Section */
.introduction {
    background-color: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    background-color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: var(--border-radius);
}

.quote p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.quote cite {
    font-weight: 600;
}

/* How It Works Section */
.steps {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.step {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 50px;
    height: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-header {
    display: flex;
    background-color: var(--secondary-color);
    color: var(--white);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    flex: 1;
    padding: 15px;
    text-align: center;
}

.comparison-header .comparison-cell {
    font-weight: 600;
}

.highlight {
    background-color: var(--accent-color);
    font-weight: 600;
}

/* Ingredients Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ingredient-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ingredient-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
}

/* Reviews Section */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified {
    display: inline-block;
    background-color: var(--success);
    color: var(--white);
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-top: 5px;
}

.review-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Expert Section */
.expert-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.expert-image {
    flex: 1;
    text-align: center;
}

.expert-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.expert-text {
    flex: 2;
}

.credentials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.credential img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.credential img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* FAQ Section */
.accordion {
    margin-top: 40px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-header {
    background-color: var(--white);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.accordion-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    background-color: var(--white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

/* Pricing Section */
.packages {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    justify-content: center;
}

.package {
    flex: 1;
    max-width: 350px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.package:hover {
    transform: translateY(-10px);
}

.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag,
.best-value-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.best-value-tag {
    background-color: var(--success);
}

.package-header {
    margin-bottom: 20px;
}

.package-image {
    margin: 20px 0;
}

.package-image img {
    max-width: 100%;
    height: auto;
}

.package-price {
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--dark-gray);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.per-bottle {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.package-features {
    list-style: none;
    margin: 20px 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.package-features li:last-child {
    border-bottom: none;
}

.customer-choice {
    text-align: center;
    margin: 30px 0;
    font-size: 1.2rem;
}

.bonuses {
    margin-top: 60px;
}

.bonus-items {
    margin-top: 30px;
}

.bonus-item {
    display: flex;
    gap: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.bonus-image {
    flex: 1;
    max-width: 200px;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.bonus-content {
    flex: 3;
}

.bonus-value {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--accent-color);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-image {
    flex: 1;
    text-align: center;
}

.guarantee-image img {
    max-width: 200px;
}

.guarantee-text {
    flex: 2;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8e1f0 0%, #f0d4e6 100%);
    padding: 100px 0;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.payment-methods {
    margin: 30px 0;
}

.payment-methods img {
    max-width: 300px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.badge img {
    height: 60px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content,
    .expert-content,
    .guarantee-content {
        flex-direction: column;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .packages {
        flex-direction: column;
        align-items: center;
    }
    
    .package {
        width: 100%;
        max-width: 400px;
    }
    
    .popular {
        transform: none;
        order: -1;
    }
    
    .popular:hover {
        transform: translateY(-10px);
    }
    
    .bonus-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .testimonials,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }/* End custom CSS */
/* Start custom CSS *//* Estilos gerais */
:root {
    --primary-color: #b75a9c;
    --primary-dark: #9a4683;
    --primary-light: #d687bc;
    --secondary-color: #4a4a4a;
    --accent-color: #f8c9e6;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #777777;
    --white: #ffffff;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #f8e1f0 0%, #f0d4e6 100%);
    padding: 20px 0 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.stars {
    color: #ffc107;
}

/* Introduction Section */
.introduction {
    background-color: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    background-color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: var(--border-radius);
}

.quote p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.quote cite {
    font-weight: 600;
}

/* How It Works Section */
.steps {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.step {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 50px;
    height: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-header {
    display: flex;
    background-color: var(--secondary-color);
    color: var(--white);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    flex: 1;
    padding: 15px;
    text-align: center;
}

.comparison-header .comparison-cell {
    font-weight: 600;
}

.highlight {
    background-color: var(--accent-color);
    font-weight: 600;
}

/* Ingredients Section */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ingredient-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ingredient-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
}

/* Reviews Section */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified {
    display: inline-block;
    background-color: var(--success);
    color: var(--white);
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-top: 5px;
}

.review-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Expert Section */
.expert-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.expert-image {
    flex: 1;
    text-align: center;
}

.expert-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.expert-text {
    flex: 2;
}

.credentials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.credential img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.credential img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* FAQ Section */
.accordion {
    margin-top: 40px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-header {
    background-color: var(--white);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.accordion-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    background-color: var(--white);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

/* Pricing Section */
.packages {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    justify-content: center;
}

.package {
    flex: 1;
    max-width: 350px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.package:hover {
    transform: translateY(-10px);
}

.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag,
.best-value-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.best-value-tag {
    background-color: var(--success);
}

.package-header {
    margin-bottom: 20px;
}

.package-image {
    margin: 20px 0;
}

.package-image img {
    max-width: 100%;
    height: auto;
}

.package-price {
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--dark-gray);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.per-bottle {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.package-features {
    list-style: none;
    margin: 20px 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.package-features li:last-child {
    border-bottom: none;
}

.customer-choice {
    text-align: center;
    margin: 30px 0;
    font-size: 1.2rem;
}

.bonuses {
    margin-top: 60px;
}

.bonus-items {
    margin-top: 30px;
}

.bonus-item {
    display: flex;
    gap: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.bonus-image {
    flex: 1;
    max-width: 200px;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.bonus-content {
    flex: 3;
}

.bonus-value {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--accent-color);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-image {
    flex: 1;
    text-align: center;
}

.guarantee-image img {
    max-width: 200px;
}

.guarantee-text {
    flex: 2;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8e1f0 0%, #f0d4e6 100%);
    padding: 100px 0;
}

.final-cta h2 {
    margin-bottom: 20px;
}

.final-cta p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

.payment-methods {
    margin: 30px 0;
}

.payment-methods img {
    max-width: 300px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.badge img {
    height: 60px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content,
    .expert-content,
    .guarantee-content {
        flex-direction: column;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .packages {
        flex-direction: column;
        align-items: center;
    }
    
    .package {
        width: 100%;
        max-width: 400px;
    }
    
    .popular {
        transform: none;
        order: -1;
    }
    
    .popular:hover {
        transform: translateY(-10px);
    }
    
    .bonus-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .testimonials,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
}/* End custom CSS */