/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA FODMAPs ===== */
/* IMPORTANTE: Todos los estilos están prefijados para evitar conflictos */

/* Variables CSS específicas para FODMAPs */
:root {
    --fodmaps-primary-purple: #6b46c1;
    --fodmaps-accent-gold: #f59e0b;
    --fodmaps-success-green: #10b981;
    --fodmaps-error-red: #ef4444;
    --fodmaps-elegant-cream: #fefcf6;
    --fodmaps-gray-50: #f9fafb;
    --fodmaps-gray-100: #f3f4f6;
    --fodmaps-gray-600: #4b5563;
    --fodmaps-gray-700: #374151;
    --fodmaps-gray-900: #111827;
    --fodmaps-white: #ffffff;
    --fodmaps-gradient-primary: linear-gradient(135deg, #6b46c1 0%, #8b5cf6 100%);
    --fodmaps-transition-base: all 0.3s ease;
    --fodmaps-radius-base: 0.5rem;
    --fodmaps-radius-lg: 0.75rem;
    --fodmaps-radius-xl: 1rem;
    --fodmaps-radius-2xl: 1.5rem;
    --fodmaps-radius-full: 9999px;
    --fodmaps-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --fodmaps-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --fodmaps-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --fodmaps-section-padding: 5rem;
    --fodmaps-font-size-xs: 0.75rem;
    --fodmaps-font-size-sm: 0.875rem;
    --fodmaps-font-size-base: 1rem;
    --fodmaps-font-size-lg: 1.125rem;
    --fodmaps-font-size-xl: 1.25rem;
    --fodmaps-font-size-2xl: 1.5rem;
    --fodmaps-font-size-3xl: 1.875rem;
    --fodmaps-font-size-4xl: 2.25rem;
    --fodmaps-font-weight-medium: 500;
    --fodmaps-font-weight-semibold: 600;
    --fodmaps-font-weight-bold: 700;
    --fodmaps-line-height-relaxed: 1.625;
}

/* Hero específico para FODMAPs */
.fodmaps-hero-section {
    background: linear-gradient(135deg, 
        var(--fodmaps-elegant-cream) 0%, 
        rgba(107, 70, 193, 0.03) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.fodmaps-hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107, 70, 193, 0.1);
    color: var(--fodmaps-primary-purple);
    padding: 0.75rem 1.5rem;
    border-radius: var(--fodmaps-radius-full);
    font-size: var(--fodmaps-font-size-sm);
    font-weight: var(--fodmaps-font-weight-medium);
    margin-bottom: 2rem;
    border: 1px solid rgba(107, 70, 193, 0.2);
    animation: fodmapsFadeInUp 0.8s ease-out;
}

.fodmaps-hero-section .hero-badge i {
    color: var(--fodmaps-accent-gold);
}

.fodmaps-hero-section .hero-title {
    font-size: 2.75rem;
    font-weight: var(--fodmaps-font-weight-bold);
    line-height: 1.2;
    color: var(--fodmaps-gray-900);
    margin-bottom: 1.5rem;
    animation: fodmapsFadeInUp 0.8s ease-out 0.2s both;
}

.fodmaps-hero-section .hero-title .highlight {
    background: var(--fodmaps-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fodmaps-hero-section .hero-subtitle {
    font-size: var(--fodmaps-font-size-xl);
    color: var(--fodmaps-gray-600);
    line-height: var(--fodmaps-line-height-relaxed);
    margin-bottom: 2rem;
    animation: fodmapsFadeInUp 0.8s ease-out 0.4s both;
}

.fodmaps-hero-section .problems-checklist {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: var(--fodmaps-radius-2xl);
    margin: 2rem 0;
    border: 1px solid rgba(239, 68, 68, 0.1);
    box-shadow: var(--fodmaps-shadow-sm);
    animation: fodmapsFadeInUp 0.8s ease-out 0.6s both;
}

.fodmaps-hero-section .checklist-title {
    font-size: var(--fodmaps-font-size-xl);
    color: var(--fodmaps-gray-900);
    margin-bottom: 1.5rem;
    font-weight: var(--fodmaps-font-weight-semibold);
}

.fodmaps-hero-section .problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fodmaps-hero-section .problem-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: var(--fodmaps-radius-lg);
    transition: var(--fodmaps-transition-base);
    font-style: italic;
    cursor: default;
}

.fodmaps-hero-section .problem-check:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: translateX(5px);
}

.fodmaps-hero-section .problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fodmaps-hero-section .problem-check span {
    color: var(--fodmaps-gray-700);
    font-weight: var(--fodmaps-font-weight-medium);
    font-size: var(--fodmaps-font-size-sm);
}

.fodmaps-hero-section .hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    animation: fodmapsFadeInUp 0.8s ease-out 0.8s both;
}

.fodmaps-hero-section .stat-item {
    text-align: center;
}

.fodmaps-hero-section .stat-number {
    display: block;
    font-size: var(--fodmaps-font-size-2xl);
    font-weight: var(--fodmaps-font-weight-bold);
    color: var(--fodmaps-primary-purple);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fodmaps-hero-section .stat-label {
    font-size: var(--fodmaps-font-size-sm);
    color: var(--fodmaps-gray-600);
    font-weight: var(--fodmaps-font-weight-medium);
}

.fodmaps-hero-section .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: fodmapsFadeInUp 0.8s ease-out 1s both;
}

.fodmaps-hero-section .hero-buttons .btn {
    font-weight: var(--fodmaps-font-weight-semibold);
    padding: 1rem 2rem;
    border-radius: var(--fodmaps-radius-lg);
    transition: var(--fodmaps-transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.fodmaps-hero-section .hero-buttons .btn-primary {
    background: var(--fodmaps-gradient-primary);
    border: none;
    color: var(--fodmaps-white);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.fodmaps-hero-section .hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
    color: var(--fodmaps-white);
    text-decoration: none;
}

.fodmaps-hero-section .hero-buttons .btn-outline-primary {
    border: 2px solid var(--fodmaps-primary-purple);
    color: var(--fodmaps-primary-purple);
    background: rgba(255, 255, 255, 0.9);
}

.fodmaps-hero-section .hero-buttons .btn-outline-primary:hover {
    background: var(--fodmaps-primary-purple);
    border-color: var(--fodmaps-primary-purple);
    color: var(--fodmaps-white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Avatar mejorado */
.fodmaps-hero-avatar {
    text-align: center;
    position: sticky;
    top: 100px;
    animation: fodmapsFadeInRight 0.8s ease-out 0.5s both;
}

.fodmaps-hero-avatar .avatar-container { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.fodmaps-hero-avatar .avatar-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform var(--fodmaps-transition-base);
}

.fodmaps-hero-avatar .avatar-image:hover {
    transform: scale(1.05);
}

.fodmaps-hero-avatar .avatar-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--fodmaps-primary-purple);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--fodmaps-radius-lg);
    font-size: var(--fodmaps-font-size-xs);
    font-weight: var(--fodmaps-font-weight-bold);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: var(--fodmaps-shadow-lg);
}

.fodmaps-hero-avatar .avatar-info h4 {
    font-size: var(--fodmaps-font-size-xl);
    color: var(--fodmaps-gray-900);
    margin-bottom: 0.5rem;
    font-weight: var(--fodmaps-font-weight-semibold);
}

.fodmaps-hero-avatar .avatar-info p {
    font-size: var(--fodmaps-font-size-sm);
    color: var(--fodmaps-gray-600);
    margin-bottom: 1rem;
    line-height: var(--fodmaps-line-height-relaxed);
}

.fodmaps-hero-avatar .credentials {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fodmaps-hero-avatar .credential {
    font-size: var(--fodmaps-font-size-xs);
    color: var(--fodmaps-success-green);
    font-weight: var(--fodmaps-font-weight-medium);
}

/* Sección Estrategia */
.strategy-section {
    padding: var(--fodmaps-section-padding) 0;
    background: var(--fodmaps-gray-50);
}

.strategy-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.strategy-section .section-title {
    font-size: var(--fodmaps-font-size-3xl);
    font-weight: var(--fodmaps-font-weight-bold);
    line-height: 1.2;
    color: var(--fodmaps-gray-900);
    margin-bottom: 1.5rem;
}

.strategy-section .section-subtitle {
    font-size: var(--fodmaps-font-size-lg);
    color: var(--fodmaps-gray-600);
    line-height: var(--fodmaps-line-height-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

.strategy-section .strategy-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strategy-section .process-card {
    background: var(--fodmaps-white);
    padding: 2rem;
    border-radius: var(--fodmaps-radius-2xl);
    box-shadow: var(--fodmaps-shadow-lg);
    border: 1px solid rgba(107, 70, 193, 0.1);
    transition: var(--fodmaps-transition-base);
    text-align: center;
}

.strategy-section .process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fodmaps-shadow-xl);
}

.strategy-section .card-icon {
    width: 80px;
    height: 80px;
    background: var(--fodmaps-gradient-primary);
    border-radius: var(--fodmaps-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.strategy-section .card-icon i {
    color: var(--fodmaps-white);
    font-size: 2rem;
}

.strategy-section .card-content h3 {
    font-size: var(--fodmaps-font-size-xl);
    color: var(--fodmaps-gray-900);
    margin-bottom: 1rem;
    font-weight: var(--fodmaps-font-weight-semibold);
}

.strategy-section .card-content p {
    color: var(--fodmaps-gray-600);
    margin-bottom: 1.5rem;
    line-height: var(--fodmaps-line-height-relaxed);
}

.strategy-section .benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.strategy-section .benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: var(--fodmaps-font-size-sm);
    color: var(--fodmaps-gray-700);
}

.strategy-section .benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--fodmaps-success-green);
    font-weight: var(--fodmaps-font-weight-bold);
}

.strategy-section .strategy-cta {
    background: rgba(16, 185, 129, 0.1);
    padding: 2rem;
    border-radius: var(--fodmaps-radius-2xl);
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.strategy-section .cta-content h3 {
    font-size: var(--fodmaps-font-size-xl);
    color: var(--fodmaps-gray-900);
    margin-bottom: 0.5rem;
    font-weight: var(--fodmaps-font-weight-semibold);
}

.strategy-section .cta-content p {
    color: var(--fodmaps-gray-600);
    margin: 0;
}

.strategy-section .btn-consultation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--fodmaps-gradient-primary);
    color: var(--fodmaps-white);
    padding: 1rem 2rem;
    border-radius: var(--fodmaps-radius-lg);
    text-decoration: none;
    font-weight: var(--fodmaps-font-weight-semibold);
    transition: var(--fodmaps-transition-base);
    white-space: nowrap;
}

.strategy-section .btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
    color: var(--fodmaps-white);
    text-decoration: none;
}

/* Sección Ebook Banner */
.elegant-ebook-banner {
    padding: var(--fodmaps-section-padding) 0;
    background: var(--fodmaps-white);
    position: relative;
}

.elegant-ebook-banner .ebook-badge {
    display: inline-block;
    background: rgba(107, 70, 193, 0.1);
    color: var(--fodmaps-primary-purple);
    padding: 0.5rem 1rem;
    border-radius: var(--fodmaps-radius-full);
    font-size: var(--fodmaps-font-size-sm);
    font-weight: var(--fodmaps-font-weight-medium);
    margin-bottom: 1.5rem;
}

.elegant-ebook-banner .ebook-title {
    font-size: var(--fodmaps-font-size-3xl);
    font-weight: var(--fodmaps-font-weight-bold);
    line-height: 1.2;
    color: var(--fodmaps-gray-900);
    margin-bottom: 1.5rem;
}

.elegant-ebook-banner .ebook-title .highlight {
    background: var(--fodmaps-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.elegant-ebook-banner .ebook-description {
    font-size: var(--fodmaps-font-size-lg);
    color: var(--fodmaps-gray-600);
    line-height: var(--fodmaps-line-height-relaxed);
    margin-bottom: 2rem;
}

.elegant-ebook-banner .daily-questions {
    background: rgba(107, 70, 193, 0.05);
    padding: 2rem;
    border-radius: var(--fodmaps-radius-xl);
    margin: 2rem 0;
}

.elegant-ebook-banner .questions-title {
    font-size: var(--fodmaps-font-size-lg);
    color: var(--fodmaps-gray-900);
    margin-bottom: 1.5rem;
    font-weight: var(--fodmaps-font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.elegant-ebook-banner .questions-title i {
    color: var(--fodmaps-primary-purple);
}

.elegant-ebook-banner .questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.elegant-ebook-banner .question-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--fodmaps-white);
    padding: 1rem;
    border-radius: var(--fodmaps-radius-lg);
    border: 1px solid rgba(107, 70, 193, 0.1);
}

.elegant-ebook-banner .question-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.elegant-ebook-banner .question-item span {
    color: var(--fodmaps-gray-700);
    font-size: var(--fodmaps-font-size-sm);
    font-weight: var(--fodmaps-font-weight-medium);
}

.elegant-ebook-banner .guide-includes {
    margin: 2rem 0;
}

.elegant-ebook-banner .guide-includes h3 {
    font-size: var(--fodmaps-font-size-xl);
    color: var(--fodmaps-gray-900);
    margin-bottom: 1.5rem;
    font-weight: var(--fodmaps-font-weight-semibold);
}

.elegant-ebook-banner .includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.elegant-ebook-banner .include-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.elegant-ebook-banner .include-icon {
    width: 50px;
    height: 50px;
    background: var(--fodmaps-gradient-primary);
    border-radius: var(--fodmaps-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.elegant-ebook-banner .include-icon i {
    color: var(--fodmaps-white);
    font-size: 1.25rem;
}

.elegant-ebook-banner .include-text h4 {
    font-size: var(--fodmaps-font-size-base);
    color: var(--fodmaps-gray-900);
    margin-bottom: 0.25rem;
    font-weight: var(--fodmaps-font-weight-semibold);
}

.elegant-ebook-banner .include-text p {
    color: var(--fodmaps-gray-600);
    font-size: var(--fodmaps-font-size-sm);
    margin: 0;
}

/* CTA Card de la Guía */
.elegant-ebook-banner .guide-cta-card {
    background: var(--fodmaps-white);
    padding: 2rem;
    border-radius: var(--fodmaps-radius-2xl);
    box-shadow: var(--fodmaps-shadow-xl);
    border: 1px solid rgba(107, 70, 193, 0.1);
    text-align: center;
    position: sticky;
    top: 100px;
}

.elegant-ebook-banner .book-preview {
    margin-bottom: 2rem;
    position: relative;
}

.elegant-ebook-banner .book-cover {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: var(--fodmaps-radius-lg);
    box-shadow: var(--fodmaps-shadow-lg);
    margin-bottom: 1rem;
}

.elegant-ebook-banner .book-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.elegant-ebook-banner .book-details span {
    background: rgba(107, 70, 193, 0.1);
    color: var(--fodmaps-primary-purple);
    padding: 0.5rem 1rem;
    border-radius: var(--fodmaps-radius-full);
    font-size: var(--fodmaps-font-size-xs);
    font-weight: var(--fodmaps-font-weight-medium);
}

.elegant-ebook-banner .pricing-section {
    margin-bottom: 2rem;
}

.elegant-ebook-banner .price-display {
    margin-bottom: 1rem;
}

.elegant-ebook-banner .original-price {
    font-size: var(--fodmaps-font-size-base);
    text-decoration: line-through;
    color: var(--fodmaps-gray-600);
    display: block;
}

.elegant-ebook-banner .current-price {
    font-size: var(--fodmaps-font-size-3xl);
    font-weight: var(--fodmaps-font-weight-bold);
    color: var(--fodmaps-primary-purple);
    display: block;
    margin: 0.5rem 0;
}

.elegant-ebook-banner .discount {
    background: var(--fodmaps-success-green);
    color: var(--fodmaps-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--fodmaps-radius-full);
    font-size: var(--fodmaps-font-size-sm);
    font-weight: var(--fodmaps-font-weight-bold);
}

.elegant-ebook-banner .urgency-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--fodmaps-error-red);
    font-size: var(--fodmaps-font-size-sm);
    font-weight: var(--fodmaps-font-weight-medium);
}

.elegant-ebook-banner .btn-get-guide {
    display: inline-flex;
    flex-direction: column;
    background: var(--fodmaps-gradient-primary);
    color: var(--fodmaps-white);
    padding: 1.5rem 2rem;
    border-radius: var(--fodmaps-radius-xl);
    text-decoration: none;
    font-weight: var(--fodmaps-font-weight-bold);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
    transition: var(--fodmaps-transition-base);
    margin-bottom: 2rem;
    width: 100%;
}

.elegant-ebook-banner .btn-get-guide:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(107, 70, 193, 0.4);
    color: var(--fodmaps-white);
    text-decoration: none;
}

.elegant-ebook-banner .btn-get-guide i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.elegant-ebook-banner .btn-main {
    font-size: var(--fodmaps-font-size-lg);
    line-height: 1.2;
}

.elegant-ebook-banner .btn-sub {
    font-size: var(--fodmaps-font-size-sm);
    opacity: 0.9;
    font-weight: var(--fodmaps-font-weight-medium);
}

.elegant-ebook-banner .guarantees {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.elegant-ebook-banner .guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--fodmaps-font-size-xs);
    color: var(--fodmaps-gray-600);
}

.elegant-ebook-banner .guarantee-item i {
    color: var(--fodmaps-success-green);
    font-size: 1rem;
}

.elegant-ebook-banner .satisfaction-guarantee {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: var(--fodmaps-radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.elegant-ebook-banner .satisfaction-guarantee p {
    font-size: var(--fodmaps-font-size-sm);
    color: var(--fodmaps-gray-700);
    margin: 0;
    line-height: var(--fodmaps-line-height-relaxed);
}

/* Animaciones */
@keyframes fodmapsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fodmapsFadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .fodmaps-hero-section {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .fodmaps-hero-section .hero-title {
        font-size: 2.25rem;
    }
    
    .fodmaps-hero-section .hero-subtitle {
        font-size: var(--fodmaps-font-size-lg);
    }
    
    .fodmaps-hero-section .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .fodmaps-hero-section .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .fodmaps-hero-section .hero-buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .fodmaps-hero-avatar {
        margin-top: 2rem;
        position: static;
    }
    
    .fodmaps-hero-avatar .avatar-image {
        width: 150px;
        height: 150px;
    }
    
    .strategy-section .strategy-cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .elegant-ebook-banner .questions-grid {
        grid-template-columns: 1fr;
    }
    
    .elegant-ebook-banner .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .elegant-ebook-banner .guide-cta-card {
        position: static;
        margin-top: 2rem;
    }
    
    .elegant-ebook-banner .book-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .elegant-ebook-banner .guarantees {
        justify-content: center;
        gap: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .fodmaps-hero-section {
        padding: 1rem 0;
        min-height: auto;
    }
    
    .fodmaps-hero-section .hero-title {
        font-size: 1.875rem;
    }
    
    .fodmaps-hero-section .hero-subtitle {
        font-size: var(--fodmaps-font-size-base);
    }
    
    .fodmaps-hero-section .problems-checklist {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .fodmaps-hero-section .problem-check {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .fodmaps-hero-section .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fodmaps-hero-section .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .fodmaps-hero-section .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .fodmaps-hero-avatar .avatar-image {
        width: 120px;
        height: 120px;
    }
    
    .strategy-section .section-title {
        font-size: var(--fodmaps-font-size-2xl);
    }
    
    .strategy-section .process-card {
        padding: 1.5rem;
    }
    
    .strategy-section .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .strategy-section .card-icon i {
        font-size: 1.5rem;
    }
    
    .strategy-section .strategy-cta {
        padding: 1.5rem;
    }
    
    .elegant-ebook-banner .ebook-title {
        font-size: var(--fodmaps-font-size-2xl);
    }
    
    .elegant-ebook-banner .daily-questions {
        padding: 1.5rem;
    }
    
    .elegant-ebook-banner .question-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .elegant-ebook-banner .include-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .elegant-ebook-banner .include-icon {
        margin: 0 auto;
        width: 40px;
        height: 40px;
    }
    
    .elegant-ebook-banner .guide-cta-card {
        padding: 1.5rem;
    }
    
    .elegant-ebook-banner .btn-get-guide {
        padding: 1.25rem 1.5rem;
    }
    
    .elegant-ebook-banner .guarantees {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .elegant-ebook-banner .guarantee-item {
        flex-direction: row;
        gap: 0.5rem;
    }
}

/* Utilidades adicionales para mantener consistencia */
.fodmaps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.fodmaps-text-center {
    text-align: center;
}

.fodmaps-mb-0 {
    margin-bottom: 0 !important;
}

.fodmaps-mb-1 {
    margin-bottom: 0.5rem !important;
}

.fodmaps-mb-2 {
    margin-bottom: 1rem !important;
}

.fodmaps-mb-3 {
    margin-bottom: 1.5rem !important;
}

.fodmaps-mb-4 {
    margin-bottom: 2rem !important;
}

.fodmaps-mt-0 {
    margin-top: 0 !important;
}

.fodmaps-mt-1 {
    margin-top: 0.5rem !important;
}

.fodmaps-mt-2 {
    margin-top: 1rem !important;
}

.fodmaps-mt-3 {
    margin-top: 1.5rem !important;
}

.fodmaps-mt-4 {
    margin-top: 2rem !important;
}

/* Prevención de conflictos con otros estilos del sitio */
.fodmaps-hero-section *,
.strategy-section *,
.elegant-ebook-banner * {
    box-sizing: border-box;
}

/* Estilos específicos para elementos Bootstrap si se usan */
.fodmaps-hero-section .container,
.strategy-section .container,
.elegant-ebook-banner .container {
    max-width: 1200px;
}

.fodmaps-hero-section .row,
.strategy-section .row,
.elegant-ebook-banner .row {
    margin-left: -15px;
    margin-right: -15px;
}

.fodmaps-hero-section .col-lg-4,
.fodmaps-hero-section .col-lg-6,
.fodmaps-hero-section .col-lg-8,
.strategy-section .col-lg-4,
.strategy-section .col-lg-6,
.strategy-section .col-lg-8,
.elegant-ebook-banner .col-lg-4,
.elegant-ebook-banner .col-lg-6,
.elegant-ebook-banner .col-lg-8 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Dark mode override - asegurar compatibilidad */
@media (prefers-color-scheme: dark) {
    .fodmaps-hero-section {
        background: linear-gradient(135deg, 
            var(--fodmaps-elegant-cream) 0%, 
            rgba(107, 70, 193, 0.03) 100%) !important;
    }
    
    .fodmaps-hero-section .hero-title,
    .fodmaps-hero-section .checklist-title,
    .strategy-section .section-title,
    .strategy-section .card-content h3,
    .strategy-section .cta-content h3,
    .fodmaps-hero-avatar .avatar-info h4,
    .elegant-ebook-banner .ebook-title,
    .elegant-ebook-banner .questions-title,
    .elegant-ebook-banner .guide-includes h3,
    .elegant-ebook-banner .include-text h4 {
        color: var(--fodmaps-gray-900) !important;
    }
    
    .fodmaps-hero-section .problems-checklist,
    .strategy-section .process-card,
    .strategy-section .strategy-cta,
    .elegant-ebook-banner .question-item,
    .elegant-ebook-banner .guide-cta-card,
    .elegant-ebook-banner .satisfaction-guarantee {
        background: rgba(255, 255, 255, 0.95) !important;
        border-color: rgba(107, 70, 193, 0.1) !important;
    }
    
    .elegant-ebook-banner .daily-questions {
        background: rgba(107, 70, 193, 0.05) !important;
        border-color: rgba(107, 70, 193, 0.1) !important;
    }
}

/* Asegurar que los enlaces mantengan su funcionalidad */
.fodmaps-hero-section a,
.strategy-section a,
.elegant-ebook-banner a {
    cursor: pointer;
}

.fodmaps-hero-section a:focus,
.strategy-section a:focus,
.elegant-ebook-banner a:focus {
    outline: 2px solid var(--fodmaps-primary-purple);
    outline-offset: 2px;
}

/* Mejoras de accesibilidad */
.fodmaps-hero-section .problem-check:focus,
.strategy-section .process-card:focus,
.elegant-ebook-banner .question-item:focus {
    outline: 2px solid var(--fodmaps-primary-purple);
    outline-offset: 2px;
}

/* Evitar overflow horizontal en móviles */
@media (max-width: 575.98px) {
    .fodmaps-hero-section,
    .strategy-section,
    .elegant-ebook-banner {
        overflow-x: hidden;
    }
}

/* Print styles */
@media print {
    .fodmaps-hero-section .hero-buttons,
    .strategy-section .btn-consultation,
    .elegant-ebook-banner .btn-get-guide {
        display: none !important;
    }
    
    .fodmaps-hero-section,
    .strategy-section,
    .elegant-ebook-banner {
        background: white !important;
        color: black !important;
    }
}