/* =========================================
   CSS ESPECÍFICO PARA PÁGINAS DE CONTENIDO
   ========================================= */

/* Breadcrumb */
.breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

.breadcrumb i {
    color: #ccc;
    font-size: 10px;
}

.breadcrumb span {
    color: var(--heading-color);
    font-weight: 600;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: 60vh;
    background-color: #f8f9fa;
}

/* Content Article */
.content-article {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Article Header - CENTRADO COMO EN VUcolegiacionensede */
.article-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
    text-align: center;
}

.article-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.article-subtitle {
    margin-top: 10px;
}

.article-subtitle h2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

/* Article Body */
.article-body {
    line-height: 1.8;
    color: var(--text-color);
}

.article-body p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #f0f9e8 0%, #e8f5d8 100%);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.intro-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 !important;
    line-height: 1.5;
}

/* Signature Section */
.signature-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.signature-welcome {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.signature-welcome strong {
    color: var(--primary-color);
    font-weight: 700;
}

.signature-info {
    margin-top: 30px;
}

.signature-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-article {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* Main Content */
    .main-content {
        padding: 30px 0;
    }
    
    /* Content Article */
    .content-article {
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* Article Header */
    .article-header {
        margin-bottom: 40px;
        padding-bottom: 25px;
        border-bottom-width: 2px;
    }
    
    .article-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .article-subtitle h2 {
        font-size: 18px;
    }
    
    /* Article Body */
    .article-body p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    /* Welcome Section */
    .welcome-section {
        padding: 25px 20px;
        margin-bottom: 25px;
        border-left-width: 4px;
    }
    
    .intro-text {
        font-size: 18px;
        line-height: 1.4;
    }
    
    /* Signature Section */
    .signature-section {
        margin-top: 40px;
        padding-top: 35px;
    }
    
    .signature-welcome {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .signature-info {
        margin-top: 25px;
    }
    
    .signature-name {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .signature-title {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        padding: 12px 0;
        font-size: 12px;
    }
    
    .breadcrumb .container {
        gap: 8px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Main Content */
    .main-content {
        padding: 25px 0;
    }
    
    /* Content Article */
    .content-article {
        padding: 25px 15px;
    }
    
    /* Article Header */
    .article-header {
        margin-bottom: 35px;
        padding-bottom: 20px;
        border-bottom-width: 2px;
    }
    
    .article-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .article-subtitle h2 {
        font-size: 16px;
    }
    
    /* Article Body */
    .article-body p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    /* Welcome Section */
    .welcome-section {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 6px;
    }
    
    .intro-text {
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Signature Section */
    .signature-section {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .signature-welcome {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .signature-info {
        margin-top: 20px;
    }
    
    .signature-name {
        font-size: 18px;
    }
    
    .signature-title {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        padding: 10px 0;
        font-size: 11px;
    }
    
    .breadcrumb .container {
        gap: 6px;
    }
    
    .breadcrumb i {
        font-size: 8px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-body {
    animation: fadeIn 0.5s ease-out;
}
