.elementor-205 .elementor-element.elementor-element-3c328ba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3cf4e20 *//* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* Encabezados y textos */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* Botones CTA */
.cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.cta-button-container {
    text-align: center;
    margin: 30px 0;
}

/* Header / Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 48px;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-headline {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sub-headline {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

.product-image {
    max-width: 300px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.badge {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: bold;
}

.badge-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Sección de Problemas */
.problems-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.problems-section .container {
    position: relative;
    z-index: 2;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.problem-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff6600;
}

.solution-banner {
    background-color: #ffcc00;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solution-banner h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Cómo Funciona */
.how-it-works {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #ff6600;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ff6600;
}

.product-highlight {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image-medium {
    max-width: 200px;
    margin-right: 30px;
}

.product-highlight-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

/* Ingredientes */
.ingredients-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.ingredients-section .container {
    position: relative;
    z-index: 2;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ingredient-item {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-5px);
}

/* Ajuste para las imágenes de ingredientes */
.ingredient-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff6600;
}

.ingredients-banner {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ingredients-banner h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

/* Testimonios */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

/* Ajuste para las imágenes de testimonios */
.testimonial-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* Cambiado de 'cover' a 'contain' */
}

.testimonial-content {
    padding: 30px;
}

.testimonial-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.rating {
    color: #ffcc00;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonials-counter {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 48px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 16px;
    color: #666;
}

.testimonials-cta {
    text-align: center;
}

/* Sección Médica */
.doctor-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.doctor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.doctor-section .container {
    position: relative;
    z-index: 2;
}

.doctor-content {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.doctor-image {
    flex: 0 0 200px;
    margin-right: 30px;
}

.doctor-img {
    border-radius: 50%;
    border: 5px solid #ffcc00;
}

.doctor-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffcc00;
}

.doctor-quote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.doctor-name {
    font-weight: bold;
    font-size: 18px;
}

.medical-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.medical-benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.medical-benefit-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.medical-benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffcc00;
}

/* Formulario de Pedido */
.order-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.order-section .container {
    position: relative;
    z-index: 2;
}

.order-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.order-benefits {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-benefits h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: #ff6600;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.product-image-container {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

.product-image-large {
    max-width: 250px;
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 30%;
    background-color: #ff6600;
    color: white;
    font-size: 24px;
    font-weight: bold;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.order-form-container {
    flex: 1;
    min-width: 300px;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ff6600;
}

.faq-question.active {
    background-color: #f5f5f5;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-cta {
    text-align: center;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 50px 0 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 36px;
    color: #ffcc00;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-link {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffcc00;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }
    
    .main-headline {
        font-size: 36px;
    }
    
    .sub-headline {
        font-size: 20px;
    }
    
    .doctor-content {
        flex-direction: column;
        text-align: center;
    }
    
    .doctor-image {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .main-headline {
        font-size: 30px;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .product-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .product-image-medium {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badges {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .main-headline {
        font-size: 26px;
    }
    
    .sub-headline {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 36px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .counter-text {
        font-size: 14px;
    }
}/* End custom CSS */