/* ============================================
   ARTICLE - ESTILOS UNIFICADOS PARA ARTÍCULOS
   ============================================ */

/* Header del Artículo */
.article-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2
}

/* Contenido del Artículo */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem
}

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #333
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem
}

.article-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #444
}

/* Cajas Informativas */
.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #8B0000;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px
}

/* CTA Box (inline) */
.cta-box {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0
}

.cta-box h3,
.cta-box p {
    color: white
}

/* Checklist Card */
.checklist-card {
    background: #f0f4f8;
    border: 2px solid #d0d8e0;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0
}

.checklist-card h3 {
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1rem
}

.checklist-card ul {
    list-style: none;
    padding: 0
}

.checklist-card ul li::before {
    content: "☐ ";
    color: #8B0000;
    font-weight: 700
}

/* Tablas de Precios */
.price-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1)
}

.price-table th {
    background: #8B0000;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0
}

.price-table tr:hover {
    background: #f8f9fa
}

/* Tablas de Comparación */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: left
}

.comparison-table th {
    background-color: #f2f2f2;
    color: #8B0000
}

/* Grid de Estadísticas */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    display: block;
    margin-bottom: 0.5rem
}

/* Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem
    }

    .article-content {
        padding: 2rem 1rem
    }
}
