/* ===========================================
   ARTICLE STYLES - PREMIUM READING EXPERIENCE
   Optimized for long-form content consumption
   =========================================== */

/* ===============================
   ARTICLE HEADER & NAVIGATION
   =============================== */

.article-header {
    position: sticky;
    top: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-sticky);
    padding: var(--space-md) 0;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.nav-back {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
}

.nav-back:hover {
    color: var(--primary-color);
    background: var(--bg-tertiary);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    flex: 1;
    justify-content: center;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.article-actions {
    display: flex;
    gap: var(--space-sm);
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .article-nav {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .breadcrumbs {
        order: -1;
        justify-content: flex-start;
        font-size: var(--font-size-xs);
    }
    
    .breadcrumbs span {
        display: none;
    }
}

/* ===============================
   ARTICLE HERO SECTION - PREMIUM DESIGN
   =============================== */

.article-hero {
    padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.08) 0%, 
        rgba(118, 75, 162, 0.08) 50%,
        rgba(102, 126, 234, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.02) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.article-category {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    z-index: 1;
}

.category-tag {
    display: inline-block;
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    background: var(--primary-gradient);
    color: white;
    border-radius: 25px;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 12px rgba(102, 126, 234, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-tag:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ELITE ARTICLE TITLE - HOME PAGE STYLE */
.article-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-align: center;
    letter-spacing: -0.3px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

.article-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    color: #4a5568;
    line-height: 1.5;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

/* Animation Classes */
.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-up:nth-child(1) { animation-delay: 0.1s; }
.animate-slide-up:nth-child(2) { animation-delay: 0.2s; }
.animate-slide-up:nth-child(3) { animation-delay: 0.3s; }
.animate-slide-up:nth-child(4) { animation-delay: 0.4s; }

.animate-slide-left {
    animation: slideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(-30px);
    animation-delay: 0.5s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-hero {
        padding: clamp(2rem, 6vw, 3rem) 0 clamp(1.5rem, 4vw, 2rem);
    }
}

/* ===============================
   AUTHOR CARD - PREMIUM DESIGN
   =============================== */

.author-card {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    margin: clamp(2.5rem, 5vw, 4rem) 0;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.author-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.6;
}

.author-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 32px 64px rgba(102, 126, 234, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.08);
}

.author-avatar {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.author-avatar img {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.author-avatar:hover img {
    transform: scale(1.05);
    border-color: rgba(102, 126, 234, 0.4);
}

.author-placeholder {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    border-radius: 20px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 24px rgba(102, 126, 234, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

.author-name {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.author-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.author-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    max-width: 100%;
    font-weight: 400;
}

.author-social {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    margin-top: clamp(1rem, 2vw, 1.25rem);
}

.social-link {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    border-radius: 12px;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .author-card {
        flex-direction: column;
        text-align: center;
        gap: clamp(1.5rem, 4vw, 2rem);
        padding: clamp(1.5rem, 4vw, 2rem);
        border-radius: 20px;
    }
    
    .author-avatar {
        align-self: center;
    }
    
    .author-info {
        align-items: center;
        text-align: center;
    }
    
    .author-bio {
        text-align: center;
        max-width: 100%;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .author-card {
        margin: 2rem 0;
        padding: 1.25rem;
        border-radius: 16px;
    }
    
    .author-avatar img,
    .author-placeholder {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
}

/* ===============================
   ARTICLE CONTENT TYPOGRAPHY - PREMIUM SYSTEM
   =============================== */

/* ELITE ARTICLE LEAD - HOME PAGE STYLE */
.article-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid #667eea;
    position: relative;
    font-weight: 500;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.08);
}

.article-lead p {
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    color: #4a5568 !important;
    font-weight: 500 !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.article-lead p:last-child {
    margin-bottom: 0 !important;
}

/* Premium Content Container */
.article-content {
    position: relative;
}

.blog-container--article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ELITE TYPOGRAPHY SYSTEM - MATCHING HOME PAGE */
.article-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #718096;
    font-weight: 400;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

/* Elite Paragraphs - Home Page Style */
.article-text p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #718096;
    font-weight: 400;
    text-align: left;
}

/* First Paragraph - Hero Style */
.article-text p:first-of-type {
    font-size: 1.4rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Elite Drop Cap - Home Page Style */
.article-text p:first-of-type::first-letter {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.9;
    float: left;
    margin: 0.1em 0.15em 0.05em 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
}

/* ELITE HEADINGS - HOME PAGE STYLE */
.article-text h1,
.article-text h2,
.article-text h3,
.article-text h4 {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 2rem;
    color: #2d3748;
}

.article-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Elegant Section Divider */
.article-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.article-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: #4a5568;
    margin-bottom: 1rem;
}

.article-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* Premium Lists */
.article-text ul,
.article-text ol {
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    padding-left: clamp(1.5rem, 4vw, 2rem);
}

.article-text li {
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    line-height: 1.7;
}

.article-text ul li {
    position: relative;
}

.article-text ul li::marker {
    content: '';
}

.article-text ul li::before {
    content: '';
    position: absolute;
    left: -1.25rem;
    top: 0.875rem;
    width: 6px;
    height: 6px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

/* ELITE QUOTES - HOME PAGE STYLE */
.highlight-quote {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin: 3rem auto;
    max-width: 700px;
    color: #4a5568;
    line-height: 1.5;
    font-style: italic;
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.highlight-quote::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.highlight-quote::after {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    position: absolute;
    bottom: 0;
    right: 1.5rem;
    line-height: 1;
}

/* Elite Philosophical Quotes */
.philosophical-quote {
    margin: 3rem auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.1);
    text-align: center;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.08);
    max-width: 700px;
}

.philosophical-quote p {
    font-size: 1.4rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.philosophical-quote cite {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
    font-style: normal;
}

/* Premium Links */
.article-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(102, 126, 234, 0.2) 60%
    );
    background-size: 0% 100%;
    background-repeat: no-repeat;
}

.article-text a:hover {
    background-size: 100% 100%;
    border-bottom-color: var(--primary-color);
}

/* ELITE TEXT EMPHASIS - HOME PAGE STYLE */
.article-text strong,
.article-text b {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-text .highlight,
.article-text .content-emphasis {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Elite Em/Italic */
.article-text em,
.article-text i {
    font-style: italic;
    color: #667eea;
    font-weight: 500;
}

/* Premium Code Blocks */
.article-text code {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875em;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Premium Blockquotes */
.article-text blockquote {
    margin: clamp(2rem, 4vw, 3rem) 0;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.03) 0%,
        rgba(118, 75, 162, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    color: var(--text-primary);
    position: relative;
}

.article-text blockquote::before {
    content: '"';
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

/* Premium Images */
.article-text img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: clamp(2rem, 4vw, 3rem) 0;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
}

.article-text img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

/* Premium Tables */
.article-text table {
    width: 100%;
    border-collapse: collapse;
    margin: clamp(2rem, 4vw, 3rem) 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
}

.article-text th,
.article-text td {
    padding: clamp(0.75rem, 2vw, 1rem);
    text-align: left;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.article-text th {
    background: var(--primary-gradient);
    color: white;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.article-text tr:hover {
    background: rgba(102, 126, 234, 0.03);
}

/* ===============================
   UNIVERSAL BLOG CONTENT SYSTEM
   Clases escalables para futuros blogs
   =============================== */

/* Universal Content Wrapper */
.premium-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Universal Spacing System */
.premium-content > * {
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.premium-content > *:first-child {
    margin-top: 0;
}

.premium-content > *:last-child {
    margin-bottom: 0;
}

/* Universal Typography Classes */
.content-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    position: relative;
    padding-left: clamp(1rem, 3vw, 1.5rem);
}

.content-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.content-highlight {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.1) 100%);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    font-weight: 500;
}

.content-quote {
    text-align: center;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin: clamp(2rem, 4vw, 3rem) 0;
    position: relative;
}

.content-quote::before,
.content-quote::after {
    content: '"';
    font-size: clamp(2rem, 5vw, 2.5rem);
    opacity: 0.4;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.content-emphasis {
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%,
        var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-note {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: var(--text-secondary);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
}

/* Universal Responsive System */
@media (max-width: 768px) {
    .premium-content {
        padding: 0 1rem;
    }
    
    .content-subtitle {
        padding-left: 1rem;
    }
}

/* ===============================
   EASY BLOG CREATOR SYSTEM
   Simplifica la creación de nuevos blogs
   =============================== */

/* Solo necesitas envolver tu contenido en estas clases: */
/* 
   <div class="premium-content">
     <h1 class="content-title">Tu Título</h1>
     <h2 class="content-subtitle">Subtítulo</h2>
     <p>Tu contenido normal...</p>
     <div class="content-highlight">Contenido destacado</div>
     <p class="content-quote">Una cita inspiradora</p>
     <span class="content-emphasis">Texto enfatizado</span>
     <div class="content-note">Nota adicional</div>
   </div>
*/

.central-question {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

.question-block {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    border-left: 4px solid var(--accent-color);
}

.insight-box {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    border: 1px solid rgba(240, 147, 251, 0.2);
}

.revelation-list {
    background: var(--bg-tertiary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.transformation-list {
    text-align: center;
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: var(--radius-lg);
}

.transformation-list p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.epilogue-text {
    text-align: center;
    margin: var(--space-xl) 0;
    font-size: var(--font-size-lg);
}

.epilogue-text p {
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.final-quote {
    background: var(--primary-gradient);
    color: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    margin: var(--space-2xl) 0;
}

.final-quote p {
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: white;
}

.final-quote cite {
    font-size: var(--font-size-base);
    font-style: normal;
    opacity: 0.9;
}

.emphasis {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-lg);
}

/* ===============================
   TABLE OF CONTENTS
   =============================== */

.table-contents {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    border: 1px solid var(--bg-tertiary);
}

.table-contents h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toc-link {
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-size: var(--font-size-sm);
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(4px);
}

/* ===============================
   ARTICLE FOOTER ELEMENTS
   =============================== */

.article-tags {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
}

.article-tags h4 {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    margin: var(--space-xs) var(--space-xs) var(--space-xs) 0;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.article-share {
    margin: var(--space-2xl) 0;
    text-align: center;
}

.article-share h4 {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===============================
   RATING SYSTEM
   =============================== */

.article-rating {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    margin: var(--space-2xl) 0;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.article-rating h4 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.article-rating p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-base);
}

.rating-interactive {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.rating-stars-large {
    display: flex;
    gap: var(--space-sm);
}

.rating-star-large {
    font-size: var(--font-size-3xl);
    color: #ddd;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.rating-star-large:hover,
.rating-star-large.active {
    color: #ffd700;
    transform: scale(1.1);
}

.rating-feedback {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ===============================
   COMMENTS SECTION
   =============================== */

.comments-section {
    background: var(--bg-secondary);
    padding: var(--space-3xl) 0;
    margin-top: var(--space-3xl);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--bg-tertiary);
}

.comments-header h3 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    margin: 0;
}

.comments-count {
    color: var(--text-muted);
    font-weight: 400;
}

.comments-sort select {
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--bg-tertiary);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.comment-form-container {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.comment-form-container h4 {
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.comment-form input,
.comment-form textarea {
    padding: var(--space-md);
    border: 2px solid var(--bg-tertiary);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    cursor: pointer;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===============================
   NEWSLETTER CTA
   =============================== */

.newsletter-cta {
    background: var(--primary-gradient);
    color: white;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.newsletter-content h3 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
    color: white;
}

.newsletter-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
    color: white;
}

.newsletter-form-simple {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
}

.newsletter-form-simple input {
    flex: 1;
    padding: var(--space-md);
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-primary);
}

.newsletter-form-simple button {
    padding: var(--space-md) var(--space-lg);
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form-simple button:hover {
    background: var(--primary-color);
}

/* ===============================
   RELATED ARTICLES
   =============================== */

.related-articles {
    padding: var(--space-3xl) 0;
}

.related-articles h3 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--text-primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
   =============================== */

@media (max-width: 768px) {
    .article-text {
        font-size: var(--font-size-base);
    }
    
    .article-text h2 {
        font-size: var(--font-size-xl);
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: var(--space-md);
        align-items: stretch;
    }
    
    .share-buttons {
        gap: var(--space-sm);
    }
    
    .newsletter-form-simple {
        flex-direction: column;
        max-width: 300px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   ELITE PROGRESS BAR & NAVIGATION
   =============================== */

/* Elite Progress Bar */
.elite-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.progress-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.progress-track {
    flex: 1;
    height: 8px;
    background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 50%, #c084fc 100%);
    border-radius: 20px;
    width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.3) 50%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-fill:hover + .progress-glow {
    opacity: 1;
}

.progress-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 200px;
}

.progress-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.2rem;
}

.progress-text {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.2rem;
    text-align: right;
}

.estimated-time {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Article Navigation */
.article-navigation {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 999;
}

.nav-toggle {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.nav-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.nav-content {
    position: absolute;
    right: 0;
    bottom: calc(100% + 1rem);
    width: 350px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.nav-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.nav-close {
    cursor: pointer;
    color: #94a3b8;
    font-size: 1.2rem;
    padding: 0.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-close:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.nav-stages {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
}

.nav-stage {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.nav-stage:hover {
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(4px);
}

.nav-stage.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-left: 3px solid #8b5cf6;
}

.stage-marker {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.nav-stage.active .stage-marker {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.stage-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
    font-family: 'Inter', sans-serif;
}

.stage-info p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

.nav-progress-summary {
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding: 1rem 1.5rem;
}

.reading-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.stat i {
    color: #8b5cf6;
    font-size: 0.9rem;
}

/* ===============================
   STAGE MARKERS IN CONTENT
   =============================== */

.stage-marker-section {
    margin: 4rem 0 3rem;
    scroll-margin-top: 120px;
}

.stage-indicator {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stage-indicator:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
}

.stage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.stage-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.stage-subtitle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* ===============================
   ARTICLE FLOW SYSTEM - TEXTO + ELEMENTOS PREMIUM
   =============================== */

.article-content-flow {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    line-height: 1.8;
    padding-top: 120px; /* Espacio para la barra de progreso */
}

/* Párrafos normales del artículo */
.article-content-flow p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

/* ===============================
   ELEMENTOS PREMIUM INTERCALADOS
   =============================== */

/* PREGUNTA CLAVE */
.key-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border: 2px solid #d8b4fe;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.key-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.key-question .question-icon {
    font-size: 2.5rem;
    color: #8b5cf6;
    flex-shrink: 0;
}

.key-question .question-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

/* REFLEXIÓN DESTACADA */
.insight-highlight {
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    border: 2px solid #f6ad55;
    border-left: 6px solid #f6ad55;
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
}

.insight-highlight h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.insight-highlight p {
    font-size: 1.1rem;
    color: #4a5568;
    font-style: italic;
}

/* ESQUEMA DE PREGUNTAS */
.question-scheme {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.scheme-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.scheme-header i {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.scheme-header span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
}

.question-pair {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
}

.q-mark {
    font-weight: bold;
    color: #8b5cf6;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.question-item p {
    margin: 0;
    font-size: 1rem;
    color: #4a5568;
}

/* PREGUNTA CENTRAL */
.central-question {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #feb2b2;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.central-question h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.aspects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.aspect {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.aspect:hover {
    transform: scale(1.05);
}

/* REALIZACIÓN CLAVE */
.key-realization {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.realization-icon {
    font-size: 2rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.key-realization p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: white;
}

/* LISTA REVELADORA */
.revelation-list {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.list-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.list-header i {
    font-size: 1.5rem;
    color: #38a169;
}

.list-header span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
}

.revelation-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.revelation-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border-radius: 8px;
}

.revelation-list li i {
    color: #38a169;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

/* PREGUNTA FILOSÓFICA */
.philosophical-question {
    margin: 3rem 0;
}

.question-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.question-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.question-bg i {
    font-size: 3rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    display: block;
}

.question-content {
    position: relative;
    z-index: 1;
}

.question-content p {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: white;
}

/* CITA DE MAESTRO */
.master-quote {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 2px solid #9ae6b4;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.master-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #9ae6b4;
}

.master-avatar {
    font-size: 3rem;
    color: #38a169;
}

.master-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
}

.quote-content {
    position: relative;
}

.quote-mark {
    font-size: 2.5rem;
    color: #38a169;
    margin-bottom: 1rem;
}

.quote-content p {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

/* CONCEPTO DUAL */
.concept-duality {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.concept-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.concept-card:hover {
    transform: translateY(-4px);
}

.concept-card.gravity {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #feb2b2;
}

.concept-card.grace {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 2px solid #9ae6b4;
}

.concept-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gravity .concept-icon {
    color: #e53e3e;
}

.grace .concept-icon {
    color: #38a169;
}

.concept-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.concept-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.vs-symbol {
    font-size: 2rem;
    color: #8b5cf6;
}

/* CITA DESTACADA */
.highlighted-quote {
    margin: 3rem 0;
    text-align: center;
}

.quote-design {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.quote-design i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.quote-design cite {
    font-size: 1rem;
    color: #8b5cf6;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

/* TRANSFORMACIÓN VISUAL */
.transformation-visual {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.before-after {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.before,
.after {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.before {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #feb2b2;
}

.after {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 2px solid #9ae6b4;
}

.before h4,
.after h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.before-after .item {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.arrow {
    font-size: 2rem;
    color: #8b5cf6;
}

/* CONCLUSIÓN DESTACADA */
.final-insight {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.final-insight h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* CITA FINAL */
.closing-quote {
    margin: 3rem 0;
    text-align: center;
}

.quote-final-design {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.quote-final-design i {
    font-size: 3rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.quote-final-design p {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white;
}

.quote-final-design cite {
    font-size: 1rem;
    color: #a78bfa;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

/* Stage Headers */
.stage-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 2px solid rgba(139, 92, 246, 0.1);
}

.stage-finale .stage-header {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.stage-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8b5cf6;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.stage-finale .stage-number {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.stage-title h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.stage-finale .stage-title h2 {
    color: white;
}

.stage-subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

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

/* Stage Content */
.stage-content {
    padding: 2.5rem;
}

.stage-finale .stage-content {
    color: white;
}

/* Highlight Text */
.highlight-text {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.stage-finale .highlight-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Opening Scene */
.opening-scene {
    margin-bottom: 2.5rem;
}

.scene-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
    font-family: 'Inter', sans-serif;
}

/* Pivotal Questions */
.pivotal-question {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid #d8b4fe;
}

.question-icon {
    font-size: 2rem;
    color: #8b5cf6;
    flex-shrink: 0;
}

.question-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.question-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 1rem;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.question-insight {
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Reflection Boxes */
.reflection-box {
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    border: 2px solid #f6ad55;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.reflection-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Insight Cards */
.insight-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 1px solid #9ae6b4;
    border-radius: 16px;
    margin: 2rem 0;
}

.insight-icon {
    font-size: 2rem;
    color: #38a169;
    flex-shrink: 0;
}

.insight-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Realization Flow */
.realization-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.flow-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
    width: 100%;
    max-width: 600px;
    font-family: 'Inter', sans-serif;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #8b5cf6;
    font-weight: bold;
}

/* Dual Questions */
.dual-question {
    margin: 2rem 0;
}

.question-pair {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
}

.question-marker {
    font-weight: bold;
    color: #8b5cf6;
    font-size: 1.2rem;
}

/* Pattern Recognition */
.pattern-recognition {
    text-align: center;
    margin: 2rem 0;
}

.pattern-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #4a5568;
    padding: 1rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-radius: 12px;
    border: 1px solid #feb2b2;
    font-family: 'Inter', sans-serif;
}

.pattern-text i {
    margin-right: 0.5rem;
    color: #e53e3e;
}

/* Central Questions */
.central-question {
    text-align: center;
    margin: 3rem 0;
}

.central-question h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.question-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.question-chip {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.question-chip:hover {
    transform: scale(1.05);
}

/* Suspicion Blocks */
.suspicion-block {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 1px solid #feb2b2;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.suspicion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.suspicion-header i {
    color: #e53e3e;
    font-size: 1.5rem;
}

.suspicion-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    font-family: 'Inter', sans-serif;
}

.suspicion-questions p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* Realization Cards */
.realization-card {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
}

.realization-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Essence Breakdown */
.essence-breakdown {
    margin: 2.5rem 0;
}

.essence-breakdown h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
}

.breakdown-item i {
    font-size: 1.5rem;
    color: #8b5cf6;
}

/* Ultimate Questions */
.ultimate-question {
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    border: 2px solid #f6ad55;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.ultimate-question h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.ultimate-question p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

/* Teacher Introductions */
.teacher-introduction {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 1px solid #9ae6b4;
    border-radius: 16px;
    margin: 2rem 0;
}

.teacher-avatar {
    font-size: 3rem;
    color: #38a169;
}

.teacher-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* Pain Descriptions */
.pain-description {
    margin: 2rem 0;
}

.pain-description h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.pain-characteristics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #e53e3e;
}

.pain-item i {
    font-size: 1.5rem;
    color: #e53e3e;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Sacred Quotes */
.sacred-quote {
    text-align: center;
    margin: 3rem 0;
}

.quote-design {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.quote-mark {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.quote-author {
    font-size: 1rem;
    color: #8b5cf6;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.quote-final {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.quote-final .quote-text {
    color: white;
}

/* Escape Patterns */
.escape-patterns {
    margin: 2.5rem 0;
}

.escape-patterns h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

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

.escape-item {
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.escape-conclusion {
    text-align: center;
    font-style: italic;
    color: #4a5568;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Concept Comparisons */
.concept-comparison {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.concept-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.concept-gravity {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #feb2b2;
}

.concept-grace {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 2px solid #9ae6b4;
}

.concept-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.concept-gravity .concept-icon {
    color: #e53e3e;
}

.concept-grace .concept-icon {
    color: #38a169;
}

.concept-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.concept-vs {
    font-size: 2rem;
    color: #8b5cf6;
}

/* Transformation Visuals */
.transformation-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.transform-from,
.transform-to {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.transform-from {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 2px solid #feb2b2;
}

.transform-to {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 2px solid #9ae6b4;
}

.transform-arrow {
    font-size: 2rem;
    color: #8b5cf6;
}

.transform-from h4,
.transform-to h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Liberation Lists */
.liberation-list {
    margin: 2.5rem 0;
}

.liberation-list h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.liberation-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.liberation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 1px solid #9ae6b4;
    border-radius: 12px;
}

.liberation-item i {
    font-size: 1.5rem;
    color: #38a169;
}

/* Gift Realization */
.gift-realization {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    border: 2px solid #f6ad55;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
    justify-content: center;
}

.gift-icon {
    font-size: 2rem;
    color: #f6ad55;
}

/* Final Statements */
.final-statements {
    margin: 2rem 0;
}

.statement-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.statement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.statement-action {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.statement-item i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.statement-action i {
    color: #fbbf24;
}

/* Grace Manifestation */
.grace-manifestation {
    text-align: center;
    margin: 2rem 0;
}

.grace-manifestation h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.grace-description {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Ultimate Realization */
.ultimate-realization {
    text-align: center;
    margin: 2.5rem 0;
}

.ultimate-realization h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

/* ===============================
   RESPONSIVE DESIGN - ELITE NAVIGATION & PROGRESS
   =============================== */

@media (max-width: 768px) {
    .progress-wrapper {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-info {
        align-items: center;
        min-width: auto;
        width: 100%;
    }
    
    .progress-text {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .article-navigation {
        right: 1rem;
        top: auto;
        bottom: 2rem;
        transform: none;
    }
    
    .nav-content {
        width: 300px;
        right: 0;
        bottom: calc(100% + 1rem);
    }
    
    .stage-indicator {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stage-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stage-title h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .article-content-flow {
        padding: 1rem;
        padding-top: 140px; /* Más espacio para la barra en móvil */
    }
    
    .key-question {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .key-question .question-text {
        font-size: 1.2rem;
    }
    
    .central-question {
        padding: 2rem 1rem;
    }
    
    .central-question h3 {
        font-size: 1.6rem;
    }
    
    .aspects-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .concept-duality,
    .before-after {
        flex-direction: column;
    }
    
    .vs-symbol,
    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .question-pair {
        gap: 0.75rem;
    }
    
    .master-quote {
        padding: 1.5rem;
    }
    
    .master-info {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophical-question .question-bg {
        padding: 2rem 1rem;
    }
    
    .transformation-visual {
        padding: 1.5rem;
    }
    
    .quote-design,
    .quote-final-design {
        padding: 2rem 1rem;
    }
}

/* ===============================
   PRINT STYLES
   =============================== */

@media print {
    .article-header,
    .floating-actions,
    .article-share,
    .article-rating,
    .comments-section,
    .newsletter-cta,
    .related-articles {
        display: none !important;
    }
    
    .article-hero {
        background: none !important;
        padding: var(--space-lg) 0;
    }
    
    .author-card {
        background: none !important;
        border: 1px solid #ddd;
    }
    
    .article-text {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    .article-text h2 {
        font-size: 16pt;
        page-break-after: avoid;
    }
}